Home
last modified time | relevance | path

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

/third_party/mesa3d/src/glx/
Dglxextensions.h285 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \ argument
287 __attribute__ ((alias( # aliased_func ) ));
288 # define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func) \ argument
289 GLX_ALIAS(void, real_func, proto_args, args, aliased_func)
291 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \ argument
293 { return aliased_func args ; }
294 # define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func) \ argument
296 { aliased_func args ; }