Home | History | Annotate | Download | only in gen

Lines Matching refs:category

272     """Based on the category name and number, select a numerical class for it.
325 def __init__(self, element, context, category):
328 self.category = real_category_name( category )
334 def __init__(self, element, context, category):
335 gl_item.__init__(self, element, context, category)
356 def __init__(self, element, context, category):
357 gl_item.__init__(self, element, context, category)
391 if self.category.startswith( "GL_VERSION_" ):
393 elif self.category.startswith( "GL_ARB_" ):
395 elif self.category.startswith( "GL_EXT_" ):
844 def create_type(self, element, context, category):
845 return gl_type(element, context, category)
847 def create_enum(self, element, context, category):
848 return gl_enum(element, context, category)
912 if child.tag == "category":
960 """Iterate over functions by category.
962 If cat is None, all known functions are iterated in category
964 Within a category, functions are sorted by name. If cat is
965 not None, then only functions in that category are iterated.
1037 name and number (which may be None) of the category.
1055 return ["<unknown category>", None]