From 8f378d1083179ea9e760688582faf95aea880b94 Mon Sep 17 00:00:00 2001 From: Nanley Chery <nanley.g.chery@intel.com> Date: Tue, 19 May 2015 09:58:17 -0700 Subject: mesa/formats: store whether or not a format is sRGB in gl_format_info v2: remove extra newline. v3: use bool instead of GLboolean. Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com> Signed-off-by: Nanley Chery <nanley.g.chery@intel.com> --- src/mesa/main/format_info.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mesa/main/format_info.py') diff --git a/src/mesa/main/format_info.py b/src/mesa/main/format_info.py index c249e73a551..839d4073c61 100644 --- a/src/mesa/main/format_info.py +++ b/src/mesa/main/format_info.py @@ -180,6 +180,8 @@ for fmat in formats: bits = [ get_channel_bits(fmat, name) for name in ['l', 'i', 'z', 's']] print ' {0},'.format(', '.join(map(str, bits))) + print ' {0:d},'.format(fmat.colorspace == 'srgb') + print ' {0}, {1}, {2},'.format(fmat.block_width, fmat.block_height, int(fmat.block_size() / 8)) -- cgit v1.2.3