Bump the number of fills per batch up

This commit is contained in:
Patrick Walton 2020-05-04 19:57:43 -07:00
parent 6407bf5871
commit f8405d81c0
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ pub(crate) const TILE_INSTANCE_SIZE: usize = 12;
const FILL_INSTANCE_SIZE: usize = 8;
const CLIP_TILE_INSTANCE_SIZE: usize = 8;
pub const MAX_FILLS_PER_BATCH: usize = 0x4000;
pub const MAX_FILLS_PER_BATCH: usize = 0x10000;
pub const MAX_TILES_PER_BATCH: usize = MASK_TILES_ACROSS as usize * MASK_TILES_DOWN as usize;
pub struct BlitVertexArray<D> where D: Device {