Searched refs:is_attr_true (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_XML.py | 57 def is_attr_true( element, name, default = "false" ): function 341 tn.integer = not is_attr_true( element, "float" ) 342 tn.unsigned = is_attr_true( element, "unsigned" ) 343 tn.pointer = is_attr_true( element, "pointer" ) 445 self.is_client_only = is_attr_true( element, 'client_only' ) 446 self.is_counter = is_attr_true( element, 'counter' ) 447 self.is_output = is_attr_true( element, 'output' ) 466 self.img_pad_dimensions = is_attr_true( element, 'img_pad_dimensions' ) 467 self.img_null_flag = is_attr_true( element, 'img_null_flag' ) 468 self.img_send_null = is_attr_true( element, 'img_send_null' ) [all …]
|
D | glX_XML.py | 171 self.ignore = gl_XML.is_attr_true( child, 'ignore' ) 172 self.can_be_large = gl_XML.is_attr_true( child, 'large' ) 173 self.glx_doubles_in_order = gl_XML.is_attr_true( child, 'doubles_in_order' ) 174 self.reply_always_array = gl_XML.is_attr_true( child, 'always_array' ) 175 self.dimensions_in_reply = gl_XML.is_attr_true( child, 'dimensions_in_reply' )
|