Files
test2/intern/cycles/kernel/svm/brightness.h
Brecht Van Lommel 0e7a696819 Cleanup: Unused arguments in Cycles kernel
And add back the compiler flag that hid them.

Pull Request: https://projects.blender.org/blender/blender/pulls/139497
2025-05-27 21:30:45 +02:00

33 lines
942 B
C

/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
*
* SPDX-License-Identifier: Apache-2.0 */
#pragma once
#include "kernel/svm/color_util.h"
#include "kernel/svm/util.h"
CCL_NAMESPACE_BEGIN
ccl_device_noinline void svm_node_brightness(ccl_private float *stack,
const uint in_color,
const uint out_color,
const uint node)
{
uint bright_offset;
uint contrast_offset;
float3 color = stack_load_float3(stack, in_color);
svm_unpack_node_uchar2(node, &bright_offset, &contrast_offset);
const float brightness = stack_load_float(stack, bright_offset);
const float contrast = stack_load_float(stack, contrast_offset);
color = svm_brightness_contrast(color, brightness, contrast);
if (stack_valid(out_color)) {
stack_store_float3(stack, out_color, color);
}
}
CCL_NAMESPACE_END