Changeset 43285 in vbox
- Timestamp:
- Sep 11, 2012 9:35:18 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_wgl.c
r43266 r43285 1128 1128 /* Intel drivers require a window to be visible for proper 3D rendering, 1129 1129 * so set it visible and handle the visibility with visible regions (see below) */ 1130 ShowWindow( window->hWnd, SW_SHOWNORMAL ); 1130 if (window->id) 1131 { 1132 ShowWindow( window->hWnd, SW_SHOWNORMAL ); 1133 } 1134 else 1135 { 1136 CRASSERT(!showIt); 1137 /* dummy window is always hidden in any way */ 1138 } 1131 1139 1132 1140 //SetForegroundWindow( visual->hWnd ); … … 1267 1275 * various tables. This is hack which just hides the root case. 1268 1276 */ 1269 cr Warning("Recreating window in renderspu_SystemMakeCurrent\n");1277 crDebug("Recreating window in renderspu_SystemMakeCurrent\n"); 1270 1278 renderspu_SystemDestroyWindow( window ); 1271 1279 renderspu_SystemVBoxCreateWindow( context->visual, window->visible, window );
Note:
See TracChangeset
for help on using the changeset viewer.