Flutter Impeller
impeller::BufferVMA Struct Reference

#include <vma.h>

Public Member Functions

constexpr bool operator== (const BufferVMA &other) const
 
constexpr bool operator!= (const BufferVMA &other) const
 

Public Attributes

VmaAllocator allocator = {}
 
VmaAllocation allocation = {}
 
vk::Buffer buffer = {}
 

Detailed Description

Definition at line 68 of file vma.h.

Member Function Documentation

◆ operator!=()

constexpr bool impeller::BufferVMA::operator!= ( const BufferVMA other) const
inlineconstexpr

Definition at line 78 of file vma.h.

78  {
79  return !(*this == other);
80  }

◆ operator==()

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

Definition at line 73 of file vma.h.

73  {
74  return allocator == other.allocator && allocation == other.allocation &&
75  buffer == other.buffer;
76  }

References allocation, allocator, and buffer.

Member Data Documentation

◆ allocation

VmaAllocation impeller::BufferVMA::allocation = {}

Definition at line 70 of file vma.h.

Referenced by impeller::BufferVMATraits::Free(), and operator==().

◆ allocator

VmaAllocator impeller::BufferVMA::allocator = {}

◆ buffer

vk::Buffer impeller::BufferVMA::buffer = {}

Definition at line 71 of file vma.h.

Referenced by impeller::BufferVMATraits::Free(), and operator==().


The documentation for this struct was generated from the following file:
impeller::BufferVMA::buffer
vk::Buffer buffer
Definition: vma.h:71
impeller::BufferVMA::allocator
VmaAllocator allocator
Definition: vma.h:69
impeller::BufferVMA::allocation
VmaAllocation allocation
Definition: vma.h:70