diff options
| author | Andrew Gallant (Ocelot) <[email protected]> | 2012-05-07 01:00:45 -0400 |
|---|---|---|
| committer | Andrew Gallant (Ocelot) <[email protected]> | 2012-05-07 01:00:45 -0400 |
| commit | 902f3ad5b8e759879141c3b77a44e3bfdaa298bb (patch) | |
| tree | e7197eac09d56059cad0e9e2dbfb9379a62907eb /auto_xf86vidmode.go | |
| parent | 26191c0f45bd6a112085c44c271a135d65c80f18 (diff) | |
added tests
Diffstat (limited to 'auto_xf86vidmode.go')
| -rw-r--r-- | auto_xf86vidmode.go | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/auto_xf86vidmode.go b/auto_xf86vidmode.go index aefadf7..649244d 100644 --- a/auto_xf86vidmode.go +++ b/auto_xf86vidmode.go @@ -1,11 +1,33 @@ package xgb /* - This file was generated by xf86vidmode.xml on May 6 2012 3:00:44am EDT. + This file was generated by xf86vidmode.xml on May 6 2012 5:48:47pm EDT. This file is automatically generated. Edit at your peril! */ -// Skipping definition for base type 'Card16' +// Xf86vidmodeInit must be called before using the XFree86-VidModeExtension extension. +func (c *Conn) Xf86vidmodeInit() error { + reply, err := c.QueryExtension(24, "XFree86-VidModeExtension").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named XFree86-VidModeExtension could be found on on the server.") + } + + c.extLock.Lock() + c.extensions["XFree86-VidModeExtension"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["XFree86-VidModeExtension"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() + + return nil +} + +func init() { + newExtEventFuncs["XFree86-VidModeExtension"] = make(map[int]newEventFun) +} // Skipping definition for base type 'Char' @@ -31,6 +53,8 @@ package xgb // Skipping definition for base type 'Int8' +// Skipping definition for base type 'Card16' + const ( Xf86vidmodeModeFlagPositiveHsync = 1 Xf86vidmodeModeFlagNegativeHsync = 2 |
