summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/renderer/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs
index 018f541c..333604f6 100644
--- a/src/renderer/mod.rs
+++ b/src/renderer/mod.rs
@@ -378,7 +378,7 @@ impl Batch {
}
/// Maximum items to be drawn in a batch.
-const BATCH_MAX: usize = 4096;
+const BATCH_MAX: usize = 65_536;
const ATLAS_SIZE: i32 = 1024;
impl QuadRenderer {