Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorPatrick Mours <pmours@nvidia.com>2020-12-08 18:13:04 +0300
committerPatrick Mours <pmours@nvidia.com>2020-12-08 18:13:04 +0300
commitd7cf464b493581a381540673aa7ed9e4ff47b425 (patch)
tree9dbcbf874b005f82aa02e5030f8bcebd16a72656 /intern
parent612b83bbd183c214b2d252cf19cdf581f3d9cede (diff)
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.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py5
1 files changed, 0 insertions, 5 deletions
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)