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

compositor_tone_map_simple_info.hh « infos « compositor « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b220af946057a29a40b8218b8413ef02233887c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include "gpu_shader_create_info.hh"

GPU_SHADER_CREATE_INFO(compositor_tone_map_simple)
    .local_group_size(16, 16)
    .push_constant(Type::FLOAT, "luminance_scale")
    .push_constant(Type::FLOAT, "luminance_scale_blend_factor")
    .push_constant(Type::FLOAT, "inverse_gamma")
    .sampler(0, ImageType::FLOAT_2D, "input_tx")
    .image(0, GPU_RGBA16F, Qualifier::WRITE, ImageType::FLOAT_2D, "output_img")
    .compute_source("compositor_tone_map_simple.glsl")
    .do_static_compilation(true);