diff options
author | Brian Paul <[email protected]> | 2014-01-06 12:50:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-01-06 13:37:00 -0700 |
commit | 3486f6f31b8cdb01e480cfbd8814c1e4222d26b0 (patch) | |
tree | dc45a8f11d2b08593ea8d6db5b16e0968756095a /src/mesa/main/formats.h | |
parent | 7db56ddee07fb365832881e05205d98f281cea80 (diff) |
mesa: implement missing glGet(GL_RGBA_SIGNED_COMPONENTS_EXT) query
This is part of the GL_EXT_packed_float extension.
Bugzilla: http://bugs.freedesktop.org/show_bug.cgi?id=73096
Cc: 10.0 <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 64b4b9a015f..0c91aeaac86 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -341,6 +341,9 @@ _mesa_is_format_integer_color(gl_format format); extern GLboolean _mesa_is_format_unsigned(gl_format format); +extern GLboolean +_mesa_is_format_signed(gl_format format); + extern GLenum _mesa_get_format_color_encoding(gl_format format); |