From fd30f1512a713ae5b3cbacddfe9f29dfccc82047 Mon Sep 17 00:00:00 2001 From: "Andrew Gallant (Ocelot)" Date: Mon, 7 May 2012 01:00:45 -0400 Subject: added tests --- nexgb/auto_dri2.go | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'nexgb/auto_dri2.go') diff --git a/nexgb/auto_dri2.go b/nexgb/auto_dri2.go index 7797623..0712891 100644 --- a/nexgb/auto_dri2.go +++ b/nexgb/auto_dri2.go @@ -1,7 +1,7 @@ package xgb /* - This file was generated by dri2.xml on May 6 2012 3:00:44am EDT. + This file was generated by dri2.xml on May 6 2012 5:48:47pm EDT. This file is automatically generated. Edit at your peril! */ @@ -9,6 +9,30 @@ package xgb // in one package. They are still listed here for reference. // import "xproto" +// Dri2Init must be called before using the DRI2 extension. +func (c *Conn) Dri2Init() error { + reply, err := c.QueryExtension(4, "DRI2").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named DRI2 could be found on on the server.") + } + + c.extLock.Lock() + c.extensions["DRI2"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["DRI2"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() + + return nil +} + +func init() { + newExtEventFuncs["DRI2"] = make(map[int]newEventFun) +} + // Skipping definition for base type 'Float' // Skipping definition for base type 'Id' @@ -306,7 +330,7 @@ func (v Dri2BufferSwapCompleteEvent) String() string { } func init() { - newEventFuncs[0] = NewDri2BufferSwapCompleteEvent + newExtEventFuncs["DRI2"][0] = NewDri2BufferSwapCompleteEvent } // Event definition Dri2InvalidateBuffers (1) @@ -369,7 +393,7 @@ func (v Dri2InvalidateBuffersEvent) String() string { } func init() { - newEventFuncs[1] = NewDri2InvalidateBuffersEvent + newExtEventFuncs["DRI2"][1] = NewDri2InvalidateBuffersEvent } // Request Dri2QueryVersion -- cgit v1.2.3