[Bf-blender-cvs] [d7cf464b493] master: Cycles: Remove "OptiX support is experimental" notice

Patrick Mours noreply at git.blender.org
Tue Dec 8 16:15:50 CET 2020


Commit: d7cf464b493581a381540673aa7ed9e4ff47b425
Author: Patrick Mours
Date:   Tue Dec 8 16:13:04 2020 +0100
Branches: master
https://developer.blender.org/rBd7cf464b493581a381540673aa7ed9e4ff47b425

Cycles: Remove "OptiX support is experimental" notice

OptiX support is not in fact experimental anymore, so it is time for that notice to go.
All Cycles features that are currently supported on the GPU do work now when OptiX is selected.

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 0d861fde6fc..1cb29fc6cb0 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -1620,11 +1620,6 @@ class CyclesPreferences(bpy.types.AddonPreferences):
         for device in devices:
             box.prop(device, "use", text=device.name)
 
-        if device_type == 'OPTIX':
-            col = box.column(align=True)
-            col.label(text="OptiX support is experimental", icon='INFO')
-            col.label(text="Not all Cycles features are supported yet", icon='BLANK1')
-
     def draw_impl(self, layout, context):
         row = layout.row()
         row.prop(self, "compute_device_type", expand=True)



More information about the Bf-blender-cvs mailing list