• Home
  • Raw
  • Download

Lines Matching refs:m_format

100 	deUint32				m_format;  member in deqp::gles3::Functional::Texture2DFormatCase
113 , m_format (format) in Texture2DFormatCase()
126 , m_format (internalFormat) in Texture2DFormatCase()
142 checkSupport(m_renderCtxInfo, m_format); in init()
145 …t fmt = m_dataType ? glu::mapGLTransferFormat(m_format, m_dataType) : glu::mapGLInternalFormat(m… in init()
150 fmtName << glu::getTextureFormatStr(m_format) << ", " << glu::getTypeStr(m_dataType); in init()
152 fmtName << glu::getTextureFormatStr(m_format); in init()
159 …? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal fo… in init()
160 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format. in init()
263 deUint32 m_format; member in deqp::gles3::Functional::TextureCubeFormatCase
279 , m_format (format) in TextureCubeFormatCase()
294 , m_format (internalFormat) in TextureCubeFormatCase()
312 checkSupport(m_renderCtxInfo, m_format); in init()
315 …t fmt = m_dataType ? glu::mapGLTransferFormat(m_format, m_dataType) : glu::mapGLInternalFormat(m… in init()
320 fmtName << glu::getTextureFormatStr(m_format) << ", " << glu::getTypeStr(m_dataType); in init()
322 fmtName << glu::getTextureFormatStr(m_format); in init()
330 ? new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format. in init()
331 : new glu::TextureCube(m_renderCtx, m_format, m_width); // Explicit internal format. in init()
463 deUint32 m_format; member in deqp::gles3::Functional::Texture2DArrayFormatCase
479 , m_format (format) in Texture2DArrayFormatCase()
494 , m_format (internalFormat) in Texture2DArrayFormatCase()
512 checkSupport(m_renderCtxInfo, m_format); in init()
515 …? new glu::Texture2DArray(m_renderCtx, m_format, m_dataType, m_width, m_height, m_numLayers) // Im… in init()
516 …: new glu::Texture2DArray(m_renderCtx, m_format, m_width, m_height, m_numLayers); // Explicit i… in init()
620 deUint32 m_format; member in deqp::gles3::Functional::Texture3DFormatCase
636 , m_format (format) in Texture3DFormatCase()
651 , m_format (internalFormat) in Texture3DFormatCase()
669 checkSupport(m_renderCtxInfo, m_format); in init()
672 …? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit in… in init()
673 …: new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal f… in init()
783 tcu::CompressedTexFormat m_format; member in deqp::gles3::Functional::Compressed2DFormatCase
805 , m_format (format) in Compressed2DFormatCase()
822 tcu::CompressedTexture compressedTexture (m_format, m_width, m_height); in init()
921 tcu::CompressedTexFormat m_format; member in deqp::gles3::Functional::CompressedCubeFormatCase
946 , m_format (format) in CompressedCubeFormatCase()
969 levels[face].setStorage(m_format, m_width, m_height); in init()