diff options
Diffstat (limited to 'nexgb/shape')
| -rw-r--r-- | nexgb/shape/shape.go | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/nexgb/shape/shape.go b/nexgb/shape/shape.go index 3a4af24..90eba07 100644 --- a/nexgb/shape/shape.go +++ b/nexgb/shape/shape.go @@ -9,6 +9,11 @@ import (  	"janouch.name/haven/nexgb/xproto"  ) +const ( +	MajorVersion = 1 +	MinorVersion = 1 +) +  // Init must be called before using the SHAPE extension.  func Init(c *xgb.Conn) error {  	reply, err := xproto.QueryExtension(c, 5, "SHAPE").Reply() | 
