• Home
  • Raw
  • Download

Lines Matching refs:m_format

517 		, m_format	(format)  in UploadTex2DCase()
530 TextureLevel uploadLevel (glu::mapGLInternalFormat(m_format), width, height); in iterate()
534 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
540 gl.texStorage2D(GL_TEXTURE_2D, 1, m_format, width, height); in iterate()
564 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::UploadTex2DCase
572 , m_format (format) in UploadTex2DArrayCase()
587 TextureLevel uploadLevel (glu::mapGLInternalFormat(m_format), width, height, levels); in iterate()
589 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
602 gl.texStorage3D(GL_TEXTURE_2D_ARRAY, 1, m_format, width, height, levels); in iterate()
650 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::UploadTex2DArrayCase
658 , m_format (format) in UploadTexCubeCase()
673 tcu::TextureCube texData (glu::mapGLInternalFormat(m_format), size); in iterate()
676 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
690 gl.texStorage2D(GL_TEXTURE_CUBE_MAP, 1, m_format, size, size); in iterate()
739 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::UploadTexCubeCase
747 , m_format (format) in RenderTex2DCase()
763 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
769 gl.texStorage2D(GL_TEXTURE_2D, 1, m_format, width, height); in iterate()
796 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::RenderTex2DCase
804 , m_format (format) in ClearTex2DCase()
821 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
827 gl.texStorage2D(GL_TEXTURE_2D, 1, m_format, width, height); in iterate()
870 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::ClearTex2DCase
878 , m_format (format) in CompareModeCase()
891 TextureLevel uploadLevel (glu::mapGLInternalFormat(m_format), width, height); in iterate()
895 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
903 gl.texStorage2D(GL_TEXTURE_2D, 1, m_format, width, height); in iterate()
929 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::CompareModeCase
937 , m_format (format) in BaseLevelCase()
953 TextureLevel uploadLevel (glu::mapGLInternalFormat(m_format), levelWidth, levelHeight); in iterate()
957 checkDepthStencilFormatSupport(m_context.getContextInfo(), m_format); in iterate()
965 gl.texStorage2D(GL_TEXTURE_2D, deLog2Floor32(de::max(width, height))+1, m_format, width, height); in iterate()
990 const deUint32 m_format; member in deqp::gles31::Functional::__anon83ed38cb0111::BaseLevelCase