diff options
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/glapi/glX_proto_send.py | 2 | ||||
-rw-r--r-- | src/mesa/glapi/gl_API.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/glX_proto_send.py b/src/mesa/glapi/glX_proto_send.py index 501b514b556..6a4d1dfc0d4 100644 --- a/src/mesa/glapi/glX_proto_send.py +++ b/src/mesa/glapi/glX_proto_send.py @@ -576,7 +576,7 @@ generic_%u_byte( GLint rop, const void * ptr ) if output and f.reply_always_array: print ' %s = (%s)%sData(reply);' % (output.name, output.type_string(), xcb_name) elif output and not f.reply_always_array: - if not output.is_image() and not f.name == "GenQueriesARB": + if not output.is_image(): print ' if (%sDataLength(reply) == 0)' % (xcb_name) print ' (void)memcpy(%s, &reply->datum, sizeof(reply->datum));' % (output.name) print ' else' diff --git a/src/mesa/glapi/gl_API.xml b/src/mesa/glapi/gl_API.xml index 49eb6d17e20..2085f0d44ae 100644 --- a/src/mesa/glapi/gl_API.xml +++ b/src/mesa/glapi/gl_API.xml @@ -6721,7 +6721,7 @@ <function name="GenQueriesARB" offset="700"> <param name="n" type="GLsizei" counter="true"/> <param name="ids" type="GLuint *" output="true" count="n"/> - <glx sop="162"/> + <glx sop="162" always_array="true"/> </function> <function name="DeleteQueriesARB" offset="701"> |