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:
authorThomas Dinges <blender@dingto.org>2014-09-19 19:51:28 +0400
committerThomas Dinges <blender@dingto.org>2014-09-20 00:25:35 +0400
commit054244231026cdcc913df268101cfd06488ecde9 (patch)
tree84c94900eeab1930787b71e6707d91952eea8791 /intern
parent680d0db83c433aa88564219a34beaf11a2cb47a1 (diff)
Cycles: Add a UI warning, in case the experimental GPU kernel is used.
The experimental kernel is slower and can cause issues on some cards still, so better communicate it well.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 9632b12c414..d81343cb4c9 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -1357,6 +1357,9 @@ 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):