Module: Mesa Branch: texformat-rework Commit: c5b725489243e6a94ca5e31306cdfa93619bd200 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c5b725489243e6a94ca5e31306cdfa93619bd200
Author: Brian Paul <[email protected]> Date: Tue Oct 6 19:01:43 2009 -0600 mesa: added case for MESA_FORMAT_SIGNED_RGBA_16 --- src/mesa/main/formats.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index a1a8ea8..483f993 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -879,6 +879,10 @@ _mesa_format_to_type_and_comps(gl_format format, *datatype = GL_BYTE; *comps = 4; return; + case MESA_FORMAT_SIGNED_RGBA_16: + *datatype = GL_SHORT; + *comps = 4; + return; #if FEATURE_EXT_texture_sRGB case MESA_FORMAT_SRGB8: _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
