Changeset 44389 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_context.c
- Timestamp:
- Jan 25, 2013 6:38:32 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_context.c
r44290 r44389 179 179 CRClientNode *pNode; 180 180 int found=false; 181 int spuContext; 181 182 182 183 crCtxInfo = (CRContextInfo *) crHashtableSearch(cr_server.contextTable, ctx); … … 198 199 crFree(crCtxInfo->CreateInfo.pszDpyName); 199 200 200 if (crCtxInfo->SpuContext >= 0) 201 cr_server.head_spu->dispatch_table.DestroyContext(crCtxInfo->SpuContext); 201 spuContext = crCtxInfo->SpuContext; 202 202 203 203 crFree(crCtxInfo); … … 266 266 cr_server.currentCtxInfo = &cr_server.MainContextInfo; 267 267 } 268 269 if (spuContext >= 0) 270 cr_server.head_spu->dispatch_table.DestroyContext(spuContext); 268 271 } 269 272
Note:
See TracChangeset
for help on using the changeset viewer.