Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_OutputFileOperation.h
| Show All 34 Lines | protected: | ||||
| ImageFormatData *m_format; | ImageFormatData *m_format; | ||||
| char m_path[FILE_MAX]; | char m_path[FILE_MAX]; | ||||
| float *m_outputBuffer; | float *m_outputBuffer; | ||||
| DataType m_datatype; | DataType m_datatype; | ||||
| SocketReader *m_imageInput; | SocketReader *m_imageInput; | ||||
| const ColorManagedViewSettings *m_viewSettings; | |||||
| const ColorManagedDisplaySettings *m_displaySettings; | |||||
| const char *m_viewName; | const char *m_viewName; | ||||
| public: | public: | ||||
| OutputSingleLayerOperation(const RenderData *rd, | OutputSingleLayerOperation(const RenderData *rd, | ||||
| const bNodeTree *tree, | const bNodeTree *tree, | ||||
| DataType datatype, | DataType datatype, | ||||
| ImageFormatData *format, | ImageFormatData *format, | ||||
| const char *path, | const char *path, | ||||
| const ColorManagedViewSettings *viewSettings, | |||||
| const ColorManagedDisplaySettings *displaySettings, | |||||
| const char *viewName); | const char *viewName); | ||||
| void executeRegion(rcti *rect, unsigned int tileNumber); | void executeRegion(rcti *rect, unsigned int tileNumber); | ||||
| bool isOutputOperation(bool /*rendering*/) const | bool isOutputOperation(bool /*rendering*/) const | ||||
| { | { | ||||
| return true; | return true; | ||||
| } | } | ||||
| void initExecution(); | void initExecution(); | ||||
| ▲ Show 20 Lines • Show All 81 Lines • Show Last 20 Lines | |||||