Lines Matching refs:baseAccess
1044 static AccessType toSamplerAccess (const AccessType& baseAccess, Sampler::DepthStencilMode mode) in toSamplerAccess() argument
1049 if (!isCombinedDepthStencilType(baseAccess.getFormat().type)) in toSamplerAccess()
1050 return baseAccess; in toSamplerAccess()
1062 DE_ASSERT(baseAccess.getFormat().order == TextureFormat::DS || in toSamplerAccess()
1063 (mode == Sampler::MODE_DEPTH && baseAccess.getFormat().order == TextureFormat::D) || in toSamplerAccess()
1064 (mode == Sampler::MODE_STENCIL && baseAccess.getFormat().order == TextureFormat::S)); in toSamplerAccess()
1067 switch (baseAccess.getFormat().type) in toSamplerAccess()
1075 baseAccess.getSize(), in toSamplerAccess()
1076 baseAccess.getPitch(), in toSamplerAccess()
1077 baseAccess.getDataPtr()); in toSamplerAccess()
1083 baseAccess.getSize(), in toSamplerAccess()
1084 baseAccess.getPitch(), in toSamplerAccess()
1085 addOffset(baseAccess.getDataPtr(), 4 + uint32ByteOffsetBits0To8)); in toSamplerAccess()
1101 baseAccess.getSize(), in toSamplerAccess()
1102 baseAccess.getPitch(), in toSamplerAccess()
1103 addOffset(baseAccess.getDataPtr(), uint32ByteOffset8To32)); in toSamplerAccess()
1109 baseAccess.getSize(), in toSamplerAccess()
1110 baseAccess.getPitch(), in toSamplerAccess()
1111 addOffset(baseAccess.getDataPtr(), uint32ByteOffsetBits0To8)); in toSamplerAccess()
1131 PixelBufferAccess getEffectiveDepthStencilAccess (const PixelBufferAccess& baseAccess, Sampler::Dep… in getEffectiveDepthStencilAccess() argument
1133 return toSamplerAccess<PixelBufferAccess>(baseAccess, mode); in getEffectiveDepthStencilAccess()
1136 ConstPixelBufferAccess getEffectiveDepthStencilAccess (const ConstPixelBufferAccess& baseAccess, Sa… in getEffectiveDepthStencilAccess() argument
1138 return toSamplerAccess<ConstPixelBufferAccess>(baseAccess, mode); in getEffectiveDepthStencilAccess()