Lines Matching refs:getFormat
256 …return ConstPixelBufferAccess(access.getFormat(), tcu::IVec3(width, height, depth), access.getPitc… in getSubregion()
282 return PixelBufferAccess(access.getFormat(), tcu::IVec3(width, height, depth), access.getPitch(), in getSubregion()
325 …return PixelBufferAccess(access.getFormat(), access.getSize(), pitch, (deUint8*)access.getDataPtr(… in flipYAccess()
339 …return ConstPixelBufferAccess(access.getFormat(), access.getSize(), pitch, (deUint8*)access.getDat… in flipYAccess()
698 const int pixelSize = access.getFormat().getPixelSize(); in clear()
712 PixelBufferAccess(access.getFormat(), 1, 1, 1, 0, 0, &pixel.u8[0]).setPixel(color, 0, 0); in clear()
729 const int pixelSize = access.getFormat().getPixelSize(); in clear()
743 PixelBufferAccess(access.getFormat(), 1, 1, 1, 0, 0, &pixel.u8[0]).setPixel(color, 0, 0); in clear()
765 …DE_ASSERT(access.getFormat().order == TextureFormat::DS || access.getFormat().order == TextureForm… in clearDepth()
772 …DE_ASSERT(access.getFormat().order == TextureFormat::DS || access.getFormat().order == TextureForm… in clearStencil()
837 if (isCombinedDepthStencilType(access.getFormat().type)) in fillWithComponentGradients()
839 …const bool hasDepth = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().or… in fillWithComponentGradients()
840 …const bool hasStencil = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().o… in fillWithComponentGradients()
914 if (isCombinedDepthStencilType(access.getFormat().type)) in fillWithGrid()
916 …const bool hasDepth = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().or… in fillWithGrid()
917 …const bool hasStencil = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().o… in fillWithGrid()
1010 const int srcPixelSize = src.getFormat().getPixelSize(); in copy()
1011 const int dstPixelSize = dst.getFormat().getPixelSize(); in copy()
1017 …const bool srcHasDepth = (src.getFormat().order == tcu::TextureFormat::DS || src.getFormat().ord… in copy()
1018 …const bool srcHasStencil = (src.getFormat().order == tcu::TextureFormat::DS || src.getFormat().or… in copy()
1019 …const bool dstHasDepth = (dst.getFormat().order == tcu::TextureFormat::DS || dst.getFormat().ord… in copy()
1020 …const bool dstHasStencil = (dst.getFormat().order == tcu::TextureFormat::DS || dst.getFormat().or… in copy()
1022 if (src.getFormat() == dst.getFormat() && srcTightlyPacked && dstTightlyPacked) in copy()
1029 else if (src.getFormat() == dst.getFormat()) in copy()
1069 TextureChannelClass srcClass = getTextureChannelClass(src.getFormat().type); in copy()
1070 TextureChannelClass dstClass = getTextureChannelClass(dst.getFormat().type); in copy()
1119 const TextureFormat& format = access.getFormat(); in estimatePixelValueRange()
1251 if (!isCombinedDepthStencilType(baseAccess.getFormat().type)) 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()
1403 …urn toSamplerAccess(ConstPixelBufferAccess(baseFormat, IVec3(0, 0, 0), DE_NULL), mode).getFormat(); in getEffectiveDepthStencilTextureFormat()