pub struct hkxVertexBufferVertexData {
pub __ptr: Option<Pointer>,
pub m_vectorData: Vec<Vector4>,
pub m_floatData: Vec<f32>,
pub m_uint32Data: Vec<u32>,
pub m_uint16Data: Vec<u16>,
pub m_uint8Data: Vec<u8>,
pub m_numVerts: u32,
pub m_vectorStride: u32,
pub m_floatStride: u32,
pub m_uint32Stride: u32,
pub m_uint16Stride: u32,
pub m_uint8Stride: u32,
}
Expand description
§C++ Info
- name:
hkxVertexBufferVertexData
- version:
0
- signature:
0xd72b6fd0
- size:
84
(x86)/104
(x86_64) - vtable:
false
Fields§
§__ptr: Option<Pointer>
§Unique index for this class
- Represents a pointer on XML (
<hkobject name="#0001"></hkobject>
) Option::None
=> This class isclass in field
.(<hkobject></hkobject>
)
§Note
Not present in the binary & Not exist actual C++ field.
m_vectorData: Vec<Vector4>
§C++ Info
- name:
vectorData
(ctype:hkArray<hkVector4>
) - offset:
0
(x86)/0
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_floatData: Vec<f32>
§C++ Info
- name:
floatData
(ctype:hkArray<hkReal>
) - offset:
12
(x86)/16
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_uint32Data: Vec<u32>
§C++ Info
- name:
uint32Data
(ctype:hkArray<hkUint32>
) - offset:
24
(x86)/32
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_uint16Data: Vec<u16>
§C++ Info
- name:
uint16Data
(ctype:hkArray<hkUint16>
) - offset:
36
(x86)/48
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_uint8Data: Vec<u8>
§C++ Info
- name:
uint8Data
(ctype:hkArray<hkUint8>
) - offset:
48
(x86)/64
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_numVerts: u32
§C++ Info
- name:
numVerts
(ctype:hkUint32
) - offset:
60
(x86)/80
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_vectorStride: u32
§C++ Info
- name:
vectorStride
(ctype:hkUint32
) - offset:
64
(x86)/84
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_floatStride: u32
§C++ Info
- name:
floatStride
(ctype:hkUint32
) - offset:
68
(x86)/88
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_uint32Stride: u32
§C++ Info
- name:
uint32Stride
(ctype:hkUint32
) - offset:
72
(x86)/92
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_uint16Stride: u32
§C++ Info
- name:
uint16Stride
(ctype:hkUint32
) - offset:
76
(x86)/96
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_uint8Stride: u32
§C++ Info
- name:
uint8Stride
(ctype:hkUint32
) - offset:
80
(x86)/100
(x86_64) - type_size:
4
(x86)/4
(x86_64)
Trait Implementations§
Source§impl Clone for hkxVertexBufferVertexData
impl Clone for hkxVertexBufferVertexData
Source§impl Debug for hkxVertexBufferVertexData
impl Debug for hkxVertexBufferVertexData
Source§impl Default for hkxVertexBufferVertexData
impl Default for hkxVertexBufferVertexData
Source§impl<'de> Deserialize<'de> for hkxVertexBufferVertexData
impl<'de> Deserialize<'de> for hkxVertexBufferVertexData
Source§fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for hkxVertexBufferVertexData
impl RefUnwindSafe for hkxVertexBufferVertexData
impl Send for hkxVertexBufferVertexData
impl Sync for hkxVertexBufferVertexData
impl Unpin for hkxVertexBufferVertexData
impl UnwindSafe for hkxVertexBufferVertexData
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more