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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-02-17 22:30:45 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-02-17 22:30:45 +0300
commit9153bf24cbf2402d57a24a1cd4e523e0c644bf08 (patch)
tree8331cafbab5b5e152493c58a31b537ab376f553b /intern/opencolorio
parentad2577e0cdc7be82005e777a388b415a788f0c44 (diff)
parent3cdbeb32d3779a0e6a89d2529c15f737cc32eae9 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'intern/opencolorio')
-rw-r--r--intern/opencolorio/ocio_impl.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/opencolorio/ocio_impl.cc b/intern/opencolorio/ocio_impl.cc
index 78b62d3c7cc..a02a37522b9 100644
--- a/intern/opencolorio/ocio_impl.cc
+++ b/intern/opencolorio/ocio_impl.cc
@@ -325,9 +325,9 @@ void OCIOImpl::configGetXYZtoRGB(OCIO_ConstConfigRcPtr *config_, float xyz_to_rg
if (to_scene_linear_matrix(config, "aces_interchange", aces_to_rgb)) {
/* This is the OpenColorIO builtin transform:
* UTILITY - ACES-AP0_to_CIE-XYZ-D65_BFD. */
- const float ACES_AP0_to_xyz_D65[3][3] = {{0.938280, 0.337369, 0.001174},
- {-0.004451, 0.729522, -0.003711},
- {0.016628, -0.066890, 1.091595}};
+ const float ACES_AP0_to_xyz_D65[3][3] = {{0.938280f, 0.337369f, 0.001174f},
+ {-0.004451f, 0.729522f, -0.003711f},
+ {0.016628f, -0.066890f, 1.091595f}};
float xyz_to_aces[3][3];
invert_m3_m3(xyz_to_aces, ACES_AP0_to_xyz_D65);