| 38 | extern bool g_debug_runtime_disable_dynamic_light_object_draw; |
| 39 | |
| 40 | float RadiusFromScale(vec3 scale) { |
| 41 | return std::min(fabs(scale.x()), std::min(fabs(scale.y()), fabs(scale.z()))); |
| 42 | } |
| 43 | |
| 44 | void DynamicLightObject::Draw() { |
| 45 | if (g_debug_runtime_disable_dynamic_light_object_draw) { |
no test coverage detected