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