Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/ui.py
| Show First 20 Lines • Show All 1,628 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| col.label('CUDA Flags:') | col.label('CUDA Flags:') | ||||
| col.prop(cscene, "debug_use_cuda_adaptive_compile") | col.prop(cscene, "debug_use_cuda_adaptive_compile") | ||||
| col.prop(cscene, "debug_use_cuda_split_kernel") | col.prop(cscene, "debug_use_cuda_split_kernel") | ||||
| col.separator() | col.separator() | ||||
| col = layout.column() | col = layout.column() | ||||
| col.label('OpenCL Flags:') | col.label('OpenCL Flags:') | ||||
| col.prop(cscene, "debug_opencl_kernel_type", text="Kernel") | |||||
| col.prop(cscene, "debug_opencl_device_type", text="Device") | col.prop(cscene, "debug_opencl_device_type", text="Device") | ||||
| col.prop(cscene, "debug_opencl_kernel_single_program", text="Single Program") | col.prop(cscene, "debug_opencl_kernel_single_program", text="Single Program") | ||||
| col.prop(cscene, "debug_use_opencl_debug", text="Debug") | col.prop(cscene, "debug_use_opencl_debug", text="Debug") | ||||
| col.prop(cscene, "debug_opencl_mem_limit") | col.prop(cscene, "debug_opencl_mem_limit") | ||||
| col.separator() | col.separator() | ||||
| col = layout.column() | col = layout.column() | ||||
| ▲ Show 20 Lines • Show All 259 Lines • Show Last 20 Lines | |||||