diff options
author | Michał Janiszewski <janisozaur+signed@gmail.com> | 2018-10-29 15:51:00 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2018-10-30 06:19:10 -0600 |
commit | ec994ca0fc2b853c00d9b54de7c87715ec605c2e (patch) | |
tree | 4929912ee031fa65b34a05b9a046977db4128eb0 /src/glx | |
parent | 8ebd7039c4c46dfad9831ba4d70a2a5ea23f2f72 (diff) |
glx: Add missing include guards
Signed-off-by: Michał Janiszewski <janisozaur+signed@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/dri2_priv.h | 5 | ||||
-rw-r--r-- | src/glx/drisw_priv.h | 5 | ||||
-rw-r--r-- | src/glx/glx_error.h | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/src/glx/dri2_priv.h b/src/glx/dri2_priv.h index 30ab2cdd871..a93551b146d 100644 --- a/src/glx/dri2_priv.h +++ b/src/glx/dri2_priv.h @@ -30,6 +30,9 @@ * Kristian Høgsberg (krh@redhat.com) */ +#ifndef DRI2_PRIV_H +#define DRI2_PRIV_H + #ifdef __cplusplus extern "C" { #endif @@ -82,3 +85,5 @@ dri2_interop_export_object(struct glx_context *ctx, #ifdef __cplusplus } #endif + +#endif diff --git a/src/glx/drisw_priv.h b/src/glx/drisw_priv.h index a670da2d33b..259fc864f6a 100644 --- a/src/glx/drisw_priv.h +++ b/src/glx/drisw_priv.h @@ -23,6 +23,9 @@ * SOFTWARE. */ +#ifndef DRISW_PRIV_H +#define DRISW_PRIV_H + #include <X11/extensions/XShm.h> struct drisw_display @@ -73,3 +76,5 @@ drisw_query_renderer_integer(struct glx_screen *base, int attribute, _X_HIDDEN int drisw_query_renderer_string(struct glx_screen *base, int attribute, const char **value); + +#endif diff --git a/src/glx/glx_error.h b/src/glx/glx_error.h index 5d3992672e0..6a2f32aa56e 100644 --- a/src/glx/glx_error.h +++ b/src/glx/glx_error.h @@ -26,6 +26,10 @@ promote the sale, use or other dealings in this Software without prior written authorization. */ + +#ifndef GLX_ERROR_H +#define GLX_ERROR_H + #include <stdbool.h> #include <stdint.h> #include <X11/Xlib.h> @@ -45,3 +49,5 @@ _X_HIDDEN void __glXSendErrorForXcb(Display * dpy, #ifdef __cplusplus } #endif + +#endif |