HomeSort by relevance Sort by last modified time
    Searched refs:colorbufferFormat (Results 1 - 7 of 7) 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);
    [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...]
  /external/swiftshader/src/OpenGL/libGLESv2/
utilities.h 51 bool ValidateCopyFormats(GLenum textureFormat, GLenum colorbufferFormat);
utilities.cpp 545 bool ValidateCopyFormats(GLenum textureFormat, GLenum colorbufferFormat)
548 ASSERT(!gl::IsUnsizedInternalFormat(colorbufferFormat));
555 if(GetColorComponentType(colorbufferFormat) != GetColorComponentType(textureFormat))
560 if(GetColorEncoding(colorbufferFormat) != GetColorEncoding(textureFormat))
566 GLenum baseColorbufferFormat = gl::GetBaseInternalFormat(colorbufferFormat);
    [all...]
libGLESv2.cpp 976 GLenum colorbufferFormat = source->getFormat();
981 if(gl::GetBaseInternalFormat(colorbufferFormat) == internalformat)
983 internalformat = colorbufferFormat;
985 else if(GetColorComponentType(colorbufferFormat) == GL_UNSIGNED_NORMALIZED && GetRedSize(colorbufferFormat) <= 8)
992 else if(GetColorComponentType(colorbufferFormat) == GL_INT)
996 else if(GetColorComponentType(colorbufferFormat) == GL_UNSIGNED_INT)
1000 else if(GetColorComponentType(colorbufferFormat) == GL_FLOAT && GetRedSize(colorbufferFormat) == 16) // GL_EXT_color_buffer_half_float
1012 if(!ValidateCopyFormats(internalformat, colorbufferFormat))
    [all...]
libGLESv3.cpp 486 GLenum colorbufferFormat = source->getFormat();
497 if(!ValidateCopyFormats(textureFormat, colorbufferFormat))
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
libGL.cpp 1055 GLenum colorbufferFormat = source->getFormat();
1060 if(colorbufferFormat != GL_ALPHA &&
1061 colorbufferFormat != GL_RGBA &&
1062 colorbufferFormat != GL_RGBA4 &&
1063 colorbufferFormat != GL_RGB5_A1 &&
1064 colorbufferFormat != GL_RGBA8_EXT)
1071 if(colorbufferFormat != GL_RGB &&
1072 colorbufferFormat != GL_RGB565 &&
1073 colorbufferFormat != GL_RGB8_EXT &&
1074 colorbufferFormat != GL_RGBA &
    [all...]

Completed in 1270 milliseconds