Skip to content

Commit

Permalink
rustfmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Feb 19, 2024
1 parent 23714ac commit d7b573d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bevy_nannou_render/src/pipeline.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
use std::collections::HashMap;
use std::hash::{Hash, Hasher};
use std::hash::Hash;
use std::ops::Deref;

use bevy::core::cast_slice;
use bevy::ecs::query::QueryItem;
use bevy::prelude::*;
use bevy::render::render_graph::{NodeRunError, RenderGraphContext, RenderLabel, ViewNode};
use bevy::render::render_resource as wgpu;
use bevy::render::render_resource::{BufferInitDescriptor, LoadOp, Operations, PipelineCache, RenderPassColorAttachment, RenderPassDescriptor, RenderPipelineDescriptor, SpecializedRenderPipeline, StoreOp};
use bevy::render::render_resource::{
BufferInitDescriptor, LoadOp, Operations, PipelineCache, RenderPassDescriptor,
RenderPipelineDescriptor, SpecializedRenderPipeline, StoreOp,
};
use bevy::render::renderer::{RenderContext, RenderDevice};
use bevy::render::view::{ViewDepthTexture, ViewTarget, ViewUniform, ViewUniformOffset};

use bevy_nannou_draw::draw::mesh;
use bevy_nannou_draw::draw::mesh::vertex::Point;
use bevy_nannou_draw::draw::render::VertexMode;
Expand Down

0 comments on commit d7b573d

Please sign in to comment.