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

#include <GrGLTypes.h>

Public Member Functions

bool operator== (const GrGLFramebufferInfo &that) const
 
bool isProtected () const
 

Public Attributes

GrGLuint fFBOID
 
GrGLenum fFormat = 0
 
skgpu::Protected fProtected = skgpu::Protected::kNo
 

Detailed Description

Definition at line 196 of file GrGLTypes.h.

Member Function Documentation

◆ isProtected()

bool GrGLFramebufferInfo::isProtected ( ) const
inline

Definition at line 207 of file GrGLTypes.h.

207{ return fProtected == skgpu::Protected::kYes; }
skgpu::Protected fProtected
Definition GrGLTypes.h:199

◆ operator==()

bool GrGLFramebufferInfo::operator== ( const GrGLFramebufferInfo that) const
inline

Definition at line 201 of file GrGLTypes.h.

201 {
202 return fFBOID == that.fFBOID &&
203 fFormat == that.fFormat &&
204 fProtected == that.fProtected;
205 }

Member Data Documentation

◆ fFBOID

GrGLuint GrGLFramebufferInfo::fFBOID

Definition at line 197 of file GrGLTypes.h.

◆ fFormat

GrGLenum GrGLFramebufferInfo::fFormat = 0

Definition at line 198 of file GrGLTypes.h.

◆ fProtected

skgpu::Protected GrGLFramebufferInfo::fProtected = skgpu::Protected::kNo

Definition at line 199 of file GrGLTypes.h.


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