Skip to content

Commit

Permalink
SPIR-V validation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Glatzel committed Jun 5, 2017
1 parent 83d8ff6 commit c6bdf33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/shaders/lighting.frag.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ void main()

for (uint li=0; li<lightCount; ++li)
{
calcPointLightLighting(lights[lightIndices[clusterIdx + li + 1]],
Light light = lights[lightIndices[clusterIdx + li + 1]];
calcPointLightLighting(light,
d, matParams, outColor);
}
}
}

0 comments on commit c6bdf33

Please sign in to comment.