Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_BokehImageOperation.h
| Show First 20 Lines • Show All 122 Lines • ▼ Show 20 Lines | public: | ||||
| * \brief Deinitialize the execution | * \brief Deinitialize the execution | ||||
| */ | */ | ||||
| void deinitExecution() override; | void deinitExecution() override; | ||||
| /** | /** | ||||
| * \brief determine the resolution of this operation. currently fixed at [COM_BLUR_BOKEH_PIXELS, | * \brief determine the resolution of this operation. currently fixed at [COM_BLUR_BOKEH_PIXELS, | ||||
| * COM_BLUR_BOKEH_PIXELS] \param resolution: \param preferredResolution: | * COM_BLUR_BOKEH_PIXELS] \param resolution: \param preferredResolution: | ||||
| */ | */ | ||||
| void determineResolution(unsigned int resolution[2], | void determine_canvas(const rcti &preferred_area, rcti &r_area) override; | ||||
| unsigned int preferredResolution[2]) override; | |||||
| /** | /** | ||||
| * \brief set the node data | * \brief set the node data | ||||
| * \param data: | * \param data: | ||||
| */ | */ | ||||
| void setData(NodeBokehImage *data) | void setData(NodeBokehImage *data) | ||||
| { | { | ||||
| this->m_data = data; | this->m_data = data; | ||||
| Show All 20 Lines | |||||