summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2018-02-19 15:18:10 +0000
committerAdam Jackson <ajax@redhat.com>2018-02-21 11:07:15 -0500
commit089a1b0f9fa2e80457dc3d5f05c84565c9113a21 (patch)
treeed5fbbf4ea63d20df69c20eec2d6a82fd1a17831
parentedc00e020310d8f53ebc16295c373fe84ec6ec87 (diff)
glx: set the version we implement in GlxServerExports
Set the major/minor version it's currently implemented, not the one provided by the GLXSERVER_VENDOR_ABI_{MAJOR,MINOR}_VERSION macros. Those are identical for now, but can change in the future. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--glx/vndext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/glx/vndext.c b/glx/vndext.c
index aeefd7519..c8d753234 100644
--- a/glx/vndext.c
+++ b/glx/vndext.c
@@ -277,8 +277,8 @@ GlxFreeServerImports(GlxServerImports *imports)
}
_X_EXPORT const GlxServerExports glxServer = {
- .majorVersion = GLXSERVER_VENDOR_ABI_MAJOR_VERSION,
- .minorVersion = GLXSERVER_VENDOR_ABI_MINOR_VERSION,
+ .majorVersion = 0,
+ .minorVersion = 0,
.extensionInitCallback = &vndInitCallbackList,