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

#include <shader_types.h>

Public Member Functions

constexpr size_t GetHash () const
 
constexpr bool operator== (const ShaderStageIOSlot &other) const
 

Public Attributes

const char * name
 
size_t location
 
size_t set
 
size_t binding
 
ShaderType type
 
size_t bit_width
 
size_t vec_size
 
size_t columns
 
size_t offset
 

Detailed Description

Definition at line 112 of file shader_types.h.

Member Function Documentation

◆ GetHash()

constexpr size_t impeller::ShaderStageIOSlot::GetHash ( ) const
inlineconstexpr

◆ operator==()

constexpr bool impeller::ShaderStageIOSlot::operator== ( const ShaderStageIOSlot other) const
inlineconstexpr

Definition at line 128 of file shader_types.h.

128 {
129 return name == other.name && //
130 location == other.location && //
131 set == other.set && //
132 binding == other.binding && //
133 type == other.type && //
134 bit_width == other.bit_width && //
135 vec_size == other.vec_size && //
136 columns == other.columns && //
137 offset == other.offset;
138 }

Member Data Documentation

◆ binding

size_t impeller::ShaderStageIOSlot::binding

Definition at line 116 of file shader_types.h.

◆ bit_width

size_t impeller::ShaderStageIOSlot::bit_width

Definition at line 118 of file shader_types.h.

◆ columns

size_t impeller::ShaderStageIOSlot::columns

Definition at line 120 of file shader_types.h.

◆ location

size_t impeller::ShaderStageIOSlot::location

Definition at line 114 of file shader_types.h.

◆ name

const char* impeller::ShaderStageIOSlot::name

Definition at line 113 of file shader_types.h.

◆ offset

size_t impeller::ShaderStageIOSlot::offset

Definition at line 121 of file shader_types.h.

◆ set

size_t impeller::ShaderStageIOSlot::set

Definition at line 115 of file shader_types.h.

◆ type

ShaderType impeller::ShaderStageIOSlot::type

Definition at line 117 of file shader_types.h.

◆ vec_size

size_t impeller::ShaderStageIOSlot::vec_size

Definition at line 119 of file shader_types.h.


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