glx: indent -br -i3 -npcs --no-tabs glxextensions.h

This commit is contained in:
RALOVICH, Kristóf 2008-10-13 15:07:23 +02:00 committed by Brian Paul
parent 1d0a9e4377
commit 80c83c97fc
1 changed files with 32 additions and 24 deletions

View File

@ -32,7 +32,8 @@
#ifndef GLX_GLXEXTENSIONS_H #ifndef GLX_GLXEXTENSIONS_H
#define GLX_GLXEXTENSIONS_H #define GLX_GLXEXTENSIONS_H
enum { enum
{
ARB_get_proc_address_bit = 0, ARB_get_proc_address_bit = 0,
ARB_multisample_bit, ARB_multisample_bit,
ARB_render_texture_bit, ARB_render_texture_bit,
@ -68,7 +69,8 @@ enum {
EXT_texture_from_pixmap_bit EXT_texture_from_pixmap_bit
}; };
enum { enum
{
GL_ARB_depth_texture_bit = 0, GL_ARB_depth_texture_bit = 0,
GL_ARB_draw_buffers_bit, GL_ARB_draw_buffers_bit,
GL_ARB_fragment_program_bit, GL_ARB_fragment_program_bit,
@ -231,13 +233,18 @@ enum {
struct __GLXscreenConfigsRec; struct __GLXscreenConfigsRec;
struct __GLXcontextRec; struct __GLXcontextRec;
extern GLboolean __glXExtensionBitIsEnabled( struct __GLXscreenConfigsRec *psc, unsigned bit ); extern GLboolean __glXExtensionBitIsEnabled(struct __GLXscreenConfigsRec *psc,
unsigned bit);
extern const char *__glXGetClientExtensions(void); extern const char *__glXGetClientExtensions(void);
extern void __glXCalculateUsableExtensions(struct __GLXscreenConfigsRec *psc, extern void __glXCalculateUsableExtensions(struct __GLXscreenConfigsRec *psc,
GLboolean display_is_direct_capable, int server_minor_version ); GLboolean
display_is_direct_capable,
int server_minor_version);
extern void __glXCalculateUsableGLExtensions(struct __GLXcontextRec *gc, extern void __glXCalculateUsableGLExtensions(struct __GLXcontextRec *gc,
const char * server_string, int major_version, int minor_version ); const char *server_string,
int major_version,
int minor_version);
extern void __glXGetGLVersion(int *major_version, int *minor_version); extern void __glXGetGLVersion(int *major_version, int *minor_version);
extern char *__glXGetClientGLExtensionString(void); extern char *__glXGetClientGLExtensionString(void);
@ -245,7 +252,8 @@ extern GLboolean __glExtensionBitIsEnabled( const struct __GLXcontextRec * gc,
unsigned bit); unsigned bit);
extern void extern void
__glXEnableDirectExtension(struct __GLXscreenConfigsRec *psc, const char *name); __glXEnableDirectExtension(struct __GLXscreenConfigsRec *psc,
const char *name);
/* Source-level backwards compatibility with old drivers. They won't /* Source-level backwards compatibility with old drivers. They won't
* find the respective functions, though. * find the respective functions, though.