~ubuntu-branches/ubuntu/natty/spring/natty

« back to all changes in this revision

Viewing changes to rts/lib/headlessStubs/glxextstub.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2010-09-23 18:56:03 UTC
  • mfrom: (3.1.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100923185603-st97s5chplo42y7w
Tags: 0.82.5.1+dfsg1-1ubuntu1
* Latest upstream version for online play
* debian/control: Replace (rather than conflict) spring-engine
  - spring-engine will be a dummy package (LP: #612905)
  - also set maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
 
2
 
 
3
#ifndef _GLX_EXT_STUB_H_
 
4
#define _GLX_EXT_STUB_H_
 
5
 
 
6
#undef GL_GLEXT_LEGACY
 
7
#define GL_GLEXT_PROTOTYPES
 
8
#include <GL/gl.h>
 
9
 
 
10
#ifdef __cplusplus
 
11
extern "C" {
 
12
#endif
 
13
 
 
14
int glXGetVideoSyncSGI(unsigned int *count);
 
15
 
 
16
int glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count);
 
17
 
 
18
typedef void (*__GLXextFuncPtr)(void);
 
19
__GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
 
20
 
 
21
#ifdef __cplusplus
 
22
} // extern "C"
 
23
#endif
 
24
 
 
25
#endif // _GLX_EXT_STUB_H_
 
26