byte-engine-ghi 0.1.0

Graphics hardware interface layer used by Byte-Engine.
1
2
3
4
5
6
7
8
9
10
use ash::vk;

use crate::{descriptors::DescriptorSetHandle, graphics_hardware_interface};

#[derive(Clone)]
pub struct DescriptorSet {
	pub next: Option<DescriptorSetHandle>,
	pub descriptor_set: vk::DescriptorSet,
	pub descriptor_set_layout: graphics_hardware_interface::DescriptorSetTemplateHandle,
}