00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * 00008 * Mark Alexander 00009 * Side Effects 00010 * 477 Richmond Street West 00011 * Toronto, Ontario 00012 * Canada M5V 3E7 00013 * 416-504-9876 00014 * 00015 * NAME: RU_ChromaAdjust.h 00016 * 00017 * COMMENTS: 00018 * Removes chroma spill from a tile. 00019 */ 00020 #ifndef RU_CHROMAADJUST_H 00021 #define RU_CHROMAADJUST_H 00022 00023 #include "RU_API.h" 00024 #include <UT/UT_PtrArray.h> 00025 #include <UT/UT_Lock.h> 00026 00027 #include "RU_Algorithm.h" 00028 00029 class ru_lut8; 00030 class ru_lut16; 00031 class RU_PixelFunction; 00032 00033 class RU_API RU_ChromaAdjust : public RU_Algorithm 00034 { 00035 public: 00036 RU_ChromaAdjust() : myAlpha(0) {} 00037 virtual ~RU_ChromaAdjust() {} 00038 00039 DECLARE_PIXEL_OP(RU_ChromaAdjustOp); 00040 00041 // Alpha is modified. 00042 float *myAlpha; 00043 float myChroma[3]; 00044 }; 00045 00046 00047 #endif
1.5.9