mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
typofix
This commit is contained in:
parent
06e82ddc81
commit
ff3188daee
|
|
@ -53,7 +53,7 @@ void main()
|
|||
vec3 f = textureLod(inputTex, vec2(IN_uv0.x + 2 * x, IN_uv0.y), mipIDf).rgb;
|
||||
|
||||
vec3 g = textureLod(inputTex, vec2(IN_uv0.x - 2 * x, IN_uv0.y - 2 * y), mipIDf).rgb;
|
||||
vec3 h = textureLod(inputTex, vec2(IN_uv0.x, IN_uv0.y - 2 * y, mipIDf)).rgb;
|
||||
vec3 h = textureLod(inputTex, vec2(IN_uv0.x, IN_uv0.y - 2 * y), mipIDf).rgb;
|
||||
vec3 i = textureLod(inputTex, vec2(IN_uv0.x + 2 * x, IN_uv0.y - 2 * y), mipIDf).rgb;
|
||||
|
||||
vec3 j = textureLod(inputTex, vec2(IN_uv0.x - x, IN_uv0.y + y), mipIDf).rgb;
|
||||
|
|
|
|||
Loading…
Reference in a new issue