Changeset 42528 in vbox for trunk/src/VBox/Additions/common/crOpenGL/pack/packspu_init.c
- Timestamp:
- Aug 2, 2012 11:32:51 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/pack/packspu_init.c
r42499 r42528 51 51 #endif 52 52 53 /* This connects to the server, sets up the packer, etc. */ 54 thread = packspuNewThread( 53 if (!CRPACKSPU_IS_WDDM_CRHGSMI()) 54 { 55 /* This connects to the server, sets up the packer, etc. */ 56 thread = packspuNewThread( 55 57 #if defined(VBOX_WITH_CRHGSMI) && defined(IN_GUEST) 56 58 NULL 57 59 #endif 58 );60 ); 59 61 60 if (!thread) { 61 return NULL; 62 if (!thread) { 63 return NULL; 64 } 65 CRASSERT( thread == &(pack_spu.thread[0]) ); 66 pack_spu.idxThreadInUse = 0; 62 67 } 63 CRASSERT( thread == &(pack_spu.thread[0]) );64 pack_spu.idxThreadInUse = 0;65 68 66 69 packspuCreateFunctions();
Note:
See TracChangeset
for help on using the changeset viewer.