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
path: root/intern
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2022-04-29 17:13:15 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-04-29 17:13:23 +0300
commit473a2c83ea3a594de3d62886f72f462ad6272056 (patch)
treeea89f8bc0a464c28629c12711953b4523281b703 /intern
parenta7db7f88b067da2a6addd4243ab25506e81f4b77 (diff)
Cleanup: fix unused parameter warning
Fix 'unused parameter' warning when building without OpenColorIO. No functional changes.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/scene/colorspace.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/scene/colorspace.cpp b/intern/cycles/scene/colorspace.cpp
index ebddf70e8a4..f87b4c62ab2 100644
--- a/intern/cycles/scene/colorspace.cpp
+++ b/intern/cycles/scene/colorspace.cpp
@@ -378,6 +378,7 @@ void ColorSpaceManager::to_scene_linear(
(void)colorspace;
(void)pixels;
(void)num_pixels;
+ (void)is_rgba;
(void)compress_as_srgb;
#endif
}