diff options
author | Damien Lespiau <[email protected]> | 2010-02-06 16:43:01 +0100 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-02-06 16:43:58 +0100 |
commit | fd2378e4b0630e26562f3d742b8b2d9a5d5844b0 (patch) | |
tree | b08cea4334ef0635bb9c32da04dfb79881e70eba /src | |
parent | c8433af711c1ec102bfaded742be964545464a42 (diff) |
intel: Allow L8 PBO blit uploads.
Bug #32810
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_tex_image.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex_image.c b/src/mesa/drivers/dri/intel/intel_tex_image.c index 3a9394c4f4a..6402141170d 100644 --- a/src/mesa/drivers/dri/intel/intel_tex_image.c +++ b/src/mesa/drivers/dri/intel/intel_tex_image.c @@ -187,6 +187,11 @@ check_pbo_format(GLint internalFormat, return (format == GL_RGB && type == GL_UNSIGNED_SHORT_5_6_5 && mesa_format == MESA_FORMAT_RGB565); + case 1: + case GL_LUMINANCE: + return (format == GL_LUMINANCE && + type == GL_UNSIGNED_BYTE && + mesa_format == MESA_FORMAT_L8); case GL_YCBCR_MESA: return (type == GL_UNSIGNED_SHORT_8_8_MESA || type == GL_UNSIGNED_BYTE); default: |