#[repr(C)]pub struct rlVertexBuffer {
pub elementCount: i32,
pub vertices: *mut f32,
pub texcoords: *mut f32,
pub normals: *mut f32,
pub colors: *mut u8,
pub indices: *mut u32,
pub vaoId: u32,
pub vboId: [u32; 5],
}Fields§
§elementCount: i32§vertices: *mut f32§texcoords: *mut f32§normals: *mut f32§colors: *mut u8§indices: *mut u32§vaoId: u32§vboId: [u32; 5]Trait Implementations§
Source§impl Clone for rlVertexBuffer
impl Clone for rlVertexBuffer
Source§fn clone(&self) -> rlVertexBuffer
fn clone(&self) -> rlVertexBuffer
Returns a duplicate 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 Debug for rlVertexBuffer
impl Debug for rlVertexBuffer
impl Copy for rlVertexBuffer
Auto Trait Implementations§
impl Freeze for rlVertexBuffer
impl RefUnwindSafe for rlVertexBuffer
impl !Send for rlVertexBuffer
impl !Sync for rlVertexBuffer
impl Unpin for rlVertexBuffer
impl UnsafeUnpin for rlVertexBuffer
impl UnwindSafe for rlVertexBuffer
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