diff --git a/voxygen/src/render/renderer.rs b/voxygen/src/render/renderer.rs index 4f9d9e9f1d..b7d8c86d65 100644 --- a/voxygen/src/render/renderer.rs +++ b/voxygen/src/render/renderer.rs @@ -190,11 +190,14 @@ impl Renderer { pub fn on_resize(&mut self) -> Result<(), RenderError> { let dims = self.win_color_view.get_dimensions(); - let (tgt_color_view, tgt_depth_view, tgt_color_res) = - Self::create_rt_views(&mut self.factory, (dims.0, dims.1))?; - self.tgt_color_res = tgt_color_res; - self.tgt_color_view = tgt_color_view; - self.tgt_depth_view = tgt_depth_view; + // Panics when creating texture with w,h of 0,0 + if dims.0 != 0 && dims.1 != 0 { + let (tgt_color_view, tgt_depth_view, tgt_color_res) = + Self::create_rt_views(&mut self.factory, (dims.0, dims.1))?; + self.tgt_color_res = tgt_color_res; + self.tgt_color_view = tgt_color_view; + self.tgt_depth_view = tgt_depth_view; + } Ok(()) } diff --git a/voxygen/src/scene/camera.rs b/voxygen/src/scene/camera.rs index afdac9606b..afed4a3603 100644 --- a/voxygen/src/scene/camera.rs +++ b/voxygen/src/scene/camera.rs @@ -143,7 +143,7 @@ impl Camera { } /// Set the aspect ratio of the camera. pub fn set_aspect_ratio(&mut self, aspect: f32) { - self.aspect = aspect; + self.aspect = if aspect.is_normal() { aspect } else { 1.0 }; } /// Get the orientation of the camera