diff options
| author | yum <yum.food.vr@gmail.com> | 2026-03-16 14:40:45 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2026-03-16 14:40:45 -0700 |
| commit | 921990168c22f5cccb77c5b608063d77adeaeab8 (patch) | |
| tree | dec31c279ae80c2b07afd68e2ccc7af136bc8fdf /interpolators.cginc | |
| parent | e641d53cc28ca8b77c237aef89f4968c8114b614 (diff) | |
Fix tessellation shadows, and potential lighting NaNs
Diffstat (limited to 'interpolators.cginc')
| -rwxr-xr-x | interpolators.cginc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpolators.cginc b/interpolators.cginc index 5f993db..76b79a5 100755 --- a/interpolators.cginc +++ b/interpolators.cginc @@ -23,7 +23,7 @@ struct v2f { #if defined(_TESSELLATION) float4 tpos : INTERNALTESSPOS; #endif - linear noperspective centroid float4 pos : SV_POSITION; + float4 pos : SV_POSITION; float4 uv01 : TEXCOORD0; float4 uv23 : TEXCOORD1; float3 objPos : TEXCOORD2; |
