mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-07 17:12:09 +00:00
GLX: Set GlxServerExports::{major,minor}Version
Commit56c0a71fddincremented 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> (cherry picked from commitb4231d6902)
This commit is contained in:
@@ -304,8 +304,8 @@ GlxFreeServerImports(GlxServerImports *imports)
|
||||
}
|
||||
|
||||
_X_EXPORT const GlxServerExports glxServer = {
|
||||
.majorVersion = 0,
|
||||
.minorVersion = 0,
|
||||
.majorVersion = GLXSERVER_VENDOR_ABI_MAJOR_VERSION,
|
||||
.minorVersion = GLXSERVER_VENDOR_ABI_MINOR_VERSION,
|
||||
|
||||
.extensionInitCallback = &vndInitCallbackListPtr,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user