stule cleanup: node headers
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user