diff options
author | Brian Paul <[email protected]> | 2012-01-26 20:01:12 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-27 18:21:44 -0700 |
commit | 06aa607ba76d940c48556935259c2a34eac7a8dc (patch) | |
tree | df2b4dcf0451559602b748a6175121aff53de47a /src/mesa/main/formats.h | |
parent | 952ca0785236729b69e154b3b48783fc4d9a5526 (diff) |
mesa: added swapBytes parameter to _mesa_format_matches_format_and_type()
Not actually used yet though.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 9609343387f..3a694a813de 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -343,7 +343,8 @@ _mesa_format_num_components(gl_format format); GLboolean _mesa_format_matches_format_and_type(gl_format gl_format, - GLenum format, GLenum type); + GLenum format, GLenum type, + GLboolean swapBytes); #ifdef __cplusplus |