Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_ImageOperation.h
| Show First 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | protected: | ||||
| int m_numberOfChannels; | int m_numberOfChannels; | ||||
| const RenderData *m_rd; | const RenderData *m_rd; | ||||
| const char *m_viewName; | const char *m_viewName; | ||||
| BaseImageOperation(); | BaseImageOperation(); | ||||
| /** | /** | ||||
| * Determine the output resolution. The resolution is retrieved from the Renderer | * Determine the output resolution. The resolution is retrieved from the Renderer | ||||
| */ | */ | ||||
| void determineResolution(unsigned int resolution[2], | void determine_canvas(const rcti &preferred_area, rcti &r_area) override; | ||||
| unsigned int preferredResolution[2]) override; | |||||
| virtual ImBuf *getImBuf(); | virtual ImBuf *getImBuf(); | ||||
| public: | public: | ||||
| void initExecution() override; | void initExecution() override; | ||||
| void deinitExecution() override; | void deinitExecution() override; | ||||
| void setImage(Image *image) | void setImage(Image *image) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||