diff options
author | Marek Olšák <[email protected]> | 2013-01-24 21:06:50 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-02-06 14:51:31 +0100 |
commit | ebe86b80825404cec057fb7e7519864754e9481c (patch) | |
tree | d46ea2770e5d0d1276771e04167f932ed5a82c7c /src/mesa/main/teximage.c | |
parent | cf37aef4143d4a0a679830318217251d027bb193 (diff) |
mesa: fixup inconsistent naming of RG16 formats
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r-- | src/mesa/main/teximage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index ff3c92c5ef1..9283ece8a77 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -3917,7 +3917,7 @@ get_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat) case GL_RG8: return MESA_FORMAT_GR88; case GL_RG16: - return MESA_FORMAT_RG1616; + return MESA_FORMAT_GR1616; case GL_RG16F: return MESA_FORMAT_RG_FLOAT16; case GL_RG32F: |