🔧 revert blocking thredshold

This commit is contained in:
Belén Albeza
2025-12-05 13:49:07 +01:00
parent ab98ebd8e1
commit b41267065c

View File

@@ -35,8 +35,8 @@ pub use images::*;
// This is the extra are used for tile rendering.
const VIEWPORT_INTEREST_AREA_THRESHOLD: i32 = 3;
const MAX_BLOCKING_TIME_MS: i32 = 3000;
const NODE_BATCH_THRESHOLD: i32 = 3;
const MAX_BLOCKING_TIME_MS: i32 = 32;
const NODE_BATCH_THRESHOLD: i32 = 10;
type ClipStack = Vec<(Rect, Option<Corners>, Matrix)>;