You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
990 B
31 lines
990 B
use crate::utility::debug::ValidationInfo;
|
|
use crate::utility::structures::DeviceExtension;
|
|
use ash::vk::make_api_version;
|
|
|
|
use std::os::raw::c_char;
|
|
|
|
pub const APPLICATION_VERSION: u32 = make_api_version(1, 0, 0, 0);
|
|
pub const ENGINE_VERSION: u32 = make_api_version(1, 0, 0, 0);
|
|
pub const API_VERSION: u32 = make_api_version(1, 3, 251, 0);
|
|
|
|
pub const WINDOW_WIDTH: u32 = 800;
|
|
pub const WINDOW_HEIGHT: u32 = 600;
|
|
pub const VALIDATION: ValidationInfo = ValidationInfo {
|
|
is_enable: true,
|
|
required_validation_layers: ["VK_LAYER_KHRONOS_validation"],
|
|
};
|
|
pub const DEVICE_EXTENSIONS: DeviceExtension = DeviceExtension {
|
|
names: ["VK_KHR_swapchain"],
|
|
};
|
|
pub const MAX_FRAMES_IN_FLIGHT: usize = 4;
|
|
pub const IS_PAINT_FPS_COUNTER: bool = true;
|
|
|
|
impl DeviceExtension {
|
|
pub fn get_extensions_raw_names(&self) -> [*const c_char; 1] {
|
|
[
|
|
// currently just enable the Swapchain extension.
|
|
ash::extensions::khr::Swapchain::name().as_ptr(),
|
|
]
|
|
}
|
|
}
|