diff options
author | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-05-07 21:58:33 -0400 |
---|---|---|
committer | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-05-07 21:58:33 -0400 |
commit | 13d598e5e7f26bc6177ae3f7d52f4f19729ab2f3 (patch) | |
tree | 216dde82bd19b1beb01d9fd0654daa3538e73f92 /nexgb/auto_xvmc.go | |
parent | daad54a5e114dcff9ef62abbbd18ea52929d01e5 (diff) | |
download | haven-13d598e5e7f26bc6177ae3f7d52f4f19729ab2f3.tar.gz haven-13d598e5e7f26bc6177ae3f7d52f4f19729ab2f3.tar.xz haven-13d598e5e7f26bc6177ae3f7d52f4f19729ab2f3.zip |
more clean up. use log instead of fmt.Print to stderr. bug fix for event blocking (a hack fix for now).
Diffstat (limited to 'nexgb/auto_xvmc.go')
-rw-r--r-- | nexgb/auto_xvmc.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/nexgb/auto_xvmc.go b/nexgb/auto_xvmc.go index 61eab40..9c53a59 100644 --- a/nexgb/auto_xvmc.go +++ b/nexgb/auto_xvmc.go @@ -1,7 +1,7 @@ package xgb /* - This file was generated by xvmc.xml on May 6 2012 5:48:48pm EDT. + This file was generated by xvmc.xml on May 7 2012 9:17:58pm EDT. This file is automatically generated. Edit at your peril! */ @@ -16,7 +16,7 @@ func (c *Conn) XvmcInit() error { case err != nil: return err case !reply.Present: - return newError("No extension named XVideo-MotionCompensation could be found on on the server.") + return errorf("No extension named XVideo-MotionCompensation could be found on on the server.") } c.extLock.Lock() @@ -24,6 +24,9 @@ func (c *Conn) XvmcInit() error { for evNum, fun := range newExtEventFuncs["XVideo-MotionCompensation"] { newEventFuncs[int(reply.FirstEvent)+evNum] = fun } + for errNum, fun := range newExtErrorFuncs["XVideo-MotionCompensation"] { + newErrorFuncs[int(reply.FirstError)+errNum] = fun + } c.extLock.Unlock() return nil @@ -31,8 +34,11 @@ func (c *Conn) XvmcInit() error { func init() { newExtEventFuncs["XVideo-MotionCompensation"] = make(map[int]newEventFun) + newExtErrorFuncs["XVideo-MotionCompensation"] = make(map[int]newErrorFun) } +// Skipping definition for base type 'Int32' + // Skipping definition for base type 'Void' // Skipping definition for base type 'Byte' @@ -57,8 +63,6 @@ func init() { // Skipping definition for base type 'Int16' -// Skipping definition for base type 'Int32' - // Skipping resource definition of 'Context' // Skipping resource definition of 'Surface' |