mirror of
https://github.com/FranLMSP/rmg-001.git
synced 2024-11-23 10:12:11 +00:00
Remove wgpu dependency
This commit is contained in:
parent
0a30d9d194
commit
0957a79f15
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -1171,7 +1171,6 @@ dependencies = [
|
||||
"log",
|
||||
"pixels",
|
||||
"rand",
|
||||
"wgpu",
|
||||
"winit",
|
||||
"winit_input_helper",
|
||||
]
|
||||
|
@ -14,6 +14,5 @@ rand = "0.8"
|
||||
env_logger = "0.9"
|
||||
log = "0.4"
|
||||
pixels = "0.7"
|
||||
wgpu = "0.11"
|
||||
winit = "0.25"
|
||||
winit_input_helper = "0.10"
|
||||
|
@ -6,7 +6,7 @@ use crate::ppu::{WIDTH, HEIGHT};
|
||||
use std::{thread, time};
|
||||
|
||||
use log::error;
|
||||
use pixels::{Pixels, PixelsBuilder, SurfaceTexture};
|
||||
use pixels::{wgpu, Pixels, PixelsBuilder, SurfaceTexture};
|
||||
use winit::dpi::LogicalSize;
|
||||
use winit::event::{Event, VirtualKeyCode, WindowEvent};
|
||||
use winit::event_loop::{ControlFlow, EventLoop};
|
||||
|
Loading…
Reference in New Issue
Block a user