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-05-20 18:54:43 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-05-23 16:34:50 +0300
commiteb5e7d0a31eed698909c23ab0ca89c8fd4929365 (patch)
tree6332d3f66107492795254d4fbc0f8f3beccfb156 /source/blender/python
parent469ee7ff1529a1b28ce0b300835ebc42d5c5362f (diff)
Cleanup: clarify what is scene linear color space in conversion conversion
* Rename ambiguous rgb to scene_linear in some places * Precompute matrices to directly go to scene instead of through XYZ * Make function signatures more consistent
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/mathutils/mathutils_Color.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/python/mathutils/mathutils_Color.c b/source/blender/python/mathutils/mathutils_Color.c
index 1495a465432..0fcde229907 100644
--- a/source/blender/python/mathutils/mathutils_Color.c
+++ b/source/blender/python/mathutils/mathutils_Color.c
@@ -87,8 +87,8 @@ PyDoc_STRVAR(Color_from_scene_linear_to_srgb_doc,
" :rtype: :class:`Color`\n");
static PyObject *Color_from_scene_linear_to_srgb(ColorObject *self)
{
- float col[3] = {self->col[0], self->col[1], self->col[2]};
- IMB_colormanagement_scene_linear_to_srgb_v3(col);
+ float col[3];
+ IMB_colormanagement_scene_linear_to_srgb_v3(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -101,8 +101,8 @@ PyDoc_STRVAR(Color_from_srgb_to_scene_linear_doc,
" :rtype: :class:`Color`\n");
static PyObject *Color_from_srgb_to_scene_linear(ColorObject *self)
{
- float col[3] = {self->col[0], self->col[1], self->col[2]};
- IMB_colormanagement_srgb_to_scene_linear_v3(col);
+ float col[3];
+ IMB_colormanagement_srgb_to_scene_linear_v3(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -116,7 +116,7 @@ PyDoc_STRVAR(Color_from_scene_linear_to_xyz_d65_doc,
static PyObject *Color_from_scene_linear_to_xyz_d65(ColorObject *self)
{
float col[3];
- IMB_colormanagement_rgb_to_xyz(col, self->col);
+ IMB_colormanagement_scene_linear_to_xyz(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -130,7 +130,7 @@ PyDoc_STRVAR(Color_from_xyz_d65_to_scene_linear_doc,
static PyObject *Color_from_xyz_d65_to_scene_linear(ColorObject *self)
{
float col[3];
- IMB_colormanagement_xyz_to_rgb(col, self->col);
+ IMB_colormanagement_xyz_to_scene_linear(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -144,7 +144,7 @@ PyDoc_STRVAR(Color_from_scene_linear_to_aces_doc,
static PyObject *Color_from_scene_linear_to_aces(ColorObject *self)
{
float col[3];
- IMB_colormanagement_rgb_to_aces(col, self->col);
+ IMB_colormanagement_scene_linear_to_aces(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -158,7 +158,7 @@ PyDoc_STRVAR(Color_from_aces_to_scene_linear_doc,
static PyObject *Color_from_aces_to_scene_linear(ColorObject *self)
{
float col[3];
- IMB_colormanagement_aces_to_rgb(col, self->col);
+ IMB_colormanagement_aces_to_scene_linear(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -172,7 +172,7 @@ PyDoc_STRVAR(Color_from_scene_linear_to_rec709_linear_doc,
static PyObject *Color_from_scene_linear_to_rec709_linear(ColorObject *self)
{
float col[3];
- IMB_colormanagement_rgb_to_rec709(col, self->col);
+ IMB_colormanagement_scene_linear_to_rec709(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}
@@ -186,7 +186,7 @@ PyDoc_STRVAR(Color_from_rec709_linear_to_scene_linear_doc,
static PyObject *Color_from_rec709_linear_to_scene_linear(ColorObject *self)
{
float col[3];
- IMB_colormanagement_rec709_to_rgb(col, self->col);
+ IMB_colormanagement_rec709_to_scene_linear(col, self->col);
return Color_CreatePyObject(col, Py_TYPE(self));
}