Skip to content

Commit

Permalink
try to remove atty
Browse files Browse the repository at this point in the history
  • Loading branch information
schell committed Apr 22, 2024
1 parent 631069e commit 3785ba1
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 56 deletions.
82 changes: 32 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/renderling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ features = ["gltf", "raw-window-handle", "winit"]

[dev-dependencies]
assert_approx_eq = {workspace = true}
criterion = { version = "0.4", features = ["html_reports"] }
criterion = { version = "0.5", features = ["html_reports"] }
ctor = "0.2.2"
env_logger = {workspace = true}
icosahedron = "0.1"
Expand Down
10 changes: 5 additions & 5 deletions crates/renderling/src/stage/gltf_support.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
use std::collections::HashMap;

use crabslab::{Array, GrowableSlab, Id, Slab};
use glam::{Mat4, Quat, Vec2, Vec3, Vec4};
use glam::{Mat4, Vec2, Vec3, Vec4};
use snafu::{OptionExt, ResultExt, Snafu};

use crate::{
pbr::{
light::{DirectionalLight, Light, LightStyle, PointLight, SpotLight},
Material, PbrConfig,
Material,
},
slab::*,
stage::Vertex,
Expand Down Expand Up @@ -1009,10 +1009,10 @@ mod test {
use crate::{
pbr::{Material, PbrConfig},
stage::Vertex,
Camera, Renderlet, Renderling, Stage, Transform,
Camera, Renderlet, Renderling, Transform,
};
use crabslab::{Array, GrowableSlab, Id, Slab, SlabItem};
use glam::{UVec2, Vec2, Vec3, Vec4, Vec4Swizzles};
use crabslab::{GrowableSlab, Id, Slab};
use glam::{Vec2, Vec3, Vec4, Vec4Swizzles};

#[test]
fn get_vertex_count_primitive_sanity() {
Expand Down

0 comments on commit 3785ba1

Please sign in to comment.