Skip to content

Commit

Permalink
switch to u32 indices by default (bevyengine#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
fu5ha committed Sep 25, 2020
1 parent c2299c7 commit afc6567
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 18 deletions.
13 changes: 3 additions & 10 deletions crates/bevy_gltf/src/loader.rs
Expand Up @@ -5,10 +5,7 @@ use bevy_render::{

use anyhow::Result;
use bevy_asset::AssetLoader;
use gltf::{
buffer::Source,
mesh::{util::ReadIndices, Mode},
};
use gltf::{buffer::Source, mesh::Mode};
use std::{fs, io, path::Path};
use thiserror::Error;

Expand Down Expand Up @@ -101,12 +98,8 @@ fn load_node(buffer_data: &[Vec<u8>], node: &gltf::Node, depth: i32) -> Result<M
}

if let Some(indices) = reader.read_indices() {
mesh.indices = match indices {
ReadIndices::U8(iter) => Some(Indices::U16(iter.map(|i| i as u16).collect())),
ReadIndices::U16(iter) => Some(Indices::U16(iter.collect())),
ReadIndices::U32(iter) => Some(Indices::U32(iter.collect())),
}
};
mesh.indices = Some(Indices::U32(indices.into_u32().collect()));
}

return Ok(mesh);
}
Expand Down
6 changes: 3 additions & 3 deletions crates/bevy_render/src/mesh/mesh.rs
Expand Up @@ -237,7 +237,7 @@ pub mod shape {
uvs.push(*uv);
}

let indices = Indices::U16(vec![
let indices = Indices::U32(vec![
0, 1, 2, 2, 3, 0, // top
4, 5, 6, 6, 7, 4, // bottom
8, 9, 10, 10, 11, 8, // right
Expand Down Expand Up @@ -333,7 +333,7 @@ pub mod shape {
]
};

let indices = Indices::U16(vec![0, 2, 1, 0, 3, 2]);
let indices = Indices::U32(vec![0, 2, 1, 0, 3, 2]);

let mut positions = Vec::new();
let mut normals = Vec::new();
Expand Down Expand Up @@ -373,7 +373,7 @@ pub mod shape {
([-extent, 0.0, -extent], [0.0, 1.0, 0.0], [0.0, 1.0]),
];

let indices = Indices::U16(vec![0, 2, 1, 0, 3, 2]);
let indices = Indices::U32(vec![0, 2, 1, 0, 3, 2]);

let mut positions = Vec::new();
let mut normals = Vec::new();
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_render/src/pipeline/pipeline.rs
Expand Up @@ -55,7 +55,7 @@ impl PipelineDescriptor {
shader_stages,
rasterization_state: None,
primitive_topology: PrimitiveTopology::TriangleList,
index_format: IndexFormat::Uint16,
index_format: IndexFormat::Uint32,
sample_count: 1,
sample_mask: !0,
alpha_to_coverage_enabled: false,
Expand All @@ -67,7 +67,7 @@ impl PipelineDescriptor {
name: None,
primitive_topology: PrimitiveTopology::TriangleList,
layout: None,
index_format: IndexFormat::Uint16,
index_format: IndexFormat::Uint32,
sample_count: 1,
sample_mask: !0,
alpha_to_coverage_enabled: false,
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_render/src/pipeline/pipeline_compiler.rs
Expand Up @@ -27,7 +27,7 @@ impl Default for PipelineSpecialization {
shader_specialization: Default::default(),
primitive_topology: Default::default(),
dynamic_bindings: Default::default(),
index_format: IndexFormat::Uint16,
index_format: IndexFormat::Uint32,
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_render/src/pipeline/render_pipelines.rs
Expand Up @@ -88,7 +88,7 @@ pub fn draw_render_pipelines_system(
let (index_range, index_format) = match mesh.indices.as_ref() {
Some(Indices::U32(indices)) => (Some(0..indices.len() as u32), IndexFormat::Uint32),
Some(Indices::U16(indices)) => (Some(0..indices.len() as u32), IndexFormat::Uint16),
None => (None, IndexFormat::Uint16),
None => (None, IndexFormat::Uint32),
};

let render_pipelines = &mut *render_pipelines;
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_render/src/pipeline/state_descriptors.rs
Expand Up @@ -190,6 +190,6 @@ pub enum IndexFormat {

impl Default for IndexFormat {
fn default() -> Self {
IndexFormat::Uint16
IndexFormat::Uint32
}
}

0 comments on commit afc6567

Please sign in to comment.