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 63 of file vma.h.

Member Function Documentation

◆ operator!=()

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

Definition at line 73 of file vma.h.

73  {
74  return !(*this == other);
75  }

◆ operator==()

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

Definition at line 68 of file vma.h.

68  {
69  return allocator == other.allocator && allocation == other.allocation &&
70  buffer == other.buffer;
71  }
VmaAllocator allocator
Definition: vma.h:64
vk::Buffer buffer
Definition: vma.h:66
VmaAllocation allocation
Definition: vma.h:65

References allocation, allocator, and buffer.

Member Data Documentation

◆ allocation

VmaAllocation impeller::BufferVMA::allocation = {}

Definition at line 65 of file vma.h.

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

◆ allocator

VmaAllocator impeller::BufferVMA::allocator = {}

Definition at line 64 of file vma.h.

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

◆ buffer

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

Definition at line 66 of file vma.h.

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


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