byte-engine-ghi 0.1.0

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

use crate::{binding::DescriptorSetBindingHandle, descriptors::DescriptorSetHandle};

#[derive(Clone)]
pub struct Binding {
	pub next: Option<DescriptorSetBindingHandle>,
	pub descriptor_set_handle: DescriptorSetHandle,
	pub descriptor_type: vk::DescriptorType,
	pub index: u32,
	pub _count: u32,
}