Differential D12465 Diff 41723 source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
| Show First 20 Lines • Show All 124 Lines • ▼ Show 20 Lines | public: | ||||
| /** | /** | ||||
| * Deinitialize the execution | * Deinitialize the execution | ||||
| */ | */ | ||||
| void deinitExecution() override; | void deinitExecution() override; | ||||
| bool determineDependingAreaOfInterest(rcti *input, | bool determineDependingAreaOfInterest(rcti *input, | ||||
| ReadBufferOperation *readOperation, | ReadBufferOperation *readOperation, | ||||
| rcti *output) override; | rcti *output) override; | ||||
| void determineResolution(unsigned int resolution[2], | void determine_canvas(const rcti &preferred_area, rcti &r_area) override; | ||||
| unsigned int preferredResolution[2]) override; | |||||
| void setMaxBlur(int maxRadius) | void setMaxBlur(int maxRadius) | ||||
| { | { | ||||
| this->m_maxBlur = maxRadius; | this->m_maxBlur = maxRadius; | ||||
| } | } | ||||
| }; | }; | ||||
| #endif | #endif | ||||
| } // namespace blender::compositor | } // namespace blender::compositor | ||||