From ed588d450050fae44b62697b0d495a0b6edb4dd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elena=20Torr=C3=B3?= Date: Wed, 19 Aug 2026 17:27:50 +0200 Subject: [PATCH] :zap: Disable ReduceOpsTaskSplitting Skia flag (#11280) --- render-wasm/src/render/gpu_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render-wasm/src/render/gpu_state.rs b/render-wasm/src/render/gpu_state.rs index 0425a92f26..5e104efbff 100644 --- a/render-wasm/src/render/gpu_state.rs +++ b/render-wasm/src/render/gpu_state.rs @@ -22,7 +22,7 @@ impl GpuState { // We tweak some options to enhance performance. let mut context_options = ContextOptions::default(); - // context_options.reduce_ops_task_splitting = Enable::Yes; + context_options.reduce_ops_task_splitting = Enable::No; context_options.skip_gl_error_checks = Enable::Yes; // context_options.runtime_program_cache_size = 1024; // context_options.allow_multiple_glyph_cache_textures = Enable::Yes;