summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2017-06-19 11:33:51 +0100
committerEric Engestrom <[email protected]>2017-06-20 17:55:13 +0100
commitcb3e01ca7110069f5ffe9ef42df6511f650ec644 (patch)
treeb75c00bff86016c8409e300036b8b09e05f2ce5c
parent45b0172693edf84eb27fe657a49da5a4f2989d8d (diff)
mesa/format_info: use designated initialiser list
Also, make that table const, since no-one is supposed to modify it anyway. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r--src/mesa/main/format_info.py37
1 files changed, 20 insertions, 17 deletions
diff --git a/src/mesa/main/format_info.py b/src/mesa/main/format_info.py
index 780dc0bec7d..b0308efc12e 100644
--- a/src/mesa/main/format_info.py
+++ b/src/mesa/main/format_info.py
@@ -165,34 +165,37 @@ print '''
* manually or commit it into version control.
*/
-static struct gl_format_info format_info[MESA_FORMAT_COUNT] =
+static const struct gl_format_info format_info[MESA_FORMAT_COUNT] =
{
'''
+def format_channel_bits(fmat, tuple_list):
+ return ['.%s = %s' % (field, str(get_channel_bits(fmat, name))) for (field, name) in tuple_list]
+
+
for fmat in formats:
print ' {'
- print ' {0},'.format(fmat.name)
- print ' "{0}",'.format(fmat.name)
- print ' {0},'.format('MESA_FORMAT_LAYOUT_' + fmat.layout.upper())
- print ' {0},'.format(get_gl_base_format(fmat))
- print ' {0},'.format(get_gl_data_type(fmat))
+ print ' .Name = {0},'.format(fmat.name)
+ print ' .StrName = "{0}",'.format(fmat.name)
+ print ' .Layout = {0},'.format('MESA_FORMAT_LAYOUT_' + fmat.layout.upper())
+ print ' .BaseFormat = {0},'.format(get_gl_base_format(fmat))
+ print ' .DataType = {0},'.format(get_gl_data_type(fmat))
- bits = [ get_channel_bits(fmat, name) for name in ['r', 'g', 'b', 'a']]
- print ' {0},'.format(', '.join(map(str, bits)))
- bits = [ get_channel_bits(fmat, name) for name in ['l', 'i', 'z', 's']]
- print ' {0},'.format(', '.join(map(str, bits)))
+ bits = [('RedBits', 'r'), ('GreenBits', 'g'), ('BlueBits', 'b'), ('AlphaBits', 'a')]
+ print ' {0},'.format(', '.join(format_channel_bits(fmat, bits)))
+ bits = [('LuminanceBits', 'l'), ('IntensityBits', 'i'), ('DepthBits', 'z'), ('StencilBits', 's')]
+ print ' {0},'.format(', '.join(format_channel_bits(fmat, bits)))
- print ' {0:d},'.format(fmat.colorspace == 'srgb')
+ print ' .IsSRGBFormat = {0:d},'.format(fmat.colorspace == 'srgb')
- print ' {0}, {1}, {2}, {3},'.format(fmat.block_width, fmat.block_height,
- fmat.block_depth,
- int(fmat.block_size() / 8))
+ print ' .BlockWidth = {0}, .BlockHeight = {1}, .BlockDepth = {2},'.format(fmat.block_width, fmat.block_height, fmat.block_depth)
+ print ' .BytesPerBlock = {0},'.format(int(fmat.block_size() / 8))
- print ' {{ {0} }},'.format(', '.join(map(str, fmat.swizzle)))
+ print ' .Swizzle = {{ {0} }},'.format(', '.join(map(str, fmat.swizzle)))
if fmat.is_array():
chan = fmat.array_element()
norm = chan.norm or chan.type == parser.FLOAT
- print ' MESA_ARRAY_FORMAT({0}),'.format(', '.join([
+ print ' .ArrayFormat = MESA_ARRAY_FORMAT({0}),'.format(', '.join([
str(chan.size / 8),
str(int(chan.sign)),
str(int(chan.type == parser.FLOAT)),
@@ -204,7 +207,7 @@ for fmat in formats:
str(fmat.swizzle[3]),
]))
else:
- print ' 0,'
+ print ' .ArrayFormat = 0,'
print ' },'
print '};'