Optionally use c++11 stuff instead of boost in cycles where possible. We do and continue to depend on boost though
Reviewers: dingto, sergey Reviewed By: sergey Subscribers: #cycles Differential Revision: https://developer.blender.org/D1185
This commit is contained in:
@@ -73,9 +73,9 @@ public:
|
||||
|
||||
bool need_update;
|
||||
|
||||
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, float *pixels)> builtin_image_float_pixels_cb;
|
||||
function<void(const string &filename, void *data, bool &is_float, int &width, int &height, int &depth, int &channels)> builtin_image_info_cb;
|
||||
function<bool(const string &filename, void *data, unsigned char *pixels)> builtin_image_pixels_cb;
|
||||
function<bool(const string &filename, void *data, float *pixels)> builtin_image_float_pixels_cb;
|
||||
|
||||
struct Image {
|
||||
string filename;
|
||||
|
Reference in New Issue
Block a user