Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_AntiAliasOperation.h
| Show All 30 Lines | |||||
| * @ingroup operation | * @ingroup operation | ||||
| */ | */ | ||||
| class AntiAliasOperation : public NodeOperation { | class AntiAliasOperation : public NodeOperation { | ||||
| protected: | protected: | ||||
| /** | /** | ||||
| * @brief Cached reference to the reader | * @brief Cached reference to the reader | ||||
| */ | */ | ||||
| SocketReader *m_valueReader; | SocketReader *m_valueReader; | ||||
| char *m_buffer; | |||||
| public: | public: | ||||
| AntiAliasOperation(); | AntiAliasOperation(); | ||||
| /** | /** | ||||
| * the inner loop of this program | * the inner loop of this program | ||||
| */ | */ | ||||
| void executePixel(float output[4], int x, int y, void *data); | void executePixel(float output[4], int x, int y, void *data); | ||||
| Show All 14 Lines | |||||