Flutter Engine
 
Loading...
Searching...
No Matches
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 98 of file vma.h.

Member Function Documentation

◆ operator!=()

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

Definition at line 108 of file vma.h.

108 {
109 return !(*this == other);
110 }

◆ operator==()

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

Definition at line 103 of file vma.h.

103 {
104 return allocator == other.allocator && allocation == other.allocation &&
105 image == other.image;
106 }
VmaAllocator allocator
Definition vma.h:99
VmaAllocation allocation
Definition vma.h:100
vk::Image image
Definition vma.h:101

References allocation, allocator, and image.

Member Data Documentation

◆ allocation

VmaAllocation impeller::ImageVMA::allocation = {}

Definition at line 100 of file vma.h.

100{};

Referenced by operator==().

◆ allocator

VmaAllocator impeller::ImageVMA::allocator = {}

Definition at line 99 of file vma.h.

99{};

Referenced by operator==().

◆ image

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

Definition at line 101 of file vma.h.

101{};

Referenced by operator==().


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