Remove a few debugging prints
This commit is contained in:
parent
ea99b90a77
commit
84267915f5
2 changed files with 0 additions and 4 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -143,8 +143,6 @@ void ARVRServer::add_interface(const Ref<ARVRInterface> &p_interface) {
|
|||
};
|
||||
};
|
||||
|
||||
print_line("ARVR: Registered interface: " + p_interface->get_name());
|
||||
|
||||
interfaces.push_back(p_interface);
|
||||
emit_signal("interface_added", p_interface->get_name());
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue