Home
last modified time | relevance | path

Searched refs:fCall (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/include/gpu/gl/
DGrGLFunctions.h267 fCall = [](const void* buf, Args... args) { in GrGLFunction()
283 fCall = [](const void* buf, Args... args) { in GrGLFunction()
290 SkASSERT(fCall); in operator()
291 return fCall(fBuf, std::forward<Args>(args)...); in operator()
294 explicit operator bool() const { return fCall != nullptr; }
296 void reset() { fCall = nullptr; } in reset()
300 Call* fCall = nullptr; variable