Struct screen_13::driver::QueueFamilyProperties
source · [−]pub struct QueueFamilyProperties {
pub queue_flags: QueueFlags,
pub queue_count: u32,
pub timestamp_valid_bits: u32,
pub min_image_transfer_granularity: [u32; 3],
}Expand description
Describes additional propeties of the current execution queue.
Fields
queue_flags: QueueFlagsBitmask specifying capabilities of queues in a queue family.
queue_count: u32Number of queues which are available.
timestamp_valid_bits: u32The unsigned integer count of meaningful bits in the timestamps written via
vkCmdWriteTimestamp2 or vkCmdWriteTimestamp.
The valid range for the count is 36 to 64 bits, or a value of 0, indicating no support for timestamps. Bits outside the valid range are guaranteed to be zeros.
min_image_transfer_granularity: [u32; 3]The minimum granularity supported for image transfer operations on the queues in this queue family.
Trait Implementations
sourceimpl Clone for QueueFamilyProperties
impl Clone for QueueFamilyProperties
sourcefn clone(&self) -> QueueFamilyProperties
fn clone(&self) -> QueueFamilyProperties
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for QueueFamilyProperties
impl Debug for QueueFamilyProperties
sourceimpl Hash for QueueFamilyProperties
impl Hash for QueueFamilyProperties
sourceimpl PartialEq<QueueFamilyProperties> for QueueFamilyProperties
impl PartialEq<QueueFamilyProperties> for QueueFamilyProperties
sourcefn eq(&self, other: &QueueFamilyProperties) -> bool
fn eq(&self, other: &QueueFamilyProperties) -> bool
impl Copy for QueueFamilyProperties
impl Eq for QueueFamilyProperties
impl StructuralEq for QueueFamilyProperties
impl StructuralPartialEq for QueueFamilyProperties
Auto Trait Implementations
impl RefUnwindSafe for QueueFamilyProperties
impl Send for QueueFamilyProperties
impl Sync for QueueFamilyProperties
impl Unpin for QueueFamilyProperties
impl UnwindSafe for QueueFamilyProperties
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more