Skip to content

Commit

Permalink
Merge pull request #64811 from winterpixelgames/fix/safari-particles-fix
Browse files Browse the repository at this point in the history
workaround for angle project issue 7245, safari, iOS
  • Loading branch information
akien-mga authored Aug 24, 2022
2 parents 04a857f + 1ed1a30 commit b76416a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gles3/shaders/particles.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ VERTEX_SHADER_CODE

xform = transpose(xform);

out_velocity_active.a = mix(0.0, 1.0, shader_active);
out_velocity_active.a = float(shader_active);

out_xform_1 = xform[0];
out_xform_2 = xform[1];
Expand Down

0 comments on commit b76416a

Please sign in to comment.