Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuTextureUtil.cpp1256 static AccessType toSamplerAccess (const AccessType& baseAccess, Sampler::DepthStencilMode mode) in toSamplerAccess() argument
1261 if (!isCombinedDepthStencilType(baseAccess.getFormat().type)) in toSamplerAccess()
1262 return baseAccess; in toSamplerAccess()
1280 DE_ASSERT(baseAccess.getFormat().order == TextureFormat::DS || in toSamplerAccess()
1281 (mode == Sampler::MODE_DEPTH && baseAccess.getFormat().order == TextureFormat::D) || in toSamplerAccess()
1282 (mode == Sampler::MODE_STENCIL && baseAccess.getFormat().order == TextureFormat::S)); in toSamplerAccess()
1285 switch (baseAccess.getFormat().type) in toSamplerAccess()
1293 baseAccess.getSize(), in toSamplerAccess()
1294 baseAccess.getPitch(), in toSamplerAccess()
1295 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.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()