Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/cpu/device_impl.h
| Show All 38 Lines | |||||
| #include "kernel/osl/osl_shader.h" | #include "kernel/osl/osl_shader.h" | ||||
| #include "kernel/osl/osl_globals.h" | #include "kernel/osl/osl_globals.h" | ||||
| // clang-format on | // clang-format on | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| class CPUDevice : public Device { | class CPUDevice : public Device { | ||||
| public: | public: | ||||
| KernelGlobals kernel_globals; | KernelGlobalsCPU kernel_globals; | ||||
| device_vector<TextureInfo> texture_info; | device_vector<TextureInfo> texture_info; | ||||
| bool need_texture_info; | bool need_texture_info; | ||||
| #ifdef WITH_OSL | #ifdef WITH_OSL | ||||
| OSLGlobals osl_globals; | OSLGlobals osl_globals; | ||||
| #endif | #endif | ||||
| #ifdef WITH_EMBREE | #ifdef WITH_EMBREE | ||||
| ▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines | |||||