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

Member Function Documentation

◆ operator!=()

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

Definition at line 114 of file vma.h.

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

◆ operator==()

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

Definition at line 109 of file vma.h.

109 {
110 return allocator == other.allocator && allocation == other.allocation &&
111 image == other.image;
112 }
VmaAllocator allocator
Definition vma.h:105
VmaAllocation allocation
Definition vma.h:106
vk::Image image
Definition vma.h:107

Member Data Documentation

◆ allocation

VmaAllocation impeller::ImageVMA::allocation = {}

Definition at line 106 of file vma.h.

106{};

◆ allocator

VmaAllocator impeller::ImageVMA::allocator = {}

Definition at line 105 of file vma.h.

105{};

◆ image

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

Definition at line 107 of file vma.h.

107{};

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