projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
370e5d2
)
mesa: fix error in _mesa_format_matches_format_and_type() for RGB888
author
Brian Paul
<brianp@vmware.com>
Fri, 27 Jan 2012 03:01:11 +0000
(20:01 -0700)
committer
Brian Paul
<brianp@vmware.com>
Sat, 28 Jan 2012 01:21:43 +0000
(18:21 -0700)
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/formats.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/formats.c
b/src/mesa/main/formats.c
index 96317dbf4d5cbbde1b60b94f0031165488c93e83..e14aa75abc7eab1857ed511cab1bbed6c8b2fe3f 100644
(file)
--- a/
src/mesa/main/formats.c
+++ b/
src/mesa/main/formats.c
@@
-2568,7
+2568,7
@@
_mesa_format_matches_format_and_type(gl_format gl_format,
return GL_FALSE;
case MESA_FORMAT_RGB888:
- return format == GL_
RGB
&& type == GL_UNSIGNED_BYTE && littleEndian;
+ return format == GL_
BGR
&& type == GL_UNSIGNED_BYTE && littleEndian;
case MESA_FORMAT_BGR888:
return GL_FALSE;