Skip to content

Commit

Permalink
apply cargo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddyFunk committed Feb 25, 2024
1 parent 4bfb4db commit 59f29f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/ray_marching_renderer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use eframe::{
egui_wgpu::{self, wgpu},
};
use egui::{epaint::Shadow, Pos2};
use glam::{vec3, Vec2, Vec3, Vec4};
use glam::{vec3, Vec2};

struct RayMarchingRendererResources {
render_pipeline: wgpu::RenderPipeline,
Expand Down Expand Up @@ -663,7 +663,7 @@ impl RayMarchingRenderer {

pub fn custom_painting(&mut self, ui: &mut egui::Ui) {
let available_size = ui.available_size_before_wrap();
let (rect, response) =
let (rect, _response) =
ui.allocate_exact_size(available_size, egui::Sense::click_and_drag());

// fix for high dpi displays
Expand Down

0 comments on commit 59f29f7

Please sign in to comment.