Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/image.h
| Context not available. | |||||
| bool set_animation_frame_update(int frame); | bool set_animation_frame_update(int frame); | ||||
| bool need_update; | bool need_update; | ||||
| #if __cplusplus > 199711L | |||||
| std::function<void(const string &filename, void *data, bool &is_float, int &width, int &height, int &depth, int &channels)> builtin_image_info_cb; | |||||
| std::function<bool(const string &filename, void *data, unsigned char *pixels)> builtin_image_pixels_cb; | |||||
| std::function<bool(const string &filename, void *data, float *pixels)> builtin_image_float_pixels_cb; | |||||
| #else | |||||
| boost::function<void(const string &filename, void *data, bool &is_float, int &width, int &height, int &depth, int &channels)> builtin_image_info_cb; | boost::function<void(const string &filename, void *data, bool &is_float, int &width, int &height, int &depth, int &channels)> builtin_image_info_cb; | ||||
| boost::function<bool(const string &filename, void *data, unsigned char *pixels)> builtin_image_pixels_cb; | boost::function<bool(const string &filename, void *data, unsigned char *pixels)> builtin_image_pixels_cb; | ||||
| boost::function<bool(const string &filename, void *data, float *pixels)> builtin_image_float_pixels_cb; | boost::function<bool(const string &filename, void *data, float *pixels)> builtin_image_float_pixels_cb; | ||||
| #endif | |||||
| struct Image { | struct Image { | ||||
| string filename; | string filename; | ||||
| Context not available. | |||||