rust_vulkan_test/src/renderer/mod.rs

7 lines
132 B
Rust
Raw Normal View History

2024-11-27 21:27:50 +01:00
use ash::vk;
pub mod vulkan;
pub trait Renderable {
fn render(device: &vulkan::VkDevice, command_buffer: vk::CommandBuffer);
}