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.
This commit is contained in:
Thomas Dinges 2014-09-19 17:51:28 +02:00
parent 680d0db83c
commit 0542442310

@ -1358,6 +1358,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):
layout = self.layout