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
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-09-25 23:02:28 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-03 17:09:24 +0400
commitf87b75ac16944fbba80bd5dc34eaebb23d47bd22 (patch)
treefd46995e9cdb2cc323031be67fa1ac9b3a9a7c52
parent7e6b594e819848494b44d4793a7d63d11992d277 (diff)
Cycles: Better feedback about experimental features being used
Instead of having a label which basically duplicated the information about experimental feature set being used (which had a bug because it claimed experimental GPU kernel is used even if compute device is CPU btw) now we've got an enum item icon. So once you switched to experimental feature set you'll see an exclamation mark icon in the enum, so you know something might be unstable or slow.
-rw-r--r--intern/cycles/blender/addon/properties.py2
-rw-r--r--intern/cycles/blender/addon/ui.py3
2 files changed, 1 insertions, 4 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 0ac0e0f091e..597ac1a9ce0 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -37,7 +37,7 @@ if _cycles.with_network:
enum_feature_set = (
('SUPPORTED', "Supported", "Only use finished and supported features"),
- ('EXPERIMENTAL', "Experimental", "Use experimental and incomplete features that might be broken or change in the future"),
+ ('EXPERIMENTAL', "Experimental", "Use experimental and incomplete features that might be broken or change in the future", 'ERROR', 1),
)
enum_displacement_methods = (
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index d81343cb4c9..9632b12c414 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -1357,9 +1357,6 @@ def draw_device(self, context):
if engine.with_osl() and use_cpu(context):
layout.prop(cscene, "shading_system")
-
- if device_type == 'CUDA' and cscene.feature_set == 'EXPERIMENTAL':
- layout.label(text="Using experimental GPU kernel", icon='ERROR')
def draw_pause(self, context):