Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_MathBaseOperation.h
| Show First 20 Lines • Show All 69 Lines • ▼ Show 20 Lines | public: | ||||
| /** | /** | ||||
| * Deinitialize the execution | * Deinitialize the execution | ||||
| */ | */ | ||||
| void deinitExecution() override; | void deinitExecution() override; | ||||
| /** | /** | ||||
| * Determine resolution | * Determine resolution | ||||
| */ | */ | ||||
| void determineResolution(unsigned int resolution[2], | void determine_canvas(const rcti &preferred_area, rcti &r_area) override; | ||||
| unsigned int preferredResolution[2]) override; | |||||
| void setUseClamp(bool value) | void setUseClamp(bool value) | ||||
| { | { | ||||
| this->m_useClamp = value; | this->m_useClamp = value; | ||||
| } | } | ||||
| void update_memory_buffer_partial(MemoryBuffer *output, | void update_memory_buffer_partial(MemoryBuffer *output, | ||||
| const rcti &area, | const rcti &area, | ||||
| ▲ Show 20 Lines • Show All 307 Lines • Show Last 20 Lines | |||||