• Home
  • Raw
  • Download

Lines Matching refs:textureFormat

815 											   const TextureFormat&			textureFormat,  in readIntegerTextureViaFBOAndVerify()  argument
819 DE_ASSERT(isFormatTypeInteger(textureFormat.type)); in readIntegerTextureViaFBOAndVerify()
829 tcu::TextureLevel resultSlice (textureFormat, textureSize.x(), textureSize.y()); in readIntegerTextureViaFBOAndVerify()
872 const TextureFormat& textureFormat, in readFloatOrNormTextureWithLookupsAndVerify() argument
876 DE_ASSERT(!isFormatTypeInteger(textureFormat.type)); in readFloatOrNormTextureWithLookupsAndVerify()
891 "precision highp " + getShaderSamplerType(textureFormat.type, textureType) + ";\n" in readFloatOrNormTextureWithLookupsAndVerify()
893 … "uniform highp " + getShaderSamplerType(textureFormat.type, textureType) + " u_texture;\n" in readFloatOrNormTextureWithLookupsAndVerify()
953 tcu::TextureLevel resultSlice (textureFormat, textureSize.x(), textureSize.y()); in readFloatOrNormTextureWithLookupsAndVerify()
999 switch (textureFormat.order) in readFloatOrNormTextureWithLookupsAndVerify()
1022 const TextureFormat& textureFormat, in readBufferTextureWithMappingAndVerify() argument
1026 tcu::TextureLevel result (textureFormat, imageSize, 1); in readBufferTextureWithMappingAndVerify()
1028 DE_ASSERT(resultAccess.getDataSize() == imageSize * textureFormat.getPixelSize()); in readBufferTextureWithMappingAndVerify()
1047 const TextureFormat& textureFormat, in readTextureAndVerify() argument
1052 …return readBufferTextureWithMappingAndVerify(renderCtx, glLog, bufferGL, textureFormat, imageSize.… in readTextureAndVerify()
1054 …sFormatTypeInteger(textureFormat.type) ? readIntegerTextureViaFBOAndVerify (renderCtx, glLog, t… in readTextureAndVerify()
1055 …xtureWithLookupsAndVerify (renderCtx, glLog, textureGL, textureType, textureFormat, imageSize, ve… in readTextureAndVerify()
1276 …text, const char* name, const char* description, const TextureFormat& textureFormat, const Texture… in ImageLoadAndStoreCase() argument
1278 , m_textureFormat (textureFormat) in ImageLoadAndStoreCase()
1284 DE_ASSERT(textureFormat.getPixelSize() == imageFormat.getPixelSize()); in ImageLoadAndStoreCase()