Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_NodeOperation.h
| Show All 38 Lines | |||||
| class OpenCLDevice; | class OpenCLDevice; | ||||
| class ReadBufferOperation; | class ReadBufferOperation; | ||||
| class WriteBufferOperation; | class WriteBufferOperation; | ||||
| class NodeOperation; | class NodeOperation; | ||||
| typedef NodeOperation SocketReader; | typedef NodeOperation SocketReader; | ||||
| /** | /** | ||||
| * RESOLUTION_INPUT_ANY is a wildcard when any resolution of an input can be used. | |||||
| * This solves the issue that the FileInputNode in a group node cannot find the | |||||
| * correct resolution. | |||||
| */ | |||||
| static constexpr unsigned int RESOLUTION_INPUT_ANY = 999999; | |||||
| /** | |||||
| * \brief Resize modes of inputsockets | * \brief Resize modes of inputsockets | ||||
| * How are the input and working resolutions matched | * How are the input and working resolutions matched | ||||
| * \ingroup Model | * \ingroup Model | ||||
| */ | */ | ||||
| enum class ResizeMode { | enum class ResizeMode { | ||||
| /** \brief Center the input image to the center of the working area of the node, no resizing | /** \brief Center the input image to the center of the working area of the node, no resizing | ||||
| * occurs */ | * occurs */ | ||||
| Center = NS_CR_CENTER, | Center = NS_CR_CENTER, | ||||
| ▲ Show 20 Lines • Show All 569 Lines • Show Last 20 Lines | |||||