Revision | 45987c8271a6d8feab8576157ef9c9b0588440e0 (tree) |
---|---|
Time | 2017-10-11 01:41:34 |
Author | al2950 <anguslauriepile@gmai...> |
Commiter | al2950 |
[Metal] Fixed incorrect placement of ')'
@@ -29,7 +29,7 @@ | ||
29 | 29 | //passBuf.f3dGridHWW[slice].z = grid_width * lightsPerCell; |
30 | 30 | //uint sampleOffset = 0; |
31 | 31 | uint sampleOffset = offset + |
32 | - uint(floor( (windowHeight - (inPs.gl_FragCoord.y - passBuf.f3dViewportOffset.y) * passBuf.f3dGridHWW[slice].y )) * passBuf.f3dGridHWW[slice].z) + | |
32 | + uint(floor( (windowHeight - (inPs.gl_FragCoord.y - passBuf.f3dViewportOffset.y)) * passBuf.f3dGridHWW[slice].y ) * passBuf.f3dGridHWW[slice].z) + | |
33 | 33 | uint(floor( (inPs.gl_FragCoord.x - passBuf.f3dViewportOffset.x ) * passBuf.f3dGridHWW[slice].x ) * lightsPerCell); |
34 | 34 | @end @property( hlms_forwardplus != forward3d ) |
35 | 35 | float f3dMinDistance = passBuf.f3dData.x; |