diff options
author | Adam Jackson <ajax@redhat.com> | 2012-11-09 17:07:20 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2013-08-07 05:10:46 -0400 |
commit | 1665fad0ffe13c16002c68717de25c6eddf2469b (patch) | |
tree | ba4efbd015fbc1e075423b02f170262833f43539 | |
parent | 5ac492f91f612dfc5009e324522a57f4a714756c (diff) |
glx: Compute number of attributes in GetDrawableAttributes on the fly
This doesn't have any effect yet, but is needed to properly build the
reply for pbuffers.
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | glx/glxcmds.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/glx/glxcmds.c b/glx/glxcmds.c index cbbdae8e8..cecbf7bd3 100644 --- a/glx/glxcmds.c +++ b/glx/glxcmds.c @@ -1893,27 +1893,29 @@ DoGetDrawableAttributes(__GLXclientState * cl, XID drawId) xGLXGetDrawableAttributesReply reply; __GLXdrawable *pGlxDraw; CARD32 attributes[6]; - int numAttribs, error; + int numAttribs = 0, error; if (!validGlxDrawable(client, drawId, GLX_DRAWABLE_ANY, DixGetAttrAccess, &pGlxDraw, &error)) return error; - numAttribs = 3; - reply = (xGLXGetDrawableAttributesReply) { - .type = X_Reply, - .sequenceNumber = client->sequence, - .length = numAttribs << 1, - .numAttribs = numAttribs - }; - attributes[0] = GLX_TEXTURE_TARGET_EXT; attributes[1] = pGlxDraw->target == GL_TEXTURE_2D ? GLX_TEXTURE_2D_EXT : GLX_TEXTURE_RECTANGLE_EXT; + numAttribs++; attributes[2] = GLX_Y_INVERTED_EXT; attributes[3] = GL_FALSE; + numAttribs++; attributes[4] = GLX_EVENT_MASK; attributes[5] = pGlxDraw->eventMask; + numAttribs++; + + reply = (xGLXGetDrawableAttributesReply) { + .type = X_Reply, + .sequenceNumber = client->sequence, + .length = numAttribs << 1, + .numAttribs = numAttribs + }; if (client->swapped) { __glXSwapGetDrawableAttributesReply(client, &reply, attributes); |