Struct ctru_sys::DVLE_s

source ·
#[repr(C)]
pub struct DVLE_s {
Show 20 fields pub type_: DVLE_type, pub mergeOutmaps: bool, pub gshMode: DVLE_geoShaderMode, pub gshFixedVtxStart: u8_, pub gshVariableVtxNum: u8_, pub gshFixedVtxNum: u8_, pub dvlp: *mut DVLP_s, pub mainOffset: u32_, pub endmainOffset: u32_, pub constTableSize: u32_, pub constTableData: *mut DVLE_constEntry_s, pub outTableSize: u32_, pub outTableData: *mut DVLE_outEntry_s, pub uniformTableSize: u32_, pub uniformTableData: *mut DVLE_uniformEntry_s, pub symbolTableData: *mut c_char, pub outmapMask: u8_, pub outmapData: [u32_; 8], pub outmapMode: u32_, pub outmapClock: u32_,
}
Expand description

DVLE data.

Fields§

§type_: DVLE_type

< DVLE type.

§mergeOutmaps: bool

< true = merge vertex/geometry shader outmaps (‘dummy’ output attribute is present).

§gshMode: DVLE_geoShaderMode

< Geometry shader operation mode.

§gshFixedVtxStart: u8_

< Starting float uniform register number for storing the fixed-size primitive vertex array.

§gshVariableVtxNum: u8_

< Number of fully-defined vertices in the variable-size primitive vertex array.

§gshFixedVtxNum: u8_

< Number of vertices in the fixed-size primitive vertex array.

§dvlp: *mut DVLP_s

< Contained DVLPs.

§mainOffset: u32_

< Offset of the start of the main function.

§endmainOffset: u32_

< Offset of the end of the main function.

§constTableSize: u32_

< Constant table size.

§constTableData: *mut DVLE_constEntry_s

< Constant table data.

§outTableSize: u32_

< Output table size.

§outTableData: *mut DVLE_outEntry_s

< Output table data.

§uniformTableSize: u32_

< Uniform table size.

§uniformTableData: *mut DVLE_uniformEntry_s

< Uniform table data.

§symbolTableData: *mut c_char

< Symbol table data.

§outmapMask: u8_

< Output map mask.

§outmapData: [u32_; 8]

< Output map data.

§outmapMode: u32_

< Output map mode.

§outmapClock: u32_

< Output map attribute clock.

Trait Implementations§

source§

impl Clone for DVLE_s

source§

fn clone(&self) -> DVLE_s

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DVLE_s

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DVLE_s

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for DVLE_s

Auto Trait Implementations§

§

impl RefUnwindSafe for DVLE_s

§

impl !Send for DVLE_s

§

impl !Sync for DVLE_s

§

impl Unpin for DVLE_s

§

impl UnwindSafe for DVLE_s

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.