| 77 | static ThreadWorkState* current_t_state; |
| 78 | |
| 79 | static __forceinline ThreadWorkState *threadState() |
| 80 | { |
| 81 | if (unlikely(!init_t_state)) |
| 82 | /* sets init_t_state, can't return pointer due to macosx icc bug*/ |
| 83 | SharedLazyTessellationCache::sharedLazyTessellationCache.getNextRenderThreadWorkState(); |
| 84 | return init_t_state; |
| 85 | } |
| 86 | |
| 87 | struct Tag |
| 88 | { |
no test coverage detected