Changeset 38112 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/query.c
- Timestamp:
- Jul 22, 2011 1:26:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/query.c
r33656 r38112 64 64 if (!query->context->gl_info->supported[ARB_SYNC] && query->context->tid != GetCurrentThreadId()) 65 65 { 66 #ifdef VBOX_WINE_WITH_SINGLE_CONTEXT 67 ERR("Event query tested from wrong thread\n"); 68 #else 66 69 WARN("Event query tested from wrong thread\n"); 70 #endif 67 71 return WINED3D_EVENT_QUERY_WRONG_THREAD; 68 72 } … … 141 145 * to find its own way to cope with the thread switch 142 146 */ 147 #ifdef VBOX_WINE_WITH_SINGLE_CONTEXT 148 ERR("Event query finished from wrong thread\n"); 149 #else 143 150 WARN("Event query finished from wrong thread\n"); 151 #endif 144 152 return WINED3D_EVENT_QUERY_WRONG_THREAD; 145 153 } … … 198 206 if (!query->context->gl_info->supported[ARB_SYNC] && query->context->tid != GetCurrentThreadId()) 199 207 { 208 #ifdef VBOX_WINE_WITH_SINGLE_CONTEXT 209 ERR("unexpected\n"); 210 #endif 200 211 context_free_event_query(query); 201 212 context = context_acquire(device, NULL, CTXUSAGE_RESOURCELOAD);
Note:
See TracChangeset
for help on using the changeset viewer.