This patch is Reviewed-by: Ian Romanick <ian.d.roman...@intel.com>
Should it also be tagged for 10.4? On 12/01/2014 03:04 AM, Iago Toral Quiroga wrote: > From: Samuel Iglesias Gonsalvez <sigles...@igalia.com> > > We were returning incorrect mesa formats for GL_LUMINANCE_ALPHA16I_EXT > and GL_LUMINANCE_ALPHA32I_EXT. > > Signed-off-by: Samuel Iglesias Gonsalvez <sigles...@igalia.com> > --- > src/mesa/main/teximage.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c > index 4f4bb11..e238863 100644 > --- a/src/mesa/main/teximage.c > +++ b/src/mesa/main/teximage.c > @@ -4461,9 +4461,9 @@ get_texbuffer_format(const struct gl_context *ctx, > GLenum internalFormat) > case GL_LUMINANCE_ALPHA8I_EXT: > return MESA_FORMAT_LA_SINT8; > case GL_LUMINANCE_ALPHA16I_EXT: > - return MESA_FORMAT_LA_SINT8; > - case GL_LUMINANCE_ALPHA32I_EXT: > return MESA_FORMAT_LA_SINT16; > + case GL_LUMINANCE_ALPHA32I_EXT: > + return MESA_FORMAT_LA_SINT32; > case GL_LUMINANCE_ALPHA8UI_EXT: > return MESA_FORMAT_LA_UINT8; > case GL_LUMINANCE_ALPHA16UI_EXT: > _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev