Home
last modified time | relevance | path

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

/external/skqp/include/gpu/gl/
DGrGLFunctions.h280 fCall = [](const void* buf, Args... args) { in GrGLFunction()
296 fCall = [](const void* buf, Args... args) { in GrGLFunction()
303 SkASSERT(fCall); in operator()
304 return fCall(fBuf, std::forward<Args>(args)...); in operator()
307 explicit operator bool() const { return fCall != nullptr; }
309 void reset() { fCall = nullptr; } in reset()
313 Call* fCall = nullptr; variable
/external/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