aboutsummaryrefslogtreecommitdiff
path: root/nexgb/auto_randr.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/auto_randr.go')
-rw-r--r--nexgb/auto_randr.go38
1 files changed, 31 insertions, 7 deletions
diff --git a/nexgb/auto_randr.go b/nexgb/auto_randr.go
index bb092f5..cc5e760 100644
--- a/nexgb/auto_randr.go
+++ b/nexgb/auto_randr.go
@@ -1,7 +1,7 @@
package xgb
/*
- This file was generated by randr.xml on May 6 2012 3:00:44am EDT.
+ This file was generated by randr.xml on May 6 2012 5:48:47pm EDT.
This file is automatically generated. Edit at your peril!
*/
@@ -10,13 +10,29 @@ package xgb
// import "xproto"
// import "render"
-// Skipping definition for base type 'Int32'
+// RandrInit must be called before using the RANDR extension.
+func (c *Conn) RandrInit() error {
+ reply, err := c.QueryExtension(5, "RANDR").Reply()
+ switch {
+ case err != nil:
+ return err
+ case !reply.Present:
+ return newError("No extension named RANDR could be found on on the server.")
+ }
-// Skipping definition for base type 'Void'
+ c.extLock.Lock()
+ c.extensions["RANDR"] = reply.MajorOpcode
+ for evNum, fun := range newExtEventFuncs["RANDR"] {
+ newEventFuncs[int(reply.FirstEvent)+evNum] = fun
+ }
+ c.extLock.Unlock()
-// Skipping definition for base type 'Byte'
+ return nil
+}
-// Skipping definition for base type 'Int8'
+func init() {
+ newExtEventFuncs["RANDR"] = make(map[int]newEventFun)
+}
// Skipping definition for base type 'Card16'
@@ -36,6 +52,14 @@ 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'
+
+// Skipping definition for base type 'Int8'
+
const (
RandrRotationRotate0 = 1
RandrRotationRotate90 = 2
@@ -963,7 +987,7 @@ func (v RandrScreenChangeNotifyEvent) String() string {
}
func init() {
- newEventFuncs[0] = NewRandrScreenChangeNotifyEvent
+ newExtEventFuncs["RANDR"][0] = NewRandrScreenChangeNotifyEvent
}
// Event definition RandrNotify (1)
@@ -1031,7 +1055,7 @@ func (v RandrNotifyEvent) String() string {
}
func init() {
- newEventFuncs[1] = NewRandrNotifyEvent
+ newExtEventFuncs["RANDR"][1] = NewRandrNotifyEvent
}
// Error definition RandrBadOutput (0)