summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/x11
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-02-25 16:46:01 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-02-25 16:46:01 +0000
commit9ec28c03c07cdae1305d5911317eee8c0ca66db1 (patch)
tree245bf0f3601d0158e60c02decd1bfb2679338305 /src/mesa/drivers/x11
parentbb7e2e846cc9eb963a6d6101849952a8e5d770f7 (diff)
changed glXCopyContext's mask to unsigned long
Diffstat (limited to 'src/mesa/drivers/x11')
-rw-r--r--src/mesa/drivers/x11/glxapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/x11/glxapi.c b/src/mesa/drivers/x11/glxapi.c
index 05b484d52ac..f7ab770cea5 100644
--- a/src/mesa/drivers/x11/glxapi.c
+++ b/src/mesa/drivers/x11/glxapi.c
@@ -1,10 +1,10 @@
-/* $Id: glxapi.c,v 1.12 2000/02/25 03:55:40 keithw Exp $ */
+/* $Id: glxapi.c,v 1.13 2000/02/25 16:46:01 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -170,7 +170,7 @@ XVisualInfo *glXChooseVisual(Display *dpy, int screen, int *list)
void glXCopyContext(Display *dpy, GLXContext src, GLXContext dst,
- GLuint mask)
+ unsigned long mask)
{
struct _glxapi_table *t = get_dispatch(dpy);
if (!t)