Home
last modified time | relevance | path

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

/third_party/mesa3d/src/glx/
Dglxextensions.h290 # define GLX_ALIAS2(return_type, real_func, proto_args, args, aliased_func) \ argument
292 __attribute__ ((alias( # aliased_func ) ));
293 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \ argument
294 GLX_ALIAS2(return_type, real_func, proto_args, args, aliased_func)
295 # define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func) \ argument
296 GLX_ALIAS2(void, real_func, proto_args, args, aliased_func)
298 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \ argument
300 { return aliased_func args ; }
301 # define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func) \ argument
303 { aliased_func args ; }