Changeset 76270 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-glLdr.cpp
- Timestamp:
- Dec 17, 2018 6:20:07 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127547
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-glLdr.cpp
r76269 r76270 188 188 pfn_wglShareLists = 0; 189 189 #elif defined(RT_OS_LINUX) 190 pfn_glXQueryVersion = 0;191 pfn_glXChooseVisual = 0;192 pfn_glXCreateContext = 0;193 pfn_glXMakeCurrent = 0;194 pfn_glXDestroyContext = 0;195 190 pfn_XConfigureWindow = 0; 196 191 pfn_XCloseDisplay = 0; … … 199 194 pfn_XDefaultRootWindow = 0; 200 195 pfn_XDestroyWindow = 0; 196 pfn_XInitThreads = 0; 201 197 pfn_XNextEvent = 0; 202 198 pfn_XOpenDisplay = 0; 203 199 pfn_XPending = 0; 200 pfn_glXQueryVersion = 0; 201 pfn_glXChooseVisual = 0; 202 pfn_glXCreateContext = 0; 203 pfn_glXMakeCurrent = 0; 204 pfn_glXDestroyContext = 0; 204 205 #endif 205 206 pfn_glAlphaFunc = 0; … … 283 284 X11GETPROC_(XDefaultRootWindow); 284 285 X11GETPROC_(XDestroyWindow); 286 X11GETPROC_(XInitThreads); 285 287 X11GETPROC_(XNextEvent); 286 288 X11GETPROC_(XOpenDisplay); … … 355 357 GLGETPROC_(glVertexPointer, ""); 356 358 GLGETPROC_(glViewport, ""); 359 360 #ifdef RT_OS_LINUX 361 XInitThreads(); 362 #endif 357 363 return VINF_SUCCESS; 358 364 }
Note:
See TracChangeset
for help on using the changeset viewer.