aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/draw_buffers.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:21 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:21 +0100
commit83e4ac1499b548957c554f740934b9b2a02310aa (patch)
treec890dc4ca220a4ee53b88a729472050e6da0b9b9 /stockton-render/src/draw/draw_buffers.rs
parent95708732572431dc057a9fd71fa8bd8571a336a2 (diff)
refactor(all): 2018 edition
Diffstat (limited to 'stockton-render/src/draw/draw_buffers.rs')
-rw-r--r--stockton-render/src/draw/draw_buffers.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/stockton-render/src/draw/draw_buffers.rs b/stockton-render/src/draw/draw_buffers.rs
index 2fdfa10..faf9c4e 100644
--- a/stockton-render/src/draw/draw_buffers.rs
+++ b/stockton-render/src/draw/draw_buffers.rs
@@ -15,10 +15,11 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-use crate::types::*;
-use draw::buffer::StagedBuffer;
-use draw::UVPoint;
-use error::CreationError;
+use crate::{
+ draw::{buffer::StagedBuffer, UVPoint},
+ error::CreationError,
+ types::*,
+};
use hal::buffer::Usage;
use std::mem::ManuallyDrop;