Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/buffers.h
| Show First 20 Lines • Show All 86 Lines • ▼ Show 20 Lines | public: | ||||
| void reset(BufferParams ¶ms); | void reset(BufferParams ¶ms); | ||||
| void zero(); | void zero(); | ||||
| bool copy_from_device(); | bool copy_from_device(); | ||||
| bool get_pass_rect( | bool get_pass_rect( | ||||
| const string &name, float exposure, int sample, int components, float *pixels); | const string &name, float exposure, int sample, int components, float *pixels); | ||||
| bool get_denoising_pass_rect( | bool get_denoising_pass_rect( | ||||
| int offset, float exposure, int sample, int components, float *pixels); | int offset, float exposure, int sample, int components, float *pixels); | ||||
| bool set_pass_rect(PassType type, int components, float *pixels); | bool set_pass_rect(PassType type, int components, float *pixels, int samples); | ||||
| }; | }; | ||||
| /* Display Buffer | /* Display Buffer | ||||
| * | * | ||||
| * The buffer used for drawing during render, filled by converting the render | * The buffer used for drawing during render, filled by converting the render | ||||
| * buffers to byte of half float storage */ | * buffers to byte of half float storage */ | ||||
| class DisplayBuffer { | class DisplayBuffer { | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||