GLX: Set GlxServerExports::{major,minor}Version
Commit 56c0a71fdd
incremented the
GLXSERVER_VENDOR_ABI_MINOR_VERSION define, but this define was not actually
being used to set glxServer.minorVersion.
Update the initializer for glxServer to use the correct version numbers.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
This commit is contained in:
parent
0a07446318
commit
b4231d6902
|
@ -304,8 +304,8 @@ GlxFreeServerImports(GlxServerImports *imports)
|
||||||
}
|
}
|
||||||
|
|
||||||
_X_EXPORT const GlxServerExports glxServer = {
|
_X_EXPORT const GlxServerExports glxServer = {
|
||||||
.majorVersion = 0,
|
.majorVersion = GLXSERVER_VENDOR_ABI_MAJOR_VERSION,
|
||||||
.minorVersion = 0,
|
.minorVersion = GLXSERVER_VENDOR_ABI_MINOR_VERSION,
|
||||||
|
|
||||||
.extensionInitCallback = &vndInitCallbackListPtr,
|
.extensionInitCallback = &vndInitCallbackListPtr,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue