mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-29 06:20:37 +02:00
Minor refactoring and code tweaking. The only notable chage is that
FilterGLAPISpecBase::xref is replaced by FilterGLAPISpecBase::functions_by_name. The notable difference between the two is that ::functions_by_name includes all functions, whether they have an assigned offset or not. This feature will be useful (necessary) when more server-side code is generated.
This commit is contained in:
parent
979f35fb78
commit
6af6a69312
2 changed files with 9 additions and 13 deletions
|
|
@ -416,10 +416,9 @@ class glXFunction(gl_XML.glFunction):
|
|||
|
||||
|
||||
def variable_length_parameter(self):
|
||||
for param in self.fn_parameters:
|
||||
if param.is_variable_length_array():
|
||||
return param
|
||||
|
||||
if len(self.variable_length_parameters):
|
||||
return self.variable_length_parameters[0]
|
||||
|
||||
return None
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -529,22 +529,18 @@ class glFunctionIterator:
|
|||
class FilterGLAPISpecBase(saxutils.XMLFilterBase):
|
||||
name = "a"
|
||||
license = "The license for this file is unspecified."
|
||||
functions = {}
|
||||
next_alias = -2
|
||||
types = {}
|
||||
xref = {}
|
||||
current_object = None
|
||||
factory = None
|
||||
current_category = ""
|
||||
|
||||
def __init__(self):
|
||||
saxutils.XMLFilterBase.__init__(self)
|
||||
self.functions = {}
|
||||
self.types = {}
|
||||
self.xref = {}
|
||||
self.functions_by_name = {}
|
||||
self.factory = glItemFactory()
|
||||
self.header_tag = None
|
||||
self.undef_list = []
|
||||
self.current_category = ""
|
||||
|
||||
|
||||
def find_type(self,type_name):
|
||||
|
|
@ -556,8 +552,7 @@ class FilterGLAPISpecBase(saxutils.XMLFilterBase):
|
|||
|
||||
|
||||
def find_function(self,function_name):
|
||||
index = self.xref[function_name]
|
||||
return self.functions[index]
|
||||
return self.functions_by_name[function_name]
|
||||
|
||||
|
||||
def functionIterator(self):
|
||||
|
|
@ -626,7 +621,9 @@ class FilterGLAPISpecBase(saxutils.XMLFilterBase):
|
|||
self.next_alias -= 1
|
||||
|
||||
self.functions[index] = obj
|
||||
self.xref[obj.name] = index
|
||||
|
||||
self.functions_by_name[obj.name] = obj
|
||||
|
||||
elif object_type == "type":
|
||||
self.types[obj.name] = obj
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue