Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
SkImage::RequiredProperties Struct Reference

#include <SkImage.h>

Public Member Functions

bool operator== (const RequiredProperties &other) const
 
bool operator!= (const RequiredProperties &other) const
 
bool operator< (const RequiredProperties &other) const
 

Public Attributes

bool fMipmapped
 

Detailed Description

Definition at line 737 of file SkImage.h.

Member Function Documentation

◆ operator!=()

bool SkImage::RequiredProperties::operator!= ( const RequiredProperties other) const
inline

Definition at line 744 of file SkImage.h.

744{ return !(*this == other); }

◆ operator<()

bool SkImage::RequiredProperties::operator< ( const RequiredProperties other) const
inline

Definition at line 746 of file SkImage.h.

746 {
747 return fMipmapped < other.fMipmapped;
748 }

◆ operator==()

bool SkImage::RequiredProperties::operator== ( const RequiredProperties other) const
inline

Definition at line 740 of file SkImage.h.

740 {
741 return fMipmapped == other.fMipmapped;
742 }

Member Data Documentation

◆ fMipmapped

bool SkImage::RequiredProperties::fMipmapped

Definition at line 738 of file SkImage.h.


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