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_GPUPixelEngine.h 00016 * 00017 * COMMENTS: 00018 * Performs a variety of pixel functions on each pixel using the GPU 00019 * instead of the CPU. 00020 */ 00021 #ifndef RU_GPU_PIXELENGINE_H 00022 #define RU_GPU_PIXELENGINE_H 00023 00024 #include "RU_Algorithm.h" 00025 00026 class RU_PixelFunction; 00027 00028 class RU_API RU_GPUPixelEngine : public RU_Algorithm 00029 { 00030 public: 00031 RU_GPUPixelEngine(); 00032 virtual ~RU_GPUPixelEngine(); 00033 00034 DECLARE_PIXEL_OP(RU_GPUPixelEngineOp) 00035 00036 RU_PixelFunction *myFunctionList; 00037 }; 00038 00039 #endif
1.5.9