#[repr(u32)]pub enum EVRSubmitFlags {
Submit_Default = 0,
Submit_LensDistortionAlreadyApplied = 1,
Submit_GlRenderBuffer = 2,
Submit_Reserved = 4,
Submit_TextureWithPose = 8,
Submit_TextureWithDepth = 16,
Submit_FrameDiscontinuty = 32,
Submit_VulkanTextureWithArrayData = 64,
Submit_GlArrayTexture = 128,
Submit_Reserved2 = 32_768,
Submit_Reserved3 = 65_536,
}Expand description
Allows the application to control how scene textures are used by the compositor when calling Submit.
Variants§
Submit_Default = 0
Submit_LensDistortionAlreadyApplied = 1
Submit_GlRenderBuffer = 2
Submit_Reserved = 4
Submit_TextureWithPose = 8
Submit_TextureWithDepth = 16
Submit_FrameDiscontinuty = 32
Submit_VulkanTextureWithArrayData = 64
Submit_GlArrayTexture = 128
Submit_Reserved2 = 32_768
Submit_Reserved3 = 65_536
Trait Implementations§
Source§impl Clone for EVRSubmitFlags
impl Clone for EVRSubmitFlags
Source§fn clone(&self) -> EVRSubmitFlags
fn clone(&self) -> EVRSubmitFlags
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ExternType for EVRSubmitFlags
impl ExternType for EVRSubmitFlags
Source§impl Hash for EVRSubmitFlags
impl Hash for EVRSubmitFlags
Source§impl PartialEq for EVRSubmitFlags
impl PartialEq for EVRSubmitFlags
impl Eq for EVRSubmitFlags
impl StructuralPartialEq for EVRSubmitFlags
impl UniquePtrTarget for EVRSubmitFlags
impl VectorElement for EVRSubmitFlags
impl WeakPtrTarget for EVRSubmitFlags
Auto Trait Implementations§
impl Freeze for EVRSubmitFlags
impl RefUnwindSafe for EVRSubmitFlags
impl Send for EVRSubmitFlags
impl Sync for EVRSubmitFlags
impl Unpin for EVRSubmitFlags
impl UnwindSafe for EVRSubmitFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.