aboutsummaryrefslogtreecommitdiff
path: root/nexgb/shm
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/shm')
-rw-r--r--nexgb/shm/shm.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/nexgb/shm/shm.go b/nexgb/shm/shm.go
index cad726a..36fd043 100644
--- a/nexgb/shm/shm.go
+++ b/nexgb/shm/shm.go
@@ -9,6 +9,11 @@ import (
"janouch.name/haven/nexgb/xproto"
)
+const (
+ MajorVersion = 1
+ MinorVersion = 2
+)
+
// Init must be called before using the MIT-SHM extension.
func Init(c *xgb.Conn) error {
reply, err := xproto.QueryExtension(c, 7, "MIT-SHM").Reply()