Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
impeller::VertexBuffer Struct Reference

#include <vertex_buffer.h>

Public Member Functions

constexpr operator bool () const
 

Public Attributes

BufferView vertex_buffer
 
BufferView index_buffer
 The index buffer binding used by the vertex shader stage.
 
size_t vertex_count = 0u
 
IndexType index_type = IndexType::kUnknown
 

Detailed Description

Definition at line 13 of file vertex_buffer.h.

Member Function Documentation

◆ operator bool()

constexpr impeller::VertexBuffer::operator bool ( ) const
inlineexplicitconstexpr

Definition at line 31 of file vertex_buffer.h.

31 {
32 return static_cast<bool>(vertex_buffer) &&
33 (index_type == IndexType::kNone || static_cast<bool>(index_buffer));
34 }
@ kNone
Does not use the index buffer.
BufferView index_buffer
The index buffer binding used by the vertex shader stage.

Member Data Documentation

◆ index_buffer

BufferView impeller::VertexBuffer::index_buffer

The index buffer binding used by the vertex shader stage.

Definition at line 18 of file vertex_buffer.h.

◆ index_type

IndexType impeller::VertexBuffer::index_type = IndexType::kUnknown

The type of indices in the index buffer. The indices must be tightly packed in the index buffer.

Definition at line 29 of file vertex_buffer.h.

◆ vertex_buffer

BufferView impeller::VertexBuffer::vertex_buffer

Definition at line 14 of file vertex_buffer.h.

◆ vertex_count

size_t impeller::VertexBuffer::vertex_count = 0u

The total count of vertices, either in the vertex_buffer if the index_type is IndexType::kNone or in the index_buffer otherwise.

Definition at line 23 of file vertex_buffer.h.


The documentation for this struct was generated from the following file: