Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
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 69 of file vma.h.

Member Function Documentation

◆ operator!=()

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

Definition at line 79 of file vma.h.

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

◆ operator==()

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

Definition at line 74 of file vma.h.

74 {
75 return allocator == other.allocator && allocation == other.allocation &&
76 buffer == other.buffer;
77 }
VmaAllocator allocator
Definition vma.h:70
vk::Buffer buffer
Definition vma.h:72
VmaAllocation allocation
Definition vma.h:71

Member Data Documentation

◆ allocation

VmaAllocation impeller::BufferVMA::allocation = {}

Definition at line 71 of file vma.h.

71{};

◆ allocator

VmaAllocator impeller::BufferVMA::allocator = {}

Definition at line 70 of file vma.h.

70{};

◆ buffer

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

Definition at line 72 of file vma.h.

72{};

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