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_xv.go | |
| parent | 26191c0f45bd6a112085c44c271a135d65c80f18 (diff) | |
added tests
Diffstat (limited to 'auto_xv.go')
| -rw-r--r-- | auto_xv.go | 36 |
1 files changed, 30 insertions, 6 deletions
@@ -1,7 +1,7 @@ package xgb /* - This file was generated by xv.xml on May 6 2012 3:00:45am EDT. + This file was generated by xv.xml on May 6 2012 5:48:48pm EDT. This file is automatically generated. Edit at your peril! */ @@ -10,11 +10,29 @@ package xgb // import "xproto" // import "shm" -// Skipping definition for base type 'Card8' +// XvInit must be called before using the XVideo extension. +func (c *Conn) XvInit() error { + reply, err := c.QueryExtension(6, "XVideo").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named XVideo could be found on on the server.") + } -// Skipping definition for base type 'Int16' + c.extLock.Lock() + c.extensions["XVideo"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["XVideo"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() -// Skipping definition for base type 'Int32' + return nil +} + +func init() { + newExtEventFuncs["XVideo"] = make(map[int]newEventFun) +} // Skipping definition for base type 'Void' @@ -36,6 +54,12 @@ package xgb // Skipping definition for base type 'Id' +// Skipping definition for base type 'Card8' + +// Skipping definition for base type 'Int16' + +// Skipping definition for base type 'Int32' + const ( XvTypeInputMask = 1 XvTypeOutputMask = 2 @@ -938,7 +962,7 @@ func (v XvVideoNotifyEvent) String() string { } func init() { - newEventFuncs[0] = NewXvVideoNotifyEvent + newExtEventFuncs["XVideo"][0] = NewXvVideoNotifyEvent } // Event definition XvPortNotify (1) @@ -1025,7 +1049,7 @@ func (v XvPortNotifyEvent) String() string { } func init() { - newEventFuncs[1] = NewXvPortNotifyEvent + newExtEventFuncs["XVideo"][1] = NewXvPortNotifyEvent } // Error definition XvBadPort (0) |
