diff options
author | Marek Olšák <maraeo@gmail.com> | 2013-03-13 16:47:21 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2013-03-23 13:17:05 +0100 |
commit | b2a4573c14b04f11525dfd33971863ee3e00f995 (patch) | |
tree | a52934868a0818092a8568baf2ef4c2dc8973c34 | |
parent | b101a094b5576337f5bb7aecf525eb1755757b9c (diff) |
mesa: handle HALF_FLOAT like FLOAT in get_tex_rgba
NOTE: This is a candidate for the stable branches.
Reviewed-by: Brian Paul <brianp@vmware.com>
Tested-by: Brian Paul <brianp@vmware.com>
-rw-r--r-- | src/mesa/main/texgetimage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 7299a4b23e..74b09ef2c2 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -518,6 +518,7 @@ get_tex_rgba(struct gl_context *ctx, GLuint dimensions, if (type_needs_clamping(type)) { /* the returned image type can't have negative values */ if (dataType == GL_FLOAT || + dataType == GL_HALF_FLOAT || dataType == GL_SIGNED_NORMALIZED || format == GL_LUMINANCE || format == GL_LUMINANCE_ALPHA) { |