Skip to content

Commit

Permalink
hidpi swap chains (bevyengine#973)
Browse files Browse the repository at this point in the history
hidpi swap chains
  • Loading branch information
cart authored and superdump committed Dec 2, 2020
1 parent 5856b5e commit c3e1c5c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ impl Node for WindowTextureNode {
render_resource_context.remove_texture(old_texture);
}

self.descriptor.size.width = window.width();
self.descriptor.size.height = window.height();
self.descriptor.size.width = window.scaled_width();
self.descriptor.size.height = window.scaled_height();
let texture_resource = render_resource_context.create_texture(self.descriptor);
output.set(WINDOW_TEXTURE, RenderResourceId::Texture(texture_resource));
}
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_wgpu/src/wgpu_type_converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ impl WgpuFrom<&Window> for wgpu::SwapChainDescriptor {
wgpu::SwapChainDescriptor {
usage: wgpu::TextureUsage::OUTPUT_ATTACHMENT,
format: TextureFormat::default().wgpu_into(),
width: window.width(),
height: window.height(),
width: window.scaled_width(),
height: window.scaled_height(),
present_mode: if window.vsync() {
wgpu::PresentMode::Mailbox
} else {
Expand Down
8 changes: 8 additions & 0 deletions crates/bevy_window/src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ impl Window {
self.width
}

pub fn scaled_width(&self) -> u32 {
(self.width as f64 * self.scale_factor) as u32
}

pub fn scaled_height(&self) -> u32 {
(self.height as f64 * self.scale_factor) as u32
}

#[inline]
pub fn height(&self) -> u32 {
self.height
Expand Down

0 comments on commit c3e1c5c

Please sign in to comment.