From da238bdb2f9d3edb43744273b53549e09d5fa627 Mon Sep 17 00:00:00 2001 From: Omar Emara Date: Wed, 14 Feb 2024 15:35:35 +0200 Subject: [PATCH] Fix: Realtime Compositor tests use CPU compositor The Realtime Compositor uses the CPU compositor. That's because the enum identifier of the Realtime Compositor changed to GPU, so update the test script accordingly. --- tests/python/compositor_realtime_render_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/compositor_realtime_render_tests.py b/tests/python/compositor_realtime_render_tests.py index aae9253bd95..2b187bb0ac7 100644 --- a/tests/python/compositor_realtime_render_tests.py +++ b/tests/python/compositor_realtime_render_tests.py @@ -17,7 +17,7 @@ except ImportError: ENABLE_REALTIME_COMPOSITOR_SCRIPT = "import bpy; " \ "bpy.context.preferences.experimental.use_experimental_compositors = True; " \ - "bpy.data.scenes[0].node_tree.execution_mode = 'REALTIME'" + "bpy.data.scenes[0].node_tree.execution_mode = 'GPU'" def get_arguments(filepath, output_filepath):