* For cases when there is no current * context, but the app still calls some * GL function that expects one. */
| 50 | * GL function that expects one. |
| 51 | */ |
| 52 | ThreadState() : dummy_context(new Context) |
| 53 | { |
| 54 | current_context = dummy_context; |
| 55 | } |
| 56 | }; |
| 57 | |
| 58 | static OS_THREAD_LOCAL ThreadState *thread_state; |
nothing calls this directly
no outgoing calls
no test coverage detected