Flutter Impeller
impeller::EGLImageWithDisplay Struct Reference

#include <image.h>

Public Member Functions

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

Public Attributes

EGLImage image = EGL_NO_IMAGE
 
EGLDisplay display = EGL_NO_DISPLAY
 

Detailed Description

Definition at line 14 of file image.h.

Member Function Documentation

◆ operator!=()

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

Definition at line 22 of file image.h.

22  {
23  return !(*this == other);
24  }

◆ operator==()

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

Definition at line 18 of file image.h.

18  {
19  return image == other.image && display == other.display;
20  }

References display, and image.

Member Data Documentation

◆ display

EGLDisplay impeller::EGLImageWithDisplay::display = EGL_NO_DISPLAY

Definition at line 16 of file image.h.

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

◆ image

EGLImage impeller::EGLImageWithDisplay::image = EGL_NO_IMAGE

Definition at line 15 of file image.h.

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


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