Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-08-08 23:32:51 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-08-08 23:32:51 +0300
commit99c13519a10fb7e2fccfbb17ccc72f772e137343 (patch)
treed8746a05b84bb08eb2df793c89fb57cbcc3306a2 /intern/cycles/device
parentc961737d0f20fec7a1c241372d367b87fe6e4a1e (diff)
Cycles: More fixes for Windows 32 bit
- Apparently MSVC does not support compound literals in C++ (at least by the looks of it). - Not sure how opencl_device_assert was managing to set protected property of the Device class.
Diffstat (limited to 'intern/cycles/device')
-rw-r--r--intern/cycles/device/opencl/opencl.h12
-rw-r--r--intern/cycles/device/opencl/opencl_base.cpp24
2 files changed, 20 insertions, 16 deletions
diff --git a/intern/cycles/device/opencl/opencl.h b/intern/cycles/device/opencl/opencl.h
index 0dae9136870..71483ca9159 100644
--- a/intern/cycles/device/opencl/opencl.h
+++ b/intern/cycles/device/opencl/opencl.h
@@ -232,8 +232,8 @@ public:
\
if(err != CL_SUCCESS) { \
string message = string_printf("OpenCL error: %s in %s (%s:%d)", clewErrorString(err), #stmt, __FILE__, __LINE__); \
- if((device)->error_msg == "") \
- (device)->error_msg = message; \
+ if((device)->error_message() == "") \
+ (device)->set_error(message); \
fprintf(stderr, "%s\n", message.c_str()); \
} \
} (void)0
@@ -556,6 +556,14 @@ private:
device_memory texture_descriptors_buffer;
struct Texture {
+ Texture() {}
+ Texture(device_memory* mem,
+ InterpolationType interpolation,
+ ExtensionType extension)
+ : mem(mem),
+ interpolation(interpolation),
+ extension(extension) {
+ }
device_memory* mem;
InterpolationType interpolation;
ExtensionType extension;
diff --git a/intern/cycles/device/opencl/opencl_base.cpp b/intern/cycles/device/opencl/opencl_base.cpp
index d3f0172a7b6..aa22086be29 100644
--- a/intern/cycles/device/opencl/opencl_base.cpp
+++ b/intern/cycles/device/opencl/opencl_base.cpp
@@ -30,6 +30,10 @@
CCL_NAMESPACE_BEGIN
struct texture_slot_t {
+ texture_slot_t(const string& name, int slot)
+ : name(name),
+ slot(slot) {
+ }
string name;
int slot;
};
@@ -515,11 +519,7 @@ void OpenCLDeviceBase::tex_alloc(const char *name,
<< string_human_readable_size(mem.memory_size()) << ")";
memory_manager.alloc(name, mem);
-
- textures[name] = (Texture){.mem = &mem,
- .interpolation = interpolation,
- .extension = extension};
-
+ textures[name] = Texture(&mem, interpolation, extension);
textures_need_update = true;
}
@@ -618,10 +618,9 @@ void OpenCLDeviceBase::flush_texture_buffers()
vector<texture_slot_t> texture_slots;
-#define KERNEL_TEX(type, ttype, slot_name) \
- if(textures.find(#slot_name) != textures.end()) { \
- texture_slots.push_back((texture_slot_t){.name = #slot_name, \
- .slot = num_slots}); \
+#define KERNEL_TEX(type, ttype, name) \
+ if(textures.find(#name) != textures.end()) { \
+ texture_slots.push_back(texture_slot_t(#name, num_slots)); \
} \
num_slots++;
#include "kernel/kernel_textures.h"
@@ -634,11 +633,8 @@ void OpenCLDeviceBase::flush_texture_buffers()
if(string_startswith(name, "__tex_image")) {
int pos = name.rfind("_");
int id = atoi(name.data() + pos + 1);
-
- texture_slots.push_back((texture_slot_t){
- .name = name,
- .slot = num_data_slots + id});
-
+ texture_slots.push_back(texture_slot_t(name,
+ num_data_slots + id));
num_slots = max(num_slots, num_data_slots + id + 1);
}
}