diff options
| author | yum <yum.food.vr@gmail.com> | 2024-08-28 14:29:23 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-08-28 14:29:23 -0700 |
| commit | 699da7b756aec0d361c4a6d84fa41e8183ef1d12 (patch) | |
| tree | 39cdae51faea62904ac0a330074a3deb66484af0 /globals.cginc | |
| parent | 6eaf7c8ec43d4d6ce5d2c67e9ef032f182fbfa25 (diff) | |
Add second HSV slot
Helps with animation.
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/globals.cginc b/globals.cginc index 9702a65..c09bf04 100644 --- a/globals.cginc +++ b/globals.cginc @@ -477,13 +477,22 @@ float _OKLAB_Chroma_Shift; float _OKLAB_Hue_Shift; #endif -#if defined(_HSV) -float _HSV_Enabled; -texture2D _HSV_Mask; -float _HSV_Mask_Invert; -float _HSV_Hue_Shift; -float _HSV_Sat_Shift; -float _HSV_Val_Shift; +#if defined(_HSV0) +float _HSV0_Enabled; +texture2D _HSV0_Mask; +float _HSV0_Mask_Invert; +float _HSV0_Hue_Shift; +float _HSV0_Sat_Shift; +float _HSV0_Val_Shift; +#endif + +#if defined(_HSV1) +float _HSV1_Enabled; +texture2D _HSV1_Mask; +float _HSV1_Mask_Invert; +float _HSV1_Hue_Shift; +float _HSV1_Sat_Shift; +float _HSV1_Val_Shift; #endif #if defined(_CLONES) |
