summaryrefslogtreecommitdiffstats
path: root/pbr.cginc
diff options
context:
space:
mode:
Diffstat (limited to 'pbr.cginc')
-rwxr-xr-xpbr.cginc8
1 files changed, 0 insertions, 8 deletions
diff --git a/pbr.cginc b/pbr.cginc
index c8e58c8..d7d51b9 100755
--- a/pbr.cginc
+++ b/pbr.cginc
@@ -20,10 +20,6 @@ struct Pbr {
float cc_roughness;
float cc_strength;
#endif
-#if defined(_CLOTH_SHEEN)
- float cl_strength;
- float3 cl_color;
-#endif
#if defined(_IMPOSTORS_DEPTH)
float3 objPos;
float debug; // TODO rm
@@ -199,10 +195,6 @@ Pbr getPbr(v2f i) {
pbr.cc_roughness = _Clearcoat_Roughness;
pbr.cc_strength = _Clearcoat_Strength;
#endif
-#if defined(_CLOTH_SHEEN)
- pbr.cl_strength = _Cloth_Sheen_Strength;
- pbr.cl_color = _Cloth_Sheen_Color;
-#endif
propagateSmoothness(pbr);
return pbr;