| 289 | } |
| 290 | |
| 291 | void gspWaitForEvent(GSPGPU_Event id, bool nextEvent) |
| 292 | { |
| 293 | if(id>= GSPGPU_EVENT_MAX)return; |
| 294 | |
| 295 | if (nextEvent) |
| 296 | LightEvent_Clear(&gspEvents[id]); |
| 297 | LightEvent_Wait(&gspEvents[id]); |
| 298 | if (!nextEvent) |
| 299 | LightEvent_Clear(&gspEvents[id]); |
| 300 | } |
| 301 | |
| 302 | GSPGPU_Event gspWaitForAnyEvent(void) |
| 303 | { |
nothing calls this directly
no test coverage detected