diff options
author | Brian Paul <[email protected]> | 2006-11-22 16:01:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-11-22 16:01:48 +0000 |
commit | 9540c9c04fa0b691202f419520d9c4d8d495588d (patch) | |
tree | 9ec84da35227dc6909f5cdf4c925adbe0f2bbd7f /src/mesa/glapi/gl_XML.py | |
parent | 96c0a6de25de2ba8f9601c13f67c22e1aff17b29 (diff) |
GLX protocol fixes for glMap* functions (bug 8899)
Diffstat (limited to 'src/mesa/glapi/gl_XML.py')
-rw-r--r-- | src/mesa/glapi/gl_XML.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index 15c3adc02b7..b7a7388400d 100644 --- a/src/mesa/glapi/gl_XML.py +++ b/src/mesa/glapi/gl_XML.py @@ -438,8 +438,9 @@ class gl_parameter: #if ts == "GLdouble": # print '/* stack size -> %s = %u (after) */' % (self.name, self.type_expr.get_stack_size()) - self.is_counter = is_attr_true( element, 'counter' ) - self.is_output = is_attr_true( element, 'output' ) + self.is_client_only = is_attr_true( element, 'client_only' ) + self.is_counter = is_attr_true( element, 'counter' ) + self.is_output = is_attr_true( element, 'output' ) # Pixel data has special parameters. |