Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuTextureUtil.cpp1264 static AccessType toSamplerAccess (const AccessType& baseAccess, Sampler::DepthStencilMode mode) in toSamplerAccess() argument
1269 if (!isCombinedDepthStencilType(baseAccess.getFormat().type)) in toSamplerAccess()
1270 return baseAccess; in toSamplerAccess()
1288 DE_ASSERT(baseAccess.getFormat().order == TextureFormat::DS || in toSamplerAccess()
1289 (mode == Sampler::MODE_DEPTH && baseAccess.getFormat().order == TextureFormat::D) || in toSamplerAccess()
1290 (mode == Sampler::MODE_STENCIL && baseAccess.getFormat().order == TextureFormat::S)); in toSamplerAccess()
1293 switch (baseAccess.getFormat().type) in toSamplerAccess()
1301 baseAccess.getSize(), in toSamplerAccess()
1302 baseAccess.getPitch(), in toSamplerAccess()
1303 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.cpp438 tcu::PixelBufferAccess baseAccess = base.getAccess(); in generateReferenceImage() local
443 for (deInt32 z = 0; z < baseAccess.getDepth(); ++z) in generateReferenceImage()
444 for (deInt32 y = 0; y < baseAccess.getHeight(); ++y) in generateReferenceImage()
445 for (deInt32 x = 0; x < baseAccess.getWidth(); ++x) in generateReferenceImage()
447 baseAccess.setPixel(tcu::IVec4(x^y^z), x, y, z); in generateReferenceImage()
463 sum += baseAccess.getPixelInt( in generateReferenceImage()
/external/clang/lib/Sema/
DSemaAccess.cpp1205 AccessSpecifier baseAccess = base->getAccessSpecifier(); in DiagnoseAccessPath() local
1206 if (baseAccess > accessSoFar) { in DiagnoseAccessPath()
1208 accessSoFar = baseAccess; in DiagnoseAccessPath()
1225 assert(baseAccess == AS_private); in DiagnoseAccessPath()