Merge remote-tracking branch 'origin/blender-v4.5-release'

This commit is contained in:
Sybren A. Stüvel
2025-07-03 12:07:00 +02:00

View File

@@ -239,7 +239,7 @@ void Resources::update_theme_settings(const DRWContext *ctx, const State &state)
using namespace math;
UniformData &gb = theme;
auto rgba_uchar_to_float = [](uchar r, uchar b, uchar g, uchar a) {
auto rgba_uchar_to_float = [](uchar r, uchar g, uchar b, uchar a) {
return float4(r, g, b, a) / 255.0f;
};