Changeset 62848 in vbox for trunk/src/VBox/Additions/common/crOpenGL/pack
- Timestamp:
- Aug 1, 2016 9:32:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109444
- Location:
- trunk/src/VBox/Additions/common/crOpenGL/pack
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/pack/packspu.h
r56008 r62848 162 162 extern void packspuHuge( CROpcode opcode, void *buf ); 163 163 164 extern void packspuInitStrings( );164 extern void packspuInitStrings(void); 165 165 166 extern GLboolean packspuSyncOnFlushes( );166 extern GLboolean packspuSyncOnFlushes(void); 167 167 168 168 extern ThreadInfo *packspuNewThread( -
trunk/src/VBox/Additions/common/crOpenGL/pack/packspu_misc.c
r52451 r62848 94 94 } 95 95 96 GLboolean packspuSyncOnFlushes() 97 { 96 GLboolean packspuSyncOnFlushes(void) 97 { 98 #if 1 /*Seems to still cause issues, always sync for now*/ 99 return 1; 100 #else 98 101 GLint buffer; 99 100 /*Seems to still cause issues, always sync for now*/101 return 1;102 102 103 103 crStateGetIntegerv(GL_DRAW_BUFFER, &buffer); … … 110 110 || buffer == GL_LEFT 111 111 || buffer == GL_RIGHT); 112 #endif 112 113 } 113 114 … … 848 849 { 849 850 } 851
Note:
See TracChangeset
for help on using the changeset viewer.