From 0ec0f2a02fb4d6e87db8fe8c7b9027ceab0263af Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 10 Mar 2008 11:39:37 +0000 Subject: Add an option for saving/loading DPX with in log color space with reference black, reference white and gamma. Added 16 bit TIFF saving. This needs more work to cleanup code and add 16 bit TIFF reading, but committing it now so it can be tested. --- source/blender/imbuf/intern/cineon/logImageCore.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/imbuf/intern/cineon/logImageCore.h') diff --git a/source/blender/imbuf/intern/cineon/logImageCore.h b/source/blender/imbuf/intern/cineon/logImageCore.h index 1af18d5e3b8..01eff8d570d 100644 --- a/source/blender/imbuf/intern/cineon/logImageCore.h +++ b/source/blender/imbuf/intern/cineon/logImageCore.h @@ -71,6 +71,9 @@ struct _Log_Image_File_t_ unsigned char lut10[1024]; unsigned short lut8[256]; + unsigned short lut10_16[1024]; + unsigned short lut16_16[65536]; + /* pixel access functions */ GetRowFn* getRow; SetRowFn* setRow; @@ -82,6 +85,7 @@ struct _Log_Image_File_t_ }; void setupLut(LogImageFile*); +void setupLut16(LogImageFile*); int pixelsToLongs(int numPixels); -- cgit v1.2.3