summaryrefslogtreecommitdiff
path: root/auto_render.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-07 01:00:45 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-07 01:00:45 -0400
commit902f3ad5b8e759879141c3b77a44e3bfdaa298bb (patch)
treee7197eac09d56059cad0e9e2dbfb9379a62907eb /auto_render.go
parent26191c0f45bd6a112085c44c271a135d65c80f18 (diff)
added tests
Diffstat (limited to 'auto_render.go')
-rw-r--r--auto_render.go38
1 files changed, 31 insertions, 7 deletions
diff --git a/auto_render.go b/auto_render.go
index f6b37b7..c9fc097 100644
--- a/auto_render.go
+++ b/auto_render.go
@@ -1,7 +1,7 @@
package xgb
/*
- This file was generated by render.xml on May 6 2012 3:00:44am EDT.
+ This file was generated by render.xml on May 6 2012 5:48:47pm EDT.
This file is automatically generated. Edit at your peril!
*/
@@ -9,6 +9,36 @@ package xgb
// in one package. They are still listed here for reference.
// import "xproto"
+// RenderInit must be called before using the RENDER extension.
+func (c *Conn) RenderInit() error {
+ reply, err := c.QueryExtension(6, "RENDER").Reply()
+ switch {
+ case err != nil:
+ return err
+ case !reply.Present:
+ return newError("No extension named RENDER could be found on on the server.")
+ }
+
+ c.extLock.Lock()
+ c.extensions["RENDER"] = reply.MajorOpcode
+ for evNum, fun := range newExtEventFuncs["RENDER"] {
+ newEventFuncs[int(reply.FirstEvent)+evNum] = fun
+ }
+ c.extLock.Unlock()
+
+ return nil
+}
+
+func init() {
+ newExtEventFuncs["RENDER"] = make(map[int]newEventFun)
+}
+
+// Skipping definition for base type 'Int32'
+
+// Skipping definition for base type 'Void'
+
+// Skipping definition for base type 'Byte'
+
// Skipping definition for base type 'Int8'
// Skipping definition for base type 'Card16'
@@ -29,12 +59,6 @@ package xgb
// Skipping definition for base type 'Int16'
-// Skipping definition for base type 'Int32'
-
-// Skipping definition for base type 'Void'
-
-// Skipping definition for base type 'Byte'
-
const (
RenderPictTypeIndexed = 0
RenderPictTypeDirect = 1