Searched defs:mod_gl (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddirectx.c5330 static HMODULE mod_gl; local
5341 if(!mod_gl) {
5343 # define USE_GL_FUNC(pfn) pfn = (void*)GetProcAddress(mod_gl, #pfn);
5347 mod_gl = loadSystemDll("VBoxOGL-x86.dll");
5349 mod_gl = loadSystemDll("VBoxOGL.dll");
5352 mod_gl = loadSystemDll("opengl32.dll");
5354 if(!mod_gl) {
5360 pDrvValidateVersion = (void*)GetProcAddress(mod_gl, "DrvValidateVersion");
5373 mod_gl = GetModuleHandleA("gdi32.dll");
5378 #define USE_WGL_FUNC(pfn) p##pfn = (void*)GetProcAddress(mod_gl, #pf
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddirectx.c5312 HMODULE mod_gl = GetModuleHandleA("opengl32.dll"); local
5316 HMODULE mod_gl = loadSystemDll("VBoxOGL-x86.dll"); local
5318 HMODULE mod_gl = loadSystemDll("VBoxOGL.dll"); local
5320 if (!mod_gl)
5326 pDrvValidateVersion = (void*)GetProcAddress(mod_gl, "DrvValidateVersion");
5329 FreeLibrary(mod_gl);
5334 FreeLibrary(mod_gl);
5338 # define VBOX_USE_FUNC(f) p##f = (void *)GetProcAddress(mod_gl, #f);
5342 # define USE_GL_FUNC(f) gl_info->gl_ops.gl.p_##f = (void *)GetProcAddress(mod_gl, #f);
5345 gl_info->gl_ops.wgl.p_wglSwapBuffers = (void *)GetProcAddress(mod_gl, "wglSwapBuffer
[all...]

Completed in 237 milliseconds