Code cleanup, typo fixes

This commit is contained in:
Sergey Sharybin
2012-07-10 13:40:09 +00:00
parent b8979b69c4
commit 350518483d
3 changed files with 3 additions and 3 deletions

View File

@@ -587,7 +587,7 @@ def AppIt(target=None, source=None, env=None):
commands.getoutput(cmd)
cmd = 'cp -R %s/release/datafiles/fonts %s/%s.app/Contents/MacOS/%s/datafiles/'%(bldroot,installdir,binary,VERSION)
commands.getoutput(cmd)
if env['WITH_BF_OCIO']:
if env['WITH_BF_OCIO']:
cmd = 'cp -R %s/release/datafiles/colormanagement %s/%s.app/Contents/MacOS/%s/datafiles/'%(bldroot,installdir,binary,VERSION)
commands.getoutput(cmd)
cmd = 'cp -R %s/release/scripts %s/%s.app/Contents/MacOS/%s/'%(bldroot,installdir,binary,VERSION)

View File

@@ -100,7 +100,7 @@ void OCIO_displayTransformSetLinearCC(DisplayTransformRcPtr *dt, ConstTransformR
void OCIO_displayTransformRelease(DisplayTransformRcPtr *dt);
PackedImageDesc *OCIO_createPackedImageDesc(float *data, long width, long height, long numChannels,
long chanStrideBytes, long xStrideBytes, long yStrideBytes);
long chanStrideBytes, long xStrideBytes, long yStrideBytes);
void OCIO_packedImageDescRelease(PackedImageDesc *p);

View File

@@ -392,7 +392,7 @@ void IMB_buffer_byte_from_byte(unsigned char *rect_to, const unsigned char *rect
int width, int height, int stride_to, int stride_from);
void IMB_buffer_float_clamp(float *buf, int width, int height);
/* converting pixel buffers using tobecurve */
/* converting pixel buffers using tonecurve */
typedef void (*imb_tonecurveCb) (float rgbOut[3], const float rgbIn[3]);