Shader_Minifier icon indicating copy to clipboard operation
Shader_Minifier copied to clipboard

Remove unused reassignments

Open laurentlb opened this issue 6 months ago • 0 comments

void foo(float arg) {
  float x=arg;
  x*=x*x*x*x;
  return vec3(0);
}

We should detect that the value of x is unused.

laurentlb avatar Aug 22 '24 23:08 laurentlb