Home | History | Annotate | Download | only in GLES2

Lines Matching refs:_api

47     #define API_ENTRY(_api) __attribute__((noinline)) _api
49 #define CALL_GL_API(_api, ...) \
57 [api] "J"(__builtin_offsetof(gl_hooks_t, gl._api)) \
63 #define API_ENTRY(_api) __attribute__((noinline)) _api
65 #define CALL_GL_API(_api, ...) \
89 [API] "I"(__builtin_offsetof(gl_hooks_t, gl._api)) \
95 #define API_ENTRY(_api) _api
97 #define CALL_GL_API(_api, ...) \
99 if (_c) return _c->_api(__VA_ARGS__);
103 #define CALL_GL_API_RETURN(_api, ...) \
104 CALL_GL_API(_api, __VA_ARGS__) \