From: Paul Berry Date: Wed, 7 Nov 2012 21:49:41 +0000 (-0800) Subject: glapi: skip padding in get_called_parameter_string X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=57b7c20ca59eb232cbd0a3a8368d603cbc06c215;p=mesa.git glapi: skip padding in get_called_parameter_string This bug is currently benign, since get_called_parameter_string() is currently only used for functions that return true for glx_function.has_different_protocol(), and none of those functions include padding. However, in order to implement marshalling of GL API functions, we'll need to use get_called_parameter_string() far more often. Reviewed-by: Kenneth Graunke --- diff --git a/src/mapi/glapi/gen/gl_XML.py b/src/mapi/glapi/gen/gl_XML.py index 227e9fcd9a4..3bbc794398f 100644 --- a/src/mapi/glapi/gen/gl_XML.py +++ b/src/mapi/glapi/gen/gl_XML.py @@ -802,6 +802,8 @@ class gl_function( gl_item ): comma = "" for p in self.parameterIterator(): + if p.is_padding: + continue p_string = p_string + comma + p.name comma = ", "