Skip to content

Commit

Permalink
Remove min_size on examples
Browse files Browse the repository at this point in the history
  • Loading branch information
asny committed Apr 13, 2023
1 parent c36314a commit 466da23
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion examples/animation/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "Animation!".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down
1 change: 0 additions & 1 deletion examples/environment/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "Environment!".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down
1 change: 0 additions & 1 deletion examples/lighting/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "Lighting!".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down
1 change: 0 additions & 1 deletion examples/lights/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "Lights!".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down
1 change: 0 additions & 1 deletion examples/normals/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "Normals".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down
1 change: 0 additions & 1 deletion examples/pbr/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "PBR!".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down
1 change: 0 additions & 1 deletion examples/terrain/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use three_d::*;
pub async fn run() {
let window = Window::new(WindowSettings {
title: "Terrain!".to_string(),
min_size: (512, 512),
max_size: Some((1280, 720)),
..Default::default()
})
Expand Down

0 comments on commit 466da23

Please sign in to comment.