Flutter Impeller
impeller::VertexBuffer Struct Reference

#include <vertex_buffer.h>

Public Member Functions

 operator bool () const
 

Public Attributes

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

Detailed Description

Definition at line 15 of file vertex_buffer.h.

Member Function Documentation

◆ operator bool()

impeller::VertexBuffer::operator bool ( ) const
inlineexplicit

Definition at line 33 of file vertex_buffer.h.

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

References index_buffer, index_type, impeller::kNone, and vertex_buffer.

Member Data Documentation

◆ index_buffer

BufferView impeller::VertexBuffer::index_buffer

◆ 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 31 of file vertex_buffer.h.

Referenced by impeller::VertexBufferBuilder< VertexType_, IndexType_ >::CreateVertexBuffer(), ImGui_ImplImpeller_RenderDrawData(), operator bool(), and impeller::RenderPass::SetVertexBuffer().

◆ vertex_buffer

◆ vertex_count

size_t impeller::VertexBuffer::vertex_count = 0u

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