mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
Later versions of Python handle formats like '% 5u' differently. For
whatever reason, a space is always inserted. That is not the desired behavior.
This commit is contained in:
parent
9d881ea718
commit
3bca4f679a
3 changed files with 4 additions and 4 deletions
|
|
@ -879,7 +879,7 @@ __GLapi * __glXNewIndirectAPI( void )
|
|||
if first:
|
||||
print ''
|
||||
if show_num:
|
||||
print ' /* % 3u. %s */' % (cat_num, cat_name)
|
||||
print ' /* %3u. %s */' % (cat_num, cat_name)
|
||||
else:
|
||||
print ' /* %s */' % (cat_name)
|
||||
print ''
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@ int _mesa_lookup_enum_by_name( const char *symbol )
|
|||
print 'static const enum_elt all_enums[%u] =' % (len(name_table))
|
||||
print '{'
|
||||
for [name, enum] in name_table:
|
||||
print ' { % 5u, 0x%08X }, /* %s */' % (string_offsets[name], enum, name)
|
||||
print ' { %5u, 0x%08X }, /* %s */' % (string_offsets[name], enum, name)
|
||||
print '};'
|
||||
print ''
|
||||
|
||||
|
|
@ -174,7 +174,7 @@ int _mesa_lookup_enum_by_name( const char *symbol )
|
|||
else:
|
||||
i = name_table.index( [name, enum] )
|
||||
|
||||
print ' % 4u, /* %s */' % (i, name)
|
||||
print ' %4u, /* %s */' % (i, name)
|
||||
print '};'
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ class PrintGlProcs(gl_XML.gl_print_base):
|
|||
print 'static const glprocs_table_t static_functions[] = {'
|
||||
|
||||
for (offset, disp_name, real_name) in table:
|
||||
print ' NAME_FUNC_OFFSET( % 5u, gl%s, _gloffset_%s ),' % (offset, disp_name, real_name)
|
||||
print ' NAME_FUNC_OFFSET( %5u, gl%s, _gloffset_%s ),' % (offset, disp_name, real_name)
|
||||
|
||||
print ' NAME_FUNC_OFFSET( -1, NULL, 0 )'
|
||||
print '};'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue