Changeset 46593 in vbox for trunk/src/VBox/Additions/WINNT/Graphics
- Timestamp:
- Jun 17, 2013 2:32:51 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86471
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3D.cpp
r44529 r46593 1800 1800 vboxVDbgVEHandlerRegister(); 1801 1801 #endif 1802 int rc = RTR3InitDll( 0);1802 int rc = RTR3InitDll(RTR3INIT_FLAGS_UNOBTRUSIVE); 1803 1803 AssertRC(rc); 1804 1804 if (RT_SUCCESS(rc)) -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3DIf.cpp
r44529 r46593 28 28 } 29 29 30 /** 31 * Loads a system DLL. 32 * 33 * @returns Module handle or NULL 34 * @param pszName The DLL name. 35 */ 36 static HMODULE loadSystemDll(const char *pszName) 37 { 38 char szPath[MAX_PATH]; 39 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 40 size_t cbName = strlen(pszName) + 1; 41 if (cchPath + 1 + cbName > sizeof(szPath)) 42 { 43 SetLastError(ERROR_FILENAME_EXCED_RANGE); 44 return NULL; 45 } 46 szPath[cchPath] = '\\'; 47 memcpy(&szPath[cchPath + 1], pszName, cbName); 48 return LoadLibraryA(szPath); 49 } 30 50 31 51 HRESULT VBoxDispD3DOpen(VBOXDISPD3D *pD3D) 32 52 { 33 53 #ifdef VBOX_WDDM_WOW64 34 pD3D->hD3DLib = LoadLibraryW(L"VBoxD3D9wddm-x86.dll");54 pD3D->hD3DLib = loadSystemDll("VBoxD3D9wddm-x86.dll"); 35 55 #else 36 pD3D->hD3DLib = LoadLibraryW(L"VBoxD3D9wddm.dll");56 pD3D->hD3DLib = loadSystemDll("VBoxD3D9wddm.dll"); 37 57 #endif 38 58 if (!pD3D->hD3DLib) 39 59 { 40 60 DWORD winErr = GetLastError(); 41 WARN((__FUNCTION__": LoadLibrary Wfailed, winErr = (%d)", winErr));61 WARN((__FUNCTION__": LoadLibrary failed, winErr = (%d)", winErr)); 42 62 return E_FAIL; 43 63 } -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispKmt.cpp
r46172 r46593 23 23 #endif 24 24 25 /** 26 * Loads a system DLL. 27 * 28 * @returns Module handle or NULL 29 * @param pszName The DLL name. 30 */ 31 static HMODULE loadSystemDll(const char *pszName) 32 { 33 char szPath[MAX_PATH]; 34 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 35 size_t cbName = strlen(pszName) + 1; 36 if (cchPath + 1 + cbName > sizeof(szPath)) 37 return NULL; 38 szPath[cchPath] = '\\'; 39 memcpy(&szPath[cchPath + 1], pszName, cbName); 40 return LoadLibraryA(szPath); 41 } 42 25 43 HRESULT vboxDispKmtCallbacksInit(PVBOXDISPKMT_CALLBACKS pCallbacks) 26 44 { … … 29 47 memset(pCallbacks, 0, sizeof (*pCallbacks)); 30 48 31 pCallbacks->hGdi32 = LoadLibraryW(L"gdi32.dll");49 pCallbacks->hGdi32 = loadSystemDll("gdi32.dll"); 32 50 if (pCallbacks->hGdi32 != NULL) 33 51 { -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxScreen.cpp
r44529 r46593 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBoxVideo Display D3D User mode dll … … 6 5 7 6 /* 8 * Copyright (C) 2011-201 2Oracle Corporation7 * Copyright (C) 2011-2013 Oracle Corporation 9 8 * 10 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 341 340 } 342 341 342 /** 343 * Loads a system DLL. 344 * 345 * @returns Module handle or NULL 346 * @param pszName The DLL name. 347 */ 348 static HMODULE loadSystemDll(const char *pszName) 349 { 350 char szPath[MAX_PATH]; 351 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 352 size_t cbName = strlen(pszName) + 1; 353 if (cchPath + 1 + cbName > sizeof(szPath)) 354 return NULL; 355 szPath[cchPath] = '\\'; 356 memcpy(&szPath[cchPath + 1], pszName, cbName); 357 return LoadLibraryA(szPath); 358 } 359 343 360 //HRESULT vboxScreenMonInit(PVBOXSCREENMON pMon) 344 361 HRESULT vboxScreenMonInit() … … 351 368 pMon->LoData.ScreenLayout.EscapeHdr.escapeCode = VBOXESC_SCREENLAYOUT; 352 369 353 pMon->hGdi32 = LoadLibraryW(L"gdi32.dll");370 pMon->hGdi32 = loadSystemDll("gdi32.dll"); 354 371 if (pMon->hGdi32 != NULL) 355 372 { -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/switcher/sw_common.c
r44529 r46593 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox D3D8/9 dll switcher … … 6 5 7 6 /* 8 * Copyright (C) 2009-201 2Oracle Corporation7 * Copyright (C) 2009-2013 Oracle Corporation 9 8 * 10 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 23 22 static char* gsBlackListDll[] = {"awt.dll", "wpfgfx_v0400.dll", "wpfgfx_v0300.dll", NULL}; 24 23 24 /** 25 * Loads a system DLL. 26 * 27 * @returns Module handle or NULL 28 * @param pszName The DLL name. 29 */ 30 static HMODULE loadSystemDll(const char *pszName) 31 { 32 char szPath[MAX_PATH]; 33 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 34 size_t cbName = strlen(pszName) + 1; 35 if (cchPath + 1 + cbName > sizeof(szPath)) 36 return NULL; 37 szPath[cchPath] = '\\'; 38 memcpy(&szPath[cchPath + 1], pszName, cbName); 39 return LoadLibraryA(szPath); 40 } 41 25 42 /* Checks if 3D is enabled for VM and it works on host machine */ 26 43 BOOL isVBox3DEnabled(void) … … 31 48 32 49 #ifdef VBOX_WDDM_WOW64 33 hDLL = LoadLibrary("VBoxOGL-x86.dll");50 hDLL = loadSystemDll("VBoxOGL-x86.dll"); 34 51 #else 35 hDLL = LoadLibrary("VBoxOGL.dll");52 hDLL = loadSystemDll("VBoxOGL.dll"); 36 53 #endif 37 54 … … 66 83 int i; 67 84 68 69 85 if (!GetModuleFileName(NULL, name, 1000)) 86 return TRUE; 70 87 71 88 /*Extract filename*/ … … 108 125 109 126 if (isVBox3DEnabled() && checkOptions()) 110 {111 127 dllName = vboxName; 112 } else 113 { 128 else 114 129 dllName = msName; 115 }116 130 117 hDLL = LoadLibrary(dllName);131 hDLL = loadSystemDll(dllName); 118 132 FillD3DExports(hDLL); 119 133 } 134 -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/directx.c
r42499 r46593 5308 5308 } 5309 5309 5310 /** 5311 * Loads a system DLL. 5312 * 5313 * @returns Module handle or NULL 5314 * @param pszName The DLL name. 5315 */ 5316 static HMODULE loadSystemDll(const char *pszName) 5317 { 5318 char szPath[MAX_PATH]; 5319 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 5320 size_t cbName = strlen(pszName) + 1; 5321 if (cchPath + 1 + cbName > sizeof(szPath)) 5322 return NULL; 5323 szPath[cchPath] = '\\'; 5324 memcpy(&szPath[cchPath + 1], pszName, cbName); 5325 return LoadLibraryA(szPath); 5326 } 5327 5310 5328 static BOOL InitAdapters(IWineD3DImpl *This) 5311 5329 { … … 5323 5341 if(!mod_gl) { 5324 5342 #ifdef USE_WIN32_OPENGL 5325 # define USE_GL_FUNC(pfn) pfn = (void*)GetProcAddress(mod_gl, #pfn);5326 # if defined(VBOX_WITH_WDDM) || defined(VBOX_WINE_WITH_SINGLE_SWAPCHAIN_CONTEXT)5343 # define USE_GL_FUNC(pfn) pfn = (void*)GetProcAddress(mod_gl, #pfn); 5344 # if defined(VBOX_WITH_WDDM) || defined(VBOX_WINE_WITH_SINGLE_SWAPCHAIN_CONTEXT) 5327 5345 BOOL (APIENTRY *pDrvValidateVersion)(DWORD) DECLSPEC_HIDDEN; 5328 # ifdef VBOX_WDDM_WOW645329 mod_gl = LoadLibraryA("VBoxOGL-x86.dll");5330 # else5331 mod_gl = LoadLibraryA("VBoxOGL.dll");5332 # endif5333 # else5334 mod_gl = LoadLibraryA("opengl32.dll");5335 # endif5346 # ifdef VBOX_WDDM_WOW64 5347 mod_gl = loadSystemDll("VBoxOGL-x86.dll"); 5348 # else 5349 mod_gl = loadSystemDll("VBoxOGL.dll"); 5350 # endif 5351 # else 5352 mod_gl = loadSystemDll("opengl32.dll"); 5353 # endif 5336 5354 if(!mod_gl) { 5337 5355 ERR("Can't load opengl32.dll!\n"); 5338 5356 goto nogl_adapter; 5339 5357 } 5340 # if defined(VBOX_WITH_WDDM) || defined(VBOX_WINE_WITH_SINGLE_SWAPCHAIN_CONTEXT)5358 # if defined(VBOX_WITH_WDDM) || defined(VBOX_WINE_WITH_SINGLE_SWAPCHAIN_CONTEXT) 5341 5359 /* init properly */ 5342 5360 pDrvValidateVersion = (void*)GetProcAddress(mod_gl, "DrvValidateVersion"); … … 5349 5367 goto nogl_adapter; 5350 5368 } 5351 # endif5369 # endif 5352 5370 #else 5353 # define USE_GL_FUNC(pfn) pfn = (void*)pwglGetProcAddress(#pfn);5371 # define USE_GL_FUNC(pfn) pfn = (void*)pwglGetProcAddress(#pfn); 5354 5372 /* To bypass the opengl32 thunks load wglGetProcAddress from gdi32 (glXGetProcAddress wrapper) instead of opengl32's */ 5355 5373 mod_gl = GetModuleHandleA("gdi32.dll"); -
trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/switcher/sw_common.c
r46521 r46593 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox D3D8/9 dll switcher … … 6 5 7 6 /* 8 * Copyright (C) 2009 Oracle Corporation7 * Copyright (C) 2009-2013 Oracle Corporation 9 8 * 10 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 23 22 static char* gsBlackListDll[] = {"awt.dll", "wpfgfx_v0400.dll", "wpfgfx_v0300.dll", NULL}; 24 23 24 /** 25 * Loads a system DLL. 26 * 27 * @returns Module handle or NULL 28 * @param pszName The DLL name. 29 */ 30 static HMODULE loadSystemDll(const char *pszName) 31 { 32 char szPath[MAX_PATH]; 33 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 34 size_t cbName = strlen(pszName) + 1; 35 if (cchPath + 1 + cbName > sizeof(szPath)) 36 return NULL; 37 szPath[cchPath] = '\\'; 38 memcpy(&szPath[cchPath + 1], pszName, cbName); 39 return LoadLibraryA(szPath); 40 } 41 25 42 /* Checks if 3D is enabled for VM and it works on host machine */ 26 43 BOOL isVBox3DEnabled(void) … … 31 48 32 49 #ifdef VBOX_WDDM_WOW64 33 hDLL = LoadLibrary("VBoxOGL-x86.dll");50 hDLL = loadSystemDll("VBoxOGL-x86.dll"); 34 51 #else 35 hDLL = LoadLibrary("VBoxOGL.dll");52 hDLL = loadSystemDll("VBoxOGL.dll"); 36 53 #endif 37 54 … … 108 125 109 126 if (isVBox3DEnabled() && checkOptions()) 110 {111 127 dllName = vboxName; 112 } else 113 { 128 else 114 129 dllName = msName; 115 }116 130 117 hDLL = LoadLibrary(dllName);131 hDLL = loadSystemDll(dllName); 118 132 FillD3DExports(hDLL); 119 133 } 134 -
trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/directx.c
r46521 r46593 5121 5121 } 5122 5122 5123 /** 5124 * Loads a system DLL. 5125 * 5126 * @returns Module handle or NULL 5127 * @param pszName The DLL name. 5128 */ 5129 static HMODULE loadSystemDll(const char *pszName) 5130 { 5131 char szPath[MAX_PATH]; 5132 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); 5133 size_t cbName = strlen(pszName) + 1; 5134 if (cchPath + 1 + cbName > sizeof(szPath)) 5135 return NULL; 5136 szPath[cchPath] = '\\'; 5137 memcpy(&szPath[cchPath + 1], pszName, cbName); 5138 return LoadLibraryA(szPath); 5139 } 5140 5123 5141 /* Do not call while under the GL lock. */ 5124 5142 static BOOL wined3d_adapter_init(struct wined3d_adapter *adapter, UINT ordinal) … … 5142 5160 #ifdef USE_WIN32_OPENGL 5143 5161 { 5144 # ifndef VBOX5162 # ifndef VBOX 5145 5163 HMODULE mod_gl = GetModuleHandleA("opengl32.dll"); 5146 # else5164 # else 5147 5165 BOOL (APIENTRY *pDrvValidateVersion)(DWORD) DECLSPEC_HIDDEN; 5148 # ifdef VBOX_WDDM_WOW645149 HMODULE mod_gl = LoadLibraryA("VBoxOGL-x86.dll");5150 # else5151 HMODULE mod_gl = LoadLibraryA("VBoxOGL.dll");5152 # endif5166 # ifdef VBOX_WDDM_WOW64 5167 HMODULE mod_gl = loadSystemDll("VBoxOGL-x86.dll"); 5168 # else 5169 HMODULE mod_gl = loadSystemDll("VBoxOGL.dll"); 5170 # endif 5153 5171 if (!mod_gl) 5154 5172 { … … 5169 5187 } 5170 5188 5171 # define VBOX_USE_FUNC(f) p##f = (void *)GetProcAddress(mod_gl, #f);5189 # define VBOX_USE_FUNC(f) p##f = (void *)GetProcAddress(mod_gl, #f); 5172 5190 VBOX_GL_FUNCS_GEN 5173 # undef VBOX_USE_FUNC5174 # endif5175 # define USE_GL_FUNC(f) gl_info->gl_ops.gl.p_##f = (void *)GetProcAddress(mod_gl, #f);5191 # undef VBOX_USE_FUNC 5192 # endif 5193 # define USE_GL_FUNC(f) gl_info->gl_ops.gl.p_##f = (void *)GetProcAddress(mod_gl, #f); 5176 5194 ALL_WGL_FUNCS 5177 # undef USE_GL_FUNC5195 # undef USE_GL_FUNC 5178 5196 gl_info->gl_ops.wgl.p_wglSwapBuffers = (void *)GetProcAddress(mod_gl, "wglSwapBuffers"); 5179 5197 }
Note:
See TracChangeset
for help on using the changeset viewer.