Color Management: mark some TODOs as resolved

This commit is contained in:
Sergey Sharybin 2012-09-25 10:18:58 +00:00
parent d63f1cb5e4
commit 1f6f73e965

@ -1528,10 +1528,8 @@ void IMB_colormanagement_colorspace_to_scene_linear_v3(float pixel[3], ColorSpac
ConstProcessorRcPtr *processor;
if (!colorspace) {
/* OCIO_TODO: make sure it never happens */
/* should never happen */
printf("%s: perform conversion from unknown color space\n", __func__);
return;
}
@ -1547,10 +1545,8 @@ void IMB_colormanagement_scene_linear_to_colorspace_v3(float pixel[3], ColorSpac
ConstProcessorRcPtr *processor;
if (!colorspace) {
/* OCIO_TODO: make sure it never happens */
/* should never happen */
printf("%s: perform conversion from unknown color space\n", __func__);
return;
}
@ -1565,10 +1561,8 @@ void IMB_colormanagement_colorspace_to_scene_linear(float *buffer, int width, in
ConstProcessorRcPtr *processor;
if (!colorspace) {
/* OCIO_TODO: make sure it never happens */
/* should never happen */
printf("%s: perform conversion from unknown color space\n", __func__);
return;
}