Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit b978371

Browse files
committed
Removed uses of UNITY_3D_TEXTURES_SUPPORTED in uber.shader
1 parent 1e4d5e8 commit b978371

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

PostProcessing/Shaders/Builtins/Uber.shader

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ Shader "Hidden/PostProcessing/Uber"
3939
half _ChromaticAberration_Amount;
4040

4141
// Color grading
42-
#if COLOR_GRADING_HDR_3D && UNITY_3D_TEXTURES_SUPPORTED
43-
42+
#if COLOR_GRADING_HDR_3D
4443
TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D);
4544
float2 _Lut3D_Params;
4645

@@ -203,7 +202,7 @@ Shader "Hidden/PostProcessing/Uber"
203202
}
204203
#endif
205204

206-
#if COLOR_GRADING_HDR_3D && UNITY_3D_TEXTURES_SUPPORTED
205+
#if COLOR_GRADING_HDR_3D
207206
{
208207
color *= _PostExposure;
209208
float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb));

0 commit comments

Comments
 (0)