summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/readpix.h
diff options
context:
space:
mode:
authorAnuj Phogat <anuj.phogat@gmail.com>2015-06-11 16:48:26 -0700
committerAnuj Phogat <anuj.phogat@gmail.com>2015-07-24 10:48:58 -0700
commitc59c0f8a42652603da7f89e3270897cb685fe76b (patch)
tree3a02959f53682d65f20e73d118a8c39459b1dfed /src/mesa/main/readpix.h
parent9fff00d387cacf7820c344324820cab764541762 (diff)
downloadexternal_mesa3d-c59c0f8a42652603da7f89e3270897cb685fe76b.zip
external_mesa3d-c59c0f8a42652603da7f89e3270897cb685fe76b.tar.gz
external_mesa3d-c59c0f8a42652603da7f89e3270897cb685fe76b.tar.bz2
mesa: Add a helper function _mesa_need_luminance_to_rgb_conversion()
Cc: <mesa-stable@lists.freedesktop.org> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Diffstat (limited to 'src/mesa/main/readpix.h')
-rw-r--r--src/mesa/main/readpix.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/readpix.h b/src/mesa/main/readpix.h
index f894036..41116e4 100644
--- a/src/mesa/main/readpix.h
+++ b/src/mesa/main/readpix.h
@@ -40,6 +40,10 @@ _mesa_readpixels_needs_slow_path(const struct gl_context *ctx, GLenum format,
extern GLboolean
_mesa_need_rgb_to_luminance_conversion(mesa_format texFormat, GLenum format);
+extern GLboolean
+_mesa_need_luminance_to_rgb_conversion(GLenum srcBaseFormat,
+ GLenum dstBaseFormat);
+
extern GLbitfield
_mesa_get_readpixels_transfer_ops(const struct gl_context *ctx,
mesa_format texFormat,