Flutter Impeller
impeller::AutoErrorCheck Struct Reference

#include <proc_table_gles.h>

Public Member Functions

 AutoErrorCheck (PFNGLGETERRORPROC error, const char *name)
 
 ~AutoErrorCheck ()
 

Public Attributes

const PFNGLGETERRORPROC error_fn
 
const char * name
 

Detailed Description

Definition at line 22 of file proc_table_gles.h.

Constructor & Destructor Documentation

◆ AutoErrorCheck()

impeller::AutoErrorCheck::AutoErrorCheck ( PFNGLGETERRORPROC  error,
const char *  name 
)
inline

Definition at line 28 of file proc_table_gles.h.

29  : error_fn(error), name(name) {}

◆ ~AutoErrorCheck()

impeller::AutoErrorCheck::~AutoErrorCheck ( )
inline

Definition at line 31 of file proc_table_gles.h.

31  {
32  if (error_fn) {
33  auto error = error_fn();
34  if (error == GL_NO_ERROR) {
35  return;
36  }
37  if (GLErrorIsFatal(error)) {
38  FML_LOG(FATAL) << "Fatal GL Error " << GLErrorToString(error) << "("
39  << error << ")" << " encountered on call to " << name;
40  } else {
41  FML_LOG(ERROR) << "GL Error " << GLErrorToString(error) << "(" << error
42  << ")" << " encountered on call to " << name;
43  }
44  }
45  }

References error_fn, impeller::GLErrorIsFatal(), impeller::GLErrorToString(), and name.

Member Data Documentation

◆ error_fn

const PFNGLGETERRORPROC impeller::AutoErrorCheck::error_fn

Definition at line 23 of file proc_table_gles.h.

Referenced by ~AutoErrorCheck().

◆ name

const char* impeller::AutoErrorCheck::name

Definition at line 26 of file proc_table_gles.h.

Referenced by ~AutoErrorCheck().


The documentation for this struct was generated from the following file:
impeller::AutoErrorCheck::name
const char * name
Definition: proc_table_gles.h:26
impeller::GLErrorToString
const char * GLErrorToString(GLenum value)
Definition: proc_table_gles.cc:18
impeller::AutoErrorCheck::error_fn
const PFNGLGETERRORPROC error_fn
Definition: proc_table_gles.h:23
impeller::GLErrorIsFatal
bool GLErrorIsFatal(GLenum value)
Definition: proc_table_gles.cc:38