Changeset 70789 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/render
- Timestamp:
- Jan 29, 2018 12:31:22 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120566
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_wgl.c
r69390 r70789 1224 1224 1225 1225 /* set the window pointer data at the last step to ensure our WM_PAINT callback does not do anything until we are fully initialized */ 1226 #ifdef RT_STRICT 1227 SetLastError(NO_ERROR); 1228 #endif 1226 1229 { 1227 1230 LONG_PTR oldVal = SetWindowLongPtr(window->hWnd, GWLP_USERDATA, (LONG_PTR)window); 1228 DWORD winEr = GetLastError(); 1229 Assert(!oldVal && winEr == NO_ERROR); 1231 Assert(!oldVal && GetLastError() == NO_ERROR); RT_NOREF_PV(oldVal); 1230 1232 } 1231 1233
Note:
See TracChangeset
for help on using the changeset viewer.