HomeSort by relevance Sort by last modified time
    Searched refs:colorbufferFormat (Results 1 - 6 of 6) sorted by null

  /external/deqp/modules/gles2/functional/
es2fFboRenderTest.cpp 241 , colorbufferFormat (GL_NONE)
252 GLenum colorbufferFormat; //!< Internal format for color buffer texture or renderbuffer
297 name += getFormatName(colorbufferFormat);
418 checkColorFormatSupport(context, config.colorbufferFormat);
430 context.texImage2D(GL_TEXTURE_2D, 0, m_config.colorbufferFormat, width, height);
448 createRbo(m_colorbuffer, m_config.colorbufferFormat, width, height);
719 if(getConfig().colorbufferFormat == GL_RGB5_A1)
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
utilities.h 53 bool ValidateCopyFormats(GLenum textureFormat, GLenum colorbufferFormat);
utilities.cpp 544 bool ValidateCopyFormats(GLenum textureFormat, GLenum colorbufferFormat)
547 ASSERT(!gl::IsUnsizedInternalFormat(colorbufferFormat));
554 if(GetColorComponentType(colorbufferFormat) != GetColorComponentType(textureFormat))
559 if(GetColorEncoding(colorbufferFormat) != GetColorEncoding(textureFormat))
565 GLenum baseColorbufferFormat = gl::GetBaseInternalFormat(colorbufferFormat);
    [all...]
libGLESv2.cpp 936 GLenum colorbufferFormat = source->getFormat();
941 if(colorbufferFormat == GL_RGB10_A2)
948 if(gl::GetBaseInternalFormat(colorbufferFormat) == internalformat)
950 internalformat = colorbufferFormat;
952 else if(GetColorComponentType(colorbufferFormat) == GL_UNSIGNED_NORMALIZED && GetRedSize(colorbufferFormat) <= 8)
959 else if(GetColorComponentType(colorbufferFormat) == GL_INT)
963 else if(GetColorComponentType(colorbufferFormat) == GL_UNSIGNED_INT)
967 else if(GetColorComponentType(colorbufferFormat) == GL_FLOAT && GetRedSize(colorbufferFormat) == 16) // GL_EXT_color_buffer_half_floa
    [all...]
libGLESv3.cpp 486 GLenum colorbufferFormat = source->getFormat();
497 if(!ValidateCopyFormats(textureFormat, colorbufferFormat))
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.cpp 857 GLenum colorbufferFormat = source->getFormat();
863 if(colorbufferFormat != GL_ALPHA &&
864 colorbufferFormat != GL_RGBA &&
865 colorbufferFormat != GL_RGBA4_OES &&
866 colorbufferFormat != GL_RGB5_A1_OES &&
867 colorbufferFormat != GL_RGBA8_OES)
874 if(colorbufferFormat != GL_RGB &&
875 colorbufferFormat != GL_RGB565_OES &&
876 colorbufferFormat != GL_RGB8_OES &&
877 colorbufferFormat != GL_RGBA &
    [all...]

Completed in 121 milliseconds