Flutter Impeller
impeller::EGLImageKHRWithDisplay Struct Reference

#include <image.h>

Public Member Functions

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

Public Attributes

EGLImageKHR image = EGL_NO_IMAGE_KHR
 
EGLDisplay display = EGL_NO_DISPLAY
 

Detailed Description

Definition at line 44 of file image.h.

Member Function Documentation

◆ operator!=()

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

Definition at line 52 of file image.h.

52  {
53  return !(*this == other);
54  }

◆ operator==()

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

Definition at line 48 of file image.h.

48  {
49  return image == other.image && display == other.display;
50  }

References display, and image.

Member Data Documentation

◆ display

EGLDisplay impeller::EGLImageKHRWithDisplay::display = EGL_NO_DISPLAY

Definition at line 46 of file image.h.

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

◆ image

EGLImageKHR impeller::EGLImageKHRWithDisplay::image = EGL_NO_IMAGE_KHR

Definition at line 45 of file image.h.

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


The documentation for this struct was generated from the following file:
impeller::EGLImageKHRWithDisplay::image
EGLImageKHR image
Definition: image.h:45
impeller::EGLImageKHRWithDisplay::display
EGLDisplay display
Definition: image.h:46