Blender V5.0
compositor_scale_variable_infos.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2024 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
6
7GPU_SHADER_CREATE_INFO(compositor_scale_variable_shared)
9SAMPLER(0, sampler2D, input_tx)
10SAMPLER(1, sampler2D, x_scale_tx)
11SAMPLER(2, sampler2D, y_scale_tx)
12IMAGE(0, SFLOAT_16_16_16_16, write, image2D, output_img)
13COMPUTE_SOURCE("compositor_scale_variable.glsl")
15
16GPU_SHADER_CREATE_INFO(compositor_scale_variable)
17ADDITIONAL_INFO(compositor_scale_variable_shared)
18DEFINE_VALUE("SAMPLER_FUNCTION", "texture")
21
22GPU_SHADER_CREATE_INFO(compositor_scale_variable_bicubic)
23ADDITIONAL_INFO(compositor_scale_variable_shared)
24DEFINE_VALUE("SAMPLER_FUNCTION", "texture_bicubic")
#define GPU_SHADER_CREATE_INFO(_info)
#define GPU_SHADER_CREATE_END()
#define SAMPLER(slot, type, name)
#define ADDITIONAL_INFO(info_name)
#define LOCAL_GROUP_SIZE(...)
#define IMAGE(slot, format, qualifiers, type, name)
#define COMPUTE_SOURCE(filename)
#define DO_STATIC_COMPILATION()
#define DEFINE_VALUE(name, value)
ImageBase< float, 2 > image2D
SamplerBase< float, 2 > sampler2D