Style cleanup in OCIO area
Also fixed typo in function name.
This commit is contained in:
@@ -243,7 +243,7 @@ OCIO_PackedImageDesc *OCIO_createOCIO_PackedImageDesc(float *data, long width, l
|
||||
return impl->createOCIO_PackedImageDesc(data, width, height, numChannels, chanStrideBytes, xStrideBytes, yStrideBytes);
|
||||
}
|
||||
|
||||
void OCIO_OCIO_PackedImageDescRelease(OCIO_PackedImageDesc* id)
|
||||
void OCIO_PackedImageDescRelease(OCIO_PackedImageDesc* id)
|
||||
{
|
||||
impl->OCIO_PackedImageDescRelease(id);
|
||||
}
|
||||
|
@@ -107,7 +107,7 @@ void OCIO_displayTransformRelease(OCIO_DisplayTransformRcPtr *dt);
|
||||
OCIO_PackedImageDesc *OCIO_createOCIO_PackedImageDesc(float *data, long width, long height, long numChannels,
|
||||
long chanStrideBytes, long xStrideBytes, long yStrideBytes);
|
||||
|
||||
void OCIO_OCIO_PackedImageDescRelease(OCIO_PackedImageDesc *p);
|
||||
void OCIO_PackedImageDescRelease(OCIO_PackedImageDesc *p);
|
||||
|
||||
OCIO_ExponentTransformRcPtr *OCIO_createExponentTransform(void);
|
||||
void OCIO_exponentTransformSetValue(OCIO_ExponentTransformRcPtr *et, const float *exponent);
|
||||
|
@@ -1598,7 +1598,7 @@ void IMB_colormanagement_colorspace_to_scene_linear(float *buffer, int width, in
|
||||
else
|
||||
OCIO_processorApply(processor, img);
|
||||
|
||||
OCIO_OCIO_PackedImageDescRelease(img);
|
||||
OCIO_PackedImageDescRelease(img);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2545,7 +2545,7 @@ void IMB_colormanagement_processor_apply(ColormanageProcessor *cm_processor, flo
|
||||
else
|
||||
OCIO_processorApply(cm_processor->processor, img);
|
||||
|
||||
OCIO_OCIO_PackedImageDescRelease(img);
|
||||
OCIO_PackedImageDescRelease(img);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user