8 lines
178 B
Rust
8 lines
178 B
Rust
pub struct GpuMesh {
|
|
pub vao: gl::types::GLuint,
|
|
pub vbo: gl::types::GLuint,
|
|
pub ebo: Option<gl::types::GLuint>,
|
|
pub vertex_count: i32,
|
|
pub index_count: Option<i32>,
|
|
}
|