stule cleanup: node headers

This commit is contained in:
2012-06-13 23:31:47 +00:00
parent 906b9e0584
commit bde7e6c96b
226 changed files with 3184 additions and 3192 deletions

View File

@@ -25,34 +25,34 @@
/**
* this program converts an input colour to an output value.
* it assumes we are in sRGB colour space.
*/
* this program converts an input colour to an output value.
* it assumes we are in sRGB colour space.
*/
class ConvertYUVToRGBOperation : public NodeOperation {
private:
/**
* Cached reference to the inputProgram
*/
SocketReader * inputOperation;
* Cached reference to the inputProgram
*/
SocketReader *inputOperation;
public:
/**
* Default constructor
*/
* Default constructor
*/
ConvertYUVToRGBOperation();
/**
* the inner loop of this program
*/
void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]);
* the inner loop of this program
*/
void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer * inputBuffers[]);
/**
* Initialize the execution
*/
* Initialize the execution
*/
void initExecution();
/**
* Deinitialize the execution
*/
* Deinitialize the execution
*/
void deinitExecution();
};
#endif