Prevent GL/glx.h from defining prototypes
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
4c99ecfde4
commit
136ce7c9e8
|
@ -10,7 +10,6 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <GL/glx.h>
|
||||
#include <X11/Xlib-xcb.h>
|
||||
#include <assert.h>
|
||||
#include <limits.h>
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
// Copyright (c) Yuxuan Shui <yshuiv7@gmail.com>
|
||||
#pragma once
|
||||
#include <stdbool.h>
|
||||
// Older version of glx.h defines function prototypes...
|
||||
#define glXSwapIntervalMESA glXSwapIntervalMESA_
|
||||
#include <GL/glx.h>
|
||||
#include <GL/glxext.h>
|
||||
#undef glXSwapIntervalMESA
|
||||
#include <X11/Xlib.h>
|
||||
#include <xcb/xcb.h>
|
||||
#include <xcb/render.h>
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
|
||||
#ifdef CONFIG_OPENGL
|
||||
// libGL
|
||||
#include <GL/glx.h>
|
||||
#include "backend/gl/glx.h"
|
||||
|
||||
// Workarounds for missing definitions in some broken GL drivers, thanks to
|
||||
// douglasp and consolers for reporting
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include <xcb/xfixes.h>
|
||||
#include <xcb/sync.h>
|
||||
#include <xcb/composite.h>
|
||||
#include <GL/glx.h>
|
||||
|
||||
#include <ev.h>
|
||||
|
||||
|
|
|
@ -70,6 +70,7 @@ module backend {
|
|||
}
|
||||
module glx {
|
||||
header "backend/gl/glx.h"
|
||||
export GL.glx
|
||||
}
|
||||
}
|
||||
module backend {
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#ifdef CONFIG_OPENGL
|
||||
#include <GL/glx.h>
|
||||
#include <GL/gl.h>
|
||||
#include "backend/gl/glx.h"
|
||||
#include "backend/gl/gl_common.h"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <GL/glx.h>
|
||||
#include <xcb/xcb.h>
|
||||
#include <xcb/render.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <locale.h>
|
||||
#include <GL/glx.h>
|
||||
#include <GL/gl.h>
|
||||
|
||||
bool
|
||||
glx_dim_dst(session_t *ps, int dx, int dy, int width, int height, float z,
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "options.h"
|
||||
|
||||
#ifdef CONFIG_OPENGL
|
||||
#include <GL/glx.h>
|
||||
#include "backend/gl/glx.h"
|
||||
#include "opengl.h"
|
||||
#endif
|
||||
|
||||
|
@ -29,7 +29,6 @@
|
|||
#include "x.h"
|
||||
|
||||
#include "backend/backend_common.h"
|
||||
#include "backend/gl/glx.h"
|
||||
#include "render.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#include <xcb/render.h>
|
||||
#include <stdbool.h>
|
||||
#ifdef CONFIG_OPENGL
|
||||
#include <GL/glx.h>
|
||||
#include "backend/gl/glx.h"
|
||||
#endif
|
||||
#include "region.h"
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
/// Function pointers to init VSync modes.
|
||||
|
||||
#include <GL/glx.h>
|
||||
|
||||
#include "common.h"
|
||||
#include "log.h"
|
||||
|
||||
|
|
2
src/x.c
2
src/x.c
|
@ -12,7 +12,6 @@
|
|||
#include <xcb/damage.h>
|
||||
#include <xcb/render.h>
|
||||
#include <pixman.h>
|
||||
#include <GL/glx.h>
|
||||
|
||||
#include "utils.h"
|
||||
#include "region.h"
|
||||
|
@ -20,6 +19,7 @@
|
|||
#include "common.h"
|
||||
#include "x.h"
|
||||
#include "log.h"
|
||||
#include "backend/gl/glx.h"
|
||||
|
||||
/**
|
||||
* Get a specific attribute of a window.
|
||||
|
|
Loading…
Reference in New Issue