Skip to content

Commit

Permalink
chore: new version for Signals update
Browse files Browse the repository at this point in the history
  • Loading branch information
ElhamAryanpur committed Feb 20, 2024
1 parent 5abe028 commit ee2f86c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue_engine"
version = "0.5.7"
version = "0.5.8"
authors = ["Elham Aryanpur <elhamaryanpur5@gmail.com>"]
edition = "2021"
description = "General-Purpose, Easy-to-use, Fast, and Portable graphics engine"
Expand Down
7 changes: 6 additions & 1 deletion examples/dev/dev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ use blue_engine::{
};

fn main() {
let mut engine = Engine::new().expect("win");
let mut engine = Engine::new_config(blue_engine::WindowDescriptor {
power_preference: blue_engine::PowerPreference::LowPower,
present_mode: blue_engine::wgpu::PresentMode::Immediate,
..Default::default()
})
.expect("win");

//let test_instance = Instance::default();
//println!("{:?}", test_instance.to_raw());
Expand Down

0 comments on commit ee2f86c

Please sign in to comment.