diff options
| author | yum <yum.food.vr@gmail.com> | 2024-11-03 15:25:08 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-11-03 15:25:54 -0800 |
| commit | b7d3cb5d759feab1e44f4cdb01a0c8922bf4f1cb (patch) | |
| tree | cc10c40ac2e632dd07a0ac0fe515048b354af7f9 /globals.cginc | |
| parent | cb55e813456480a036673d1d32608e10b10c8f87 (diff) | |
Misc
* Add third HSV slot
* Add ZTest enum
* Fix bug where SSR mask keyword can be set when SSR is disabled
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc index 76f6fa0..4b032c9 100644 --- a/globals.cginc +++ b/globals.cginc @@ -564,6 +564,15 @@ float _HSV1_Sat_Shift; float _HSV1_Val_Shift; #endif +#if defined(_HSV2) +float _HSV2_Enabled; +texture2D _HSV2_Mask; +float _HSV2_Mask_Invert; +float _HSV2_Hue_Shift; +float _HSV2_Sat_Shift; +float _HSV2_Val_Shift; +#endif + #if defined(_CLONES) float _Clones_Enabled; float _Clones_Count; |
