Add Chromium-only Blender WebEngine parity work
This commit is contained in:
11
blender-5.2.0/scripts/presets/cycles/performance/Default.py
Normal file
11
blender-5.2.0/scripts/presets/cycles/performance/Default.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import bpy
|
||||
render = bpy.context.scene.render
|
||||
cycles = bpy.context.scene.cycles
|
||||
|
||||
render.threads_mode = 'AUTO'
|
||||
render.use_persistent_data = False
|
||||
cycles.debug_use_spatial_splits = False
|
||||
cycles.debug_use_compact_bvh = False
|
||||
cycles.debug_use_hair_bvh = True
|
||||
cycles.debug_bvh_time_steps = 0
|
||||
cycles.tile_size = 2048
|
||||
@@ -0,0 +1,11 @@
|
||||
import bpy
|
||||
render = bpy.context.scene.render
|
||||
cycles = bpy.context.scene.cycles
|
||||
|
||||
render.threads_mode = 'AUTO'
|
||||
render.use_persistent_data = True
|
||||
cycles.debug_use_spatial_splits = True
|
||||
cycles.debug_use_compact_bvh = False
|
||||
cycles.debug_use_hair_bvh = True
|
||||
cycles.debug_bvh_time_steps = 2
|
||||
cycles.tile_size = 2048
|
||||
@@ -0,0 +1,11 @@
|
||||
import bpy
|
||||
render = bpy.context.scene.render
|
||||
cycles = bpy.context.scene.cycles
|
||||
|
||||
render.threads_mode = 'AUTO'
|
||||
render.use_persistent_data = False
|
||||
cycles.debug_use_spatial_splits = False
|
||||
cycles.debug_use_compact_bvh = True
|
||||
cycles.debug_use_hair_bvh = True
|
||||
cycles.debug_bvh_time_steps = 0
|
||||
cycles.tile_size = 512
|
||||
Reference in New Issue
Block a user