Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/ui.py
| Show First 20 Lines • Show All 2,020 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| 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(text="OptiX Flags:") | col.label(text="OptiX Flags:") | ||||
| col.prop(cscene, "debug_optix_cuda_streams") | col.prop(cscene, "debug_optix_cuda_streams") | ||||
| col.prop(cscene, "debug_optix_curves_api") | |||||
| col.separator() | col.separator() | ||||
| col = layout.column() | col = layout.column() | ||||
| col.label(text="OpenCL Flags:") | col.label(text="OpenCL Flags:") | ||||
| col.prop(cscene, "debug_opencl_device_type", text="Device") | col.prop(cscene, "debug_opencl_device_type", text="Device") | ||||
| 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") | ||||
| ▲ Show 20 Lines • Show All 341 Lines • Show Last 20 Lines | |||||