Upgrade Mesh2D indices from u16 to u32

This commit is contained in:
Héctor Ramón Jiménez 2020-02-14 05:42:19 +01:00
parent 945dfabd71
commit f5c80a6d75
3 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ use crate::{
pub struct Frame {
width: f32,
height: f32,
buffers: lyon::tessellation::VertexBuffers<triangle::Vertex2D, u16>,
buffers: lyon::tessellation::VertexBuffers<triangle::Vertex2D, u32>,
transforms: Transforms,
}