Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/draw/engines/workbench/shaders/workbench_effect_cavity_info.hh')
-rw-r--r--source/blender/draw/engines/workbench/shaders/workbench_effect_cavity_info.hh28
1 files changed, 0 insertions, 28 deletions
diff --git a/source/blender/draw/engines/workbench/shaders/workbench_effect_cavity_info.hh b/source/blender/draw/engines/workbench/shaders/workbench_effect_cavity_info.hh
deleted file mode 100644
index 31e5f5e7641..00000000000
--- a/source/blender/draw/engines/workbench/shaders/workbench_effect_cavity_info.hh
+++ /dev/null
@@ -1,28 +0,0 @@
-
-#include "gpu_shader_create_info.hh"
-
-GPU_SHADER_CREATE_INFO(workbench_effect_cavity_common)
- .fragment_out(0, Type::VEC4, "fragColor")
- .sampler(0, ImageType::FLOAT_2D, "depthBuffer")
- .sampler(1, ImageType::FLOAT_2D, "normalBuffer")
- .sampler(2, ImageType::UINT_2D, "objectIdBuffer")
- .uniform_buf(3, "vec4", "samples_coords[512]")
- .fragment_source("workbench_effect_cavity_frag.glsl")
- .additional_info("draw_fullscreen")
- .additional_info("draw_view");
-
-GPU_SHADER_CREATE_INFO(workbench_effect_cavity)
- .do_static_compilation(true)
- .define("USE_CAVITY")
- .additional_info("workbench_effect_cavity_common");
-
-GPU_SHADER_CREATE_INFO(workbench_effect_curvature)
- .do_static_compilation(true)
- .define("USE_CURVATURE")
- .additional_info("workbench_effect_cavity_common");
-
-GPU_SHADER_CREATE_INFO(workbench_effect_cavity_curvature)
- .do_static_compilation(true)
- .define("USE_CAVITY")
- .define("USE_CURVATURE")
- .additional_info("workbench_effect_cavity_common");