• Home
  • Raw
  • Download

Lines Matching refs:UVec4

77 Vec4 sRGB8ToLinear (const UVec4& cs)  in sRGB8ToLinear()
85 Vec4 sRGBA8ToLinear (const UVec4& cs) in sRGBA8ToLinear()
497 UVec4 getFormatMaxUintValue (const TextureFormat& format) in getFormatMaxUintValue()
503 return UVec4(1023u, 1023u, 1023u, 3u); in getFormatMaxUintValue()
507 case TextureFormat::UNSIGNED_INT8: return UVec4(std::numeric_limits<deUint8>::max()); in getFormatMaxUintValue()
508 case TextureFormat::UNSIGNED_INT16: return UVec4(std::numeric_limits<deUint16>::max()); in getFormatMaxUintValue()
509 case TextureFormat::UNSIGNED_INT24: return UVec4(0xffffffu); in getFormatMaxUintValue()
510 case TextureFormat::UNSIGNED_INT32: return UVec4(std::numeric_limits<deUint32>::max()); in getFormatMaxUintValue()
514 return UVec4(0); in getFormatMaxUintValue()
776 void clear (const PixelBufferAccess& access, const UVec4& color) in clear()
792 …clear(getEffectiveDepthStencilAccess(access, Sampler::MODE_STENCIL), tcu::UVec4(stencil, 0u, 0u, 0… in clearStencil()
1573 static tcu::UVec4 getNBitUnsignedIntegerVec4MaxValue (const tcu::IVec4& numBits) in getNBitUnsignedIntegerVec4MaxValue()
1575 return tcu::UVec4((numBits[0] > 0) ? (deUintMaxValue32(numBits[0])) : (0), in getNBitUnsignedIntegerVec4MaxValue()
1662 static tcu::UVec4 getTextureBorderColorUint (const TextureFormat& format, const Sampler& sampler) in getTextureBorderColorUint()
1667 const UVec4 valueMax = getNBitUnsignedIntegerVec4MaxValue(channelBits); in getTextureBorderColorUint()
1668 UVec4 result; in getTextureBorderColorUint()