summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Guimond <patg@patg.homeunix.org>2006-11-08 17:32:43 -0500
committerJosh Triplett <josh@freedesktop.org>2006-11-21 21:47:27 -0800
commita4681227e8a7d8622b3d6995b6700e18e91067c6 (patch)
tree57c4cdccb4f9e9bbe9e32525751483824f301983
parent015b2696afd0824590dd9952bd8ba61a9d5ab6e2 (diff)
fixed screen parameter type in requests
For the following requests, fixed the paramater type to be CARD32 instead of SCREEN structure Requests: - CreateNewContext - CreatePbuffer - CreateWindow
-rw-r--r--src/glx.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glx.xml b/src/glx.xml
index e7ec59e..6181408 100644
--- a/src/glx.xml
+++ b/src/glx.xml
@@ -357,7 +357,7 @@ The patch that fixed this server bug in X.org CVS is here:
<request name="CreateNewContext" opcode="24">
<field type="glx:CONTEXT" name="context" />
<field type="CARD32" name="fbconfig" />
- <field type="SCREEN" name="screen" />
+ <field type="CARD32" name="screen" />
<field type="CARD32" name="render_type" />
<field type="CARD32" name="share_list" />
<field type="BOOL" name="is_direct" />
@@ -393,7 +393,7 @@ The patch that fixed this server bug in X.org CVS is here:
</request>
<request name="CreatePbuffer" opcode="27">
- <field type="SCREEN" name="screen" />
+ <field type="CARD32" name="screen" />
<field type="FBCONFIG" name="fbconfig" />
<field type="PBUFFER" name="pbuffer" />
<field type="CARD32" name="num_attribs" />
@@ -436,7 +436,7 @@ The patch that fixed this server bug in X.org CVS is here:
</request>
<request name="CreateWindow" opcode="31">
- <field type="SCREEN" name="screen" />
+ <field type="CARD32" name="screen" />
<field type="FBCONFIG" name="fbconfig" />
<field type="xproto:WINDOW" name="window" />
<field type="glx:WINDOW" name="glx_window" />