Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_ReadBufferOperation.h
| Show All 37 Lines | void setMemoryProxy(MemoryProxy *memoryProxy) | ||||
| this->m_memoryProxy = memoryProxy; | this->m_memoryProxy = memoryProxy; | ||||
| } | } | ||||
| MemoryProxy *getMemoryProxy() const | MemoryProxy *getMemoryProxy() const | ||||
| { | { | ||||
| return this->m_memoryProxy; | return this->m_memoryProxy; | ||||
| } | } | ||||
| void determineResolution(unsigned int resolution[2], | void determine_canvas(const rcti &preferred_area, rcti &r_area) override; | ||||
| unsigned int preferredResolution[2]) override; | |||||
| void *initializeTileData(rcti *rect) override; | void *initializeTileData(rcti *rect) override; | ||||
| void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override; | void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override; | ||||
| void executePixelExtend(float output[4], | void executePixelExtend(float output[4], | ||||
| float x, | float x, | ||||
| float y, | float y, | ||||
| PixelSampler sampler, | PixelSampler sampler, | ||||
| MemoryBufferExtend extend_x, | MemoryBufferExtend extend_x, | ||||
| Show All 22 Lines | |||||