Skip to content

Commit b37acf6

Browse files
committed
Fix function name
1 parent 5780898 commit b37acf6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Assets/ScriptableRenderPipeline/Core/Shadow/Resources/DebugDisplayShadowMap.shader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Shader "Hidden/ScriptableRenderPipeline/DebugDisplayShadowMap"
2727
{
2828
Varyings output;
2929
output.positionCS = GetFullScreenTriangleVertexPosition(input.vertexID);
30-
output.texcoord = GetFullScreenTriangleTexcoord(input.vertexID) * _TextureScaleBias.xy + _TextureScaleBias.zw;
30+
output.texcoord = GetFullScreenTriangleTexCoord(input.vertexID) * _TextureScaleBias.xy + _TextureScaleBias.zw;
3131

3232
return output;
3333
}

0 commit comments

Comments
 (0)