Revert begin rework vulkan
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 27m46s
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 27m46s
This commit is contained in:
parent
63f16975b9
commit
62275f20d9
5 changed files with 0 additions and 24 deletions
|
@ -2,7 +2,6 @@ use std::error::Error;
|
||||||
use winit::event_loop::{ControlFlow, EventLoop};
|
use winit::event_loop::{ControlFlow, EventLoop};
|
||||||
|
|
||||||
mod renderer;
|
mod renderer;
|
||||||
mod vulkano;
|
|
||||||
|
|
||||||
fn main() -> Result<(), impl Error> {
|
fn main() -> Result<(), impl Error> {
|
||||||
env_logger::init();
|
env_logger::init();
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
use crate::vulkano::queues::Queues;
|
|
||||||
use std::sync::Arc;
|
|
||||||
use vulkano::device::Device;
|
|
||||||
use vulkano::instance::Instance;
|
|
||||||
use vulkano::memory::allocator::StandardMemoryAllocator;
|
|
||||||
|
|
||||||
struct Context {
|
|
||||||
instance: Arc<Instance>,
|
|
||||||
device: Arc<Device>,
|
|
||||||
queues: Queues,
|
|
||||||
memory_allocator: Arc<StandardMemoryAllocator>,
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
pub mod context;
|
|
||||||
pub mod queues;
|
|
||||||
mod renderer;
|
|
|
@ -1,8 +0,0 @@
|
||||||
use std::sync::Arc;
|
|
||||||
use vulkano::device::Queue;
|
|
||||||
|
|
||||||
pub struct Queues {
|
|
||||||
graphics_queue: Arc<Queue>,
|
|
||||||
compute_queue: Arc<Queue>,
|
|
||||||
transfer_queue: Option<Arc<Queue>>,
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue