| 769 | } |
| 770 | |
| 771 | void DebugDraw::UpdateContext(void* context, float deltaTime) |
| 772 | { |
| 773 | if (!context) |
| 774 | context = &GlobalContext; |
| 775 | ((DebugDrawContext*)context)->DebugDrawDefault.Update(deltaTime); |
| 776 | ((DebugDrawContext*)context)->DebugDrawDepthTest.Update(deltaTime); |
| 777 | } |
| 778 | |
| 779 | void DebugDraw::SetContext(void* context) |
| 780 | { |
no test coverage detected