Home
last modified time | relevance | path

Searched refs:baseAccess (Results 1 – 4 of 4) sorted by relevance

/external/deqp/framework/common/
DtcuTextureUtil.cpp1246 static AccessType toSamplerAccess (const AccessType& baseAccess, Sampler::DepthStencilMode mode) in toSamplerAccess() argument
1251 if (!isCombinedDepthStencilType(baseAccess.getFormat().type)) in toSamplerAccess()
1252 return baseAccess; in toSamplerAccess()
1270 DE_ASSERT(baseAccess.getFormat().order == TextureFormat::DS || in toSamplerAccess()
1271 (mode == Sampler::MODE_DEPTH && baseAccess.getFormat().order == TextureFormat::D) || in toSamplerAccess()
1272 (mode == Sampler::MODE_STENCIL && baseAccess.getFormat().order == TextureFormat::S)); in toSamplerAccess()
1275 switch (baseAccess.getFormat().type) in toSamplerAccess()
1283 baseAccess.getSize(), in toSamplerAccess()
1284 baseAccess.getPitch(), in toSamplerAccess()
1285 baseAccess.getDataPtr()); in toSamplerAccess()
[all …]
DtcuTextureUtil.hpp165 PixelBufferAccess getEffectiveDepthStencilAccess (const PixelBufferAccess& baseAccess, Sampler:…
166 ConstPixelBufferAccess getEffectiveDepthStencilAccess (const ConstPixelBufferAccess& baseAccess,…
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageQualifiersTests.cpp424 tcu::PixelBufferAccess baseAccess = base.getAccess(); in generateReferenceImage() local
429 for (deInt32 z = 0; z < baseAccess.getDepth(); ++z) in generateReferenceImage()
430 for (deInt32 y = 0; y < baseAccess.getHeight(); ++y) in generateReferenceImage()
431 for (deInt32 x = 0; x < baseAccess.getWidth(); ++x) in generateReferenceImage()
433 baseAccess.setPixel(tcu::IVec4(x^y^z), x, y, z); in generateReferenceImage()
449 sum += baseAccess.getPixelInt( in generateReferenceImage()
/external/clang/lib/Sema/
DSemaAccess.cpp1210 AccessSpecifier baseAccess = base->getAccessSpecifier(); in DiagnoseAccessPath() local
1211 if (baseAccess > accessSoFar) { in DiagnoseAccessPath()
1213 accessSoFar = baseAccess; in DiagnoseAccessPath()
1230 assert(baseAccess == AS_private); in DiagnoseAccessPath()