diff options
author | Adam Jackson <[email protected]> | 2011-04-29 16:30:50 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2011-05-24 16:45:02 -0400 |
commit | 3869be74afb184dbdf9d67fda3de3e3ac7e3db6c (patch) | |
tree | a359b5e64c2e157b4b62d8eb7493b0d6195c3cbc /src/glx/glxcmds.c | |
parent | a3aecd190b7c411d399350f83ee663f8744e94ac (diff) |
glx: More comment cleanup
Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/glx/glxcmds.c')
-rw-r--r-- | src/glx/glxcmds.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 22bebab26bc..012cd79506e 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -200,19 +200,14 @@ glx_context_init(struct glx_context *gc, /** - * Create a new context. Exactly one of \c vis and \c fbconfig should be - * non-NULL. + * Create a new context. * - * \param use_glx_1_3 For FBConfigs, should GLX 1.3 protocol or - * SGIX_fbconfig protocol be used? * \param renderType For FBConfigs, what is the rendering type? */ static GLXContext -CreateContext(Display * dpy, int generic_id, - struct glx_config *config, - GLXContext shareList_user, - Bool allowDirect, +CreateContext(Display *dpy, int generic_id, struct glx_config *config, + GLXContext shareList_user, Bool allowDirect, unsigned code, int renderType, int screen) { struct glx_context *gc; |