diff options
| author | Rémi Verschelde | 2018-02-14 11:32:10 +0100 |
|---|---|---|
| committer | GitHub | 2018-02-14 11:32:10 +0100 |
| commit | dea5a69693eeee956e8b72ee50e166a70f4dc498 (patch) | |
| tree | b01452564be455ae51d45c11b6e2da49567bf473 /drivers | |
| parent | 8812cb4bfc90e9b18b2e81cb604916c2e57ba424 (diff) | |
| parent | 84267915f50559ebc555c88fa90713596a74e918 (diff) | |
| download | godot-dea5a69693eeee956e8b72ee50e166a70f4dc498.tar.gz godot-dea5a69693eeee956e8b72ee50e166a70f4dc498.tar.zst godot-dea5a69693eeee956e8b72ee50e166a70f4dc498.zip | |
Merge pull request #16408 from Calinou/remove-debugging-prints
Remove a few debugging prints
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/gles3/rasterizer_scene_gles3.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gles3/rasterizer_scene_gles3.cpp b/drivers/gles3/rasterizer_scene_gles3.cpp index da6df7198..d1892eb1e 100644 --- a/drivers/gles3/rasterizer_scene_gles3.cpp +++ b/drivers/gles3/rasterizer_scene_gles3.cpp @@ -4916,7 +4916,6 @@ void RasterizerSceneGLES3::initialize() { const int ubo_light_size = 160; state.ubo_light_size = ubo_light_size; state.max_ubo_lights = MIN(RenderList::MAX_LIGHTS, max_ubo_size / ubo_light_size); - print_line("GLES3: max ubo light: " + itos(state.max_ubo_lights)); state.spot_array_tmp = (uint8_t *)memalloc(ubo_light_size * state.max_ubo_lights); state.omni_array_tmp = (uint8_t *)memalloc(ubo_light_size * state.max_ubo_lights); @@ -4942,7 +4941,6 @@ void RasterizerSceneGLES3::initialize() { state.scene_shader.add_custom_define("#define MAX_FORWARD_LIGHTS " + itos(state.max_forward_lights_per_object) + "\n"); state.max_ubo_reflections = MIN(RenderList::MAX_REFLECTIONS, max_ubo_size / sizeof(ReflectionProbeDataUBO)); - print_line("GLES3: max ubo reflections: " + itos(state.max_ubo_reflections) + ", ubo size: " + itos(sizeof(ReflectionProbeDataUBO))); state.reflection_array_tmp = (uint8_t *)memalloc(sizeof(ReflectionProbeDataUBO) * state.max_ubo_reflections); |
