summaryrefslogtreecommitdiffstats
path: root/pbr.cginc
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2026-02-23 16:56:44 -0800
committeryum <yum.food.vr@gmail.com>2026-02-23 16:56:44 -0800
commita4d1ade709ee0f16383698809004763bdc798002 (patch)
treee001347dfc7466ba4427d205477b6a4aeff9d520 /pbr.cginc
parentf57d761e414774081740b489b748cbfe60c11c1f (diff)
Drop cloth for now
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;