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/gpu/shaders/compositor/infos/compositor_blur_variable_size_info.hh')
-rw-r--r--source/blender/gpu/shaders/compositor/infos/compositor_blur_variable_size_info.hh15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/blender/gpu/shaders/compositor/infos/compositor_blur_variable_size_info.hh b/source/blender/gpu/shaders/compositor/infos/compositor_blur_variable_size_info.hh
deleted file mode 100644
index 05b6385fd1e..00000000000
--- a/source/blender/gpu/shaders/compositor/infos/compositor_blur_variable_size_info.hh
+++ /dev/null
@@ -1,15 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include "gpu_shader_create_info.hh"
-
-GPU_SHADER_CREATE_INFO(compositor_blur_variable_size)
- .local_group_size(16, 16)
- .push_constant(Type::FLOAT, "base_size")
- .push_constant(Type::INT, "search_radius")
- .sampler(0, ImageType::FLOAT_2D, "input_tx")
- .sampler(1, ImageType::FLOAT_2D, "weights_tx")
- .sampler(2, ImageType::FLOAT_2D, "size_tx")
- .sampler(3, ImageType::FLOAT_2D, "mask_tx")
- .image(0, GPU_RGBA16F, Qualifier::WRITE, ImageType::FLOAT_2D, "output_img")
- .compute_source("compositor_blur_variable_size.glsl")
- .do_static_compilation(true);