blob: 15e8390583402489f1bbf3d3d57ecc328c94c452 [file] [log] [blame]
Brian Paulfbd8f211999-11-11 01:22:25 +00001/*
2 * Mesa 3-D graphics library
Brian Paul6c06ce22006-08-30 21:17:51 +00003 * Version: 6.5.1
Brian Paulfbd8f211999-11-11 01:22:25 +00004 *
Brian Paul6c06ce22006-08-30 21:17:51 +00005 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
Brian Paulfbd8f211999-11-11 01:22:25 +00006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26#ifndef GLX_HEADER_H
27#define GLX_HEADER_H
28
Jouk Jansenb5b5c522000-08-22 13:31:00 +000029#ifdef __VMS
30#include <GL/vms_x_fix.h>
31#endif
Brian Paulfbd8f211999-11-11 01:22:25 +000032
Brian Paulfbd8f211999-11-11 01:22:25 +000033#include "glheader.h"
34
Brian Paulfbd8f211999-11-11 01:22:25 +000035#ifdef XFree86Server
36
George Sapountzis32a2a092008-04-18 17:34:24 +030037# include "xorg-server.h"
Brian Paulfbd8f211999-11-11 01:22:25 +000038# include "resource.h"
39# include "windowstr.h"
Brian Paulfbd8f211999-11-11 01:22:25 +000040
41#else
42
Brian Paulfbd8f211999-11-11 01:22:25 +000043# include <X11/Xlib.h>
Brian Paul6c06ce22006-08-30 21:17:51 +000044# include <X11/Xlibint.h>
Brian Paulfbd8f211999-11-11 01:22:25 +000045# include <X11/Xutil.h>
46# ifdef USE_XSHM /* was SHM */
47# include <sys/ipc.h>
48# include <sys/shm.h>
49# include <X11/extensions/XShm.h>
50# endif
Brian Paul46458ba2002-10-25 00:01:58 +000051# include <GL/glx.h>
Brian Paul4fb99502005-09-02 13:42:49 +000052# include <sys/time.h>
Brian Paulfbd8f211999-11-11 01:22:25 +000053
54#endif
55
56
57
58/* this silences a compiler warning on several systems */
59struct timespec;
60struct itimerspec;
61
62
Brian Paulfbd8f211999-11-11 01:22:25 +000063#endif /*GLX_HEADER*/