Changeset 38244 in vbox for trunk/src/VBox/Additions/common/crOpenGL
- Timestamp:
- Jul 31, 2011 11:18:57 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73227
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/wgl.c
r37216 r38244 163 163 ContextInfo *context; 164 164 WindowInfo *window; 165 BOOL ret; 166 167 crHashtableLock(stub.windowTable); 168 crHashtableLock(stub.contextTable); 165 169 166 170 context = (ContextInfo *) crHashtableSearch(stub.contextTable, (unsigned long) hglrc); … … 172 176 } 173 177 174 return stubMakeCurrent( window, context ); 178 ret = stubMakeCurrent( window, context ); 179 180 crHashtableUnlock(stub.contextTable); 181 crHashtableUnlock(stub.windowTable); 182 183 return ret; 175 184 } 176 185
Note:
See TracChangeset
for help on using the changeset viewer.