Blender V4.3
compositor_jump_flooding_info.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
6
7GPU_SHADER_CREATE_INFO(compositor_jump_flooding)
8 .local_group_size(16, 16)
9 .push_constant(Type::INT, "step_size")
10 .sampler(0, ImageType::INT_2D, "input_tx")
11 .image(0, GPU_RG16I, Qualifier::WRITE, ImageType::INT_2D, "output_img")
12 .compute_source("compositor_jump_flooding.glsl")
13 .do_static_compilation(true);
@ GPU_RG16I
#define GPU_SHADER_CREATE_INFO(_info)