Skip to content

Commit

Permalink
Uprev blade to 26bc5e8
Browse files Browse the repository at this point in the history
Picks up kvark/blade#73 to make it possible to
start experimenting with GLES backend.
  • Loading branch information
kvark committed Feb 8, 2024
1 parent cbe7a12 commit 876f648
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/gpui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ flume = "0.11"
xcb = { version = "1.3", features = ["as-raw-xcb-connection"] }
as-raw-xcb-connection = "1"
#TODO: use these on all platforms
blade-graphics = { git = "https://github.com/kvark/blade", rev = "f35bc605154e210ab6190291235889b6ddad73f1" }
blade-macros = { git = "https://github.com/kvark/blade", rev = "f35bc605154e210ab6190291235889b6ddad73f1" }
blade-graphics = { git = "https://github.com/kvark/blade", rev = "26bc5e8b9ef67b4f2970eb95888db733eace98f3" }
blade-macros = { git = "https://github.com/kvark/blade", rev = "26bc5e8b9ef67b4f2970eb95888db733eace98f3" }
bytemuck = "1"
1 change: 0 additions & 1 deletion crates/gpui/src/platform/linux/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ fn query_render_extent(xcb_connection: &xcb::Connection, x_window: x::Window) ->
drawable: x::Drawable::Window(x_window),
});
let reply = xcb_connection.wait_for_reply(cookie).unwrap();
println!("Got geometry {:?}", reply);
gpu::Extent {
width: reply.width() as u32,
height: reply.height() as u32,
Expand Down

0 comments on commit 876f648

Please sign in to comment.