aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xf86vidmode
diff options
context:
space:
mode:
authorPřemysl Janouch <p@janouch.name>2018-09-21 08:37:21 +0200
committerPřemysl Janouch <p@janouch.name>2018-09-30 17:34:25 +0200
commit28a511253284a7be082d6c41e40aa2172b675263 (patch)
tree97d1a231febd3723df23cc704202fcaab8760ec1 /nexgb/xf86vidmode
parent1a53c005e95c6db33160da9cddae2bde88c8d1ca (diff)
downloadhaven-28a511253284a7be082d6c41e40aa2172b675263.tar.gz
haven-28a511253284a7be082d6c41e40aa2172b675263.tar.xz
haven-28a511253284a7be082d6c41e40aa2172b675263.zip
nexgb: export {Major,Minor}Version for extensions
Diffstat (limited to 'nexgb/xf86vidmode')
-rw-r--r--nexgb/xf86vidmode/xf86vidmode.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/nexgb/xf86vidmode/xf86vidmode.go b/nexgb/xf86vidmode/xf86vidmode.go
index fd9d70f..7529c5a 100644
--- a/nexgb/xf86vidmode/xf86vidmode.go
+++ b/nexgb/xf86vidmode/xf86vidmode.go
@@ -9,6 +9,11 @@ import (
"janouch.name/haven/nexgb/xproto"
)
+const (
+ MajorVersion = 2
+ MinorVersion = 2
+)
+
// Init must be called before using the XFree86-VidModeExtension extension.
func Init(c *xgb.Conn) error {
reply, err := xproto.QueryExtension(c, 24, "XFree86-VidModeExtension").Reply()