Flutter Impeller
impeller::ImageVMA Struct Reference

#include <vma.h>

Public Member Functions

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

Public Attributes

VmaAllocator allocator = {}
 
VmaAllocation allocation = {}
 
vk::Image image = {}
 

Detailed Description

Definition at line 103 of file vma.h.

Member Function Documentation

◆ operator!=()

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

Definition at line 113 of file vma.h.

113  {
114  return !(*this == other);
115  }

◆ operator==()

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

Definition at line 108 of file vma.h.

108  {
109  return allocator == other.allocator && allocation == other.allocation &&
110  image == other.image;
111  }

References allocation, allocator, and image.

Member Data Documentation

◆ allocation

VmaAllocation impeller::ImageVMA::allocation = {}

Definition at line 105 of file vma.h.

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

◆ allocator

VmaAllocator impeller::ImageVMA::allocator = {}

◆ image

vk::Image impeller::ImageVMA::image = {}

Definition at line 106 of file vma.h.

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


The documentation for this struct was generated from the following file:
impeller::ImageVMA::image
vk::Image image
Definition: vma.h:106
impeller::ImageVMA::allocation
VmaAllocation allocation
Definition: vma.h:105
impeller::ImageVMA::allocator
VmaAllocator allocator
Definition: vma.h:104