Merge pull request #83756 from dsnopek/gpu-particles-quest

Fix `GPUParticles3D` on the Meta Quest 2 with OpenGL renderer
This commit is contained in:
Rémi Verschelde 2023-10-22 12:13:04 +02:00
commit d7d3ae6d85
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -818,6 +818,7 @@ void ParticlesStorage::particles_set_view_axis(RID p_particles, const Vector3 &p
}
glEnable(GL_RASTERIZER_DISCARD);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
_particles_update_instance_buffer(particles, axis, p_up_axis);
glDisable(GL_RASTERIZER_DISCARD);
}
@ -1001,6 +1002,7 @@ void ParticlesStorage::_particles_update_instance_buffer(Particles *particles, c
void ParticlesStorage::update_particles() {
glEnable(GL_RASTERIZER_DISCARD);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
GLuint global_buffer = GLES3::MaterialStorage::get_singleton()->global_shader_parameters_get_uniform_buffer();