diff options
| author | yum <yum.food.vr@gmail.com> | 2025-01-31 21:11:00 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-01-31 23:11:03 -0800 |
| commit | 4bd9c2ba494013f292ddc14d793bc2b362aff365 (patch) | |
| tree | 47467638c47c347395adbf31f54cf5b5663490b2 /globals.cginc | |
| parent | ccbf41389673b61cc1d7787413588330382f3264 (diff) | |
Add bayer matrices & grabpass-based lens shader
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc index 8f08a97..a1eca79 100644 --- a/globals.cginc +++ b/globals.cginc @@ -60,11 +60,15 @@ float _SpecularStrength; float _FresnelStrength; float _UseFresnel; float _ReflectionStrength; + +texture2D _Tooner_Grabpass; + #if defined(_REFLECTION_STRENGTH_TEX) texture2D _ReflectionStrengthTex; #endif float3 shadowedReflections; int _ReflShadows; + float _ReflShadowStrength; float _BrightnessReflShad; float _ContrastReflShad; @@ -1126,5 +1130,14 @@ texture2D _Rendering_Cutout_Noise_Mask; float4 _Rendering_Cutout_Noise_Mask_TexelSize; #endif +#if defined(_GIMMICK_LENS_00) +float _Gimmick_Lens_00_Enable_Frame_Counter; +float _Gimmick_Lens_00_Scale; +float _Gimmick_Lens_00_Subdivisions; +#if defined(_GIMMICK_LENS_00_FRAME_COUNTER) +float _Gimmick_Lens_00_Frame_Counter_Speed; +#endif +#endif + #endif |
