Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_debug.h
| Show First 20 Lines • Show All 117 Lines • ▼ Show 20 Lines | enum KernelType { | ||||
| KERNEL_MEGA, | KERNEL_MEGA, | ||||
| /* Force split kernel to be used. */ | /* Force split kernel to be used. */ | ||||
| KERNEL_SPLIT, | KERNEL_SPLIT, | ||||
| }; | }; | ||||
| /* Requested device type. */ | /* Requested device type. */ | ||||
| DeviceType device_type; | DeviceType device_type; | ||||
| /* Requested kernel type. */ | |||||
| KernelType kernel_type; | |||||
| /* Use debug version of the kernel. */ | /* Use debug version of the kernel. */ | ||||
| bool debug; | bool debug; | ||||
| /* Use single program */ | /* Use single program */ | ||||
| bool single_program; | bool single_program; | ||||
| /* TODO(mai): Currently this is only for OpenCL, but we should have it implemented for all devices. */ | /* TODO(mai): Currently this is only for OpenCL, but we should have it implemented for all devices. */ | ||||
| /* Artificial memory limit in bytes (0 if disabled). */ | /* Artificial memory limit in bytes (0 if disabled). */ | ||||
| ▲ Show 20 Lines • Show All 49 Lines • Show Last 20 Lines | |||||