Changeset 22502 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Aug 27, 2009 10:05:18 AM (15 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r22284 r22502 85 85 { 86 86 uint64_t winId = *((uint64_t*)pv); 87 renderspuSetWindowId( (uint32_t)winId);87 renderspuSetWindowId(winId); 88 88 CRServerMain(0, NULL); 89 89 crIsThreadWorking = 0; … … 132 132 #else 133 133 g_pFrameBuffer->COMGETTER(WinId)(&g_winId); 134 renderspuSetWindowId( (uint32_t)g_winId);134 renderspuSetWindowId(g_winId); 135 135 rc = crVBoxServerAddClient(u32ClientID); 136 136 #endif … … 238 238 /*MS's opengl32 tryes to load our ICD around 30 times on failure...this is to prevent unnecessary spam*/ 239 239 static int shown = 0; 240 240 241 241 if (g_pVM && !shown) 242 242 { -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu.h
r18830 r22502 252 252 253 253 /* @todo remove this hack */ 254 extern u nsigned int render_spu_parent_window_id;254 extern uint64_t render_spu_parent_window_id; 255 255 256 256 #ifdef CHROMIUM_THREADSAFE … … 293 293 extern "C" { 294 294 #endif 295 DECLEXPORT(void) renderspuSetWindowId(u nsigned int winId);295 DECLEXPORT(void) renderspuSetWindowId(uint64_t winId); 296 296 DECLEXPORT(void) renderspuSetRootVisibleRegion(GLint cRects, GLint *pRects); 297 297 #ifdef __cplusplus -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_init.c
r20266 r22502 26 26 27 27 RenderSPU render_spu; 28 u nsigned int render_spu_parent_window_id;28 uint64_t render_spu_parent_window_id; 29 29 30 30 #ifdef CHROMIUM_THREADSAFE … … 435 435 } 436 436 437 DECLEXPORT(void) renderspuSetWindowId(u nsigned int winId)437 DECLEXPORT(void) renderspuSetWindowId(uint64_t winId) 438 438 { 439 439 render_spu_parent_window_id = winId;
Note:
See TracChangeset
for help on using the changeset viewer.