Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_MixOperation.h
| Show First 20 Lines • Show All 81 Lines • ▼ Show 20 Lines | public: | ||||
| */ | */ | ||||
| void initExecution() override; | void initExecution() override; | ||||
| /** | /** | ||||
| * Deinitialize the execution | * Deinitialize the execution | ||||
| */ | */ | ||||
| void deinitExecution() override; | void deinitExecution() override; | ||||
| void determineResolution(unsigned int resolution[2], | void determine_canvas(const rcti &preferred_area, rcti &r_area) override; | ||||
| unsigned int preferredResolution[2]) override; | |||||
| void setUseValueAlphaMultiply(const bool value) | void setUseValueAlphaMultiply(const bool value) | ||||
| { | { | ||||
| this->m_valueAlphaMultiply = value; | this->m_valueAlphaMultiply = value; | ||||
| } | } | ||||
| inline bool useValueAlphaMultiply() | inline bool useValueAlphaMultiply() | ||||
| { | { | ||||
| return this->m_valueAlphaMultiply; | return this->m_valueAlphaMultiply; | ||||
| ▲ Show 20 Lines • Show All 167 Lines • Show Last 20 Lines | |||||