Module: Mesa Branch: master Commit: f1c5b5d15e241b3a91eb110d47394e0c016012f2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f1c5b5d15e241b3a91eb110d47394e0c016012f2
Author: Jordan Justen <[email protected]> Date: Fri Dec 28 11:08:20 2012 -0800 glformats: support _mesa_bytes_per_pixel for 2101010+GL_RGB Signed-off-by: Jordan Justen <[email protected]> Reviewed-by: Ian Romanick <[email protected]> --- src/mesa/main/glformats.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/glformats.c b/src/mesa/main/glformats.c index fb69421..ff56ffa 100644 --- a/src/mesa/main/glformats.c +++ b/src/mesa/main/glformats.c @@ -271,7 +271,8 @@ _mesa_bytes_per_pixel(GLenum format, GLenum type) case GL_UNSIGNED_INT_10_10_10_2: case GL_UNSIGNED_INT_2_10_10_10_REV: if (format == GL_RGBA || format == GL_BGRA || format == GL_ABGR_EXT || - format == GL_RGBA_INTEGER_EXT || format == GL_BGRA_INTEGER_EXT) + format == GL_RGBA_INTEGER_EXT || format == GL_BGRA_INTEGER_EXT || + format == GL_RGB) return sizeof(GLuint); else return -1; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
