From 2734baa9e24fc9401fab2a116fcfb18c56538175 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 29 Oct 2018 15:51:00 -0600 Subject: [PATCH] mesa: Add missing include guards MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Janiszewski Reviewed-by: Brian Paul --- src/mesa/main/texcompress_bptc_tmp.h | 5 +++++ src/mesa/main/texcompress_s3tc_tmp.h | 5 +++++ src/mesa/state_tracker/st_glsl_to_tgsi.h | 5 +++++ src/mesa/state_tracker/st_shader_cache.h | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/src/mesa/main/texcompress_bptc_tmp.h b/src/mesa/main/texcompress_bptc_tmp.h index 3c4ea2c0131..90837d6af3a 100644 --- a/src/mesa/main/texcompress_bptc_tmp.h +++ b/src/mesa/main/texcompress_bptc_tmp.h @@ -25,6 +25,9 @@ * Included by texcompress_bptc and gallium to define BPTC decoding routines. */ +#ifndef TEXCOMPRESS_BPTC_TMP_H +#define TEXCOMPRESS_BPTC_TMP_H + #include "util/format_srgb.h" #include "util/half_float.h" #include "macros.h" @@ -1741,3 +1744,5 @@ compress_rgb_float(int width, int height, dst += dst_row_diff; } } + +#endif diff --git a/src/mesa/main/texcompress_s3tc_tmp.h b/src/mesa/main/texcompress_s3tc_tmp.h index 92316a74dd0..dbf8c871b7a 100644 --- a/src/mesa/main/texcompress_s3tc_tmp.h +++ b/src/mesa/main/texcompress_s3tc_tmp.h @@ -22,6 +22,9 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#ifndef TEXCOMPRESS_S3TC_TMP_H +#define TEXCOMPRESS_S3TC_TMP_H + #ifdef __APPLE__ #include #else @@ -987,3 +990,5 @@ static void tx_compress_dxtn(GLint srccomps, GLint width, GLint height, const GL return; } } + +#endif diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.h b/src/mesa/state_tracker/st_glsl_to_tgsi.h index 8ccfff9bd37..277bc947e25 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.h +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.h @@ -22,6 +22,9 @@ * DEALINGS IN THE SOFTWARE. */ +#ifndef ST_GLSL_TO_TGSI_H +#define ST_GLSL_TO_TGSI_H + #include "pipe/p_defines.h" #include "pipe/p_shader_tokens.h" #include "main/mtypes.h" @@ -73,3 +76,5 @@ _mesa_sysval_to_semantic(unsigned sysval); #ifdef __cplusplus } #endif + +#endif diff --git a/src/mesa/state_tracker/st_shader_cache.h b/src/mesa/state_tracker/st_shader_cache.h index 5b0bff7b2f8..67cc084d600 100644 --- a/src/mesa/state_tracker/st_shader_cache.h +++ b/src/mesa/state_tracker/st_shader_cache.h @@ -21,6 +21,9 @@ * DEALINGS IN THE SOFTWARE. */ +#ifndef ST_SHADER_CACHE_H +#define ST_SHADER_CACHE_H + #include "st_context.h" #include "compiler/blob.h" #include "main/mtypes.h" @@ -73,3 +76,5 @@ st_store_ir_in_disk_cache(struct st_context *st, struct gl_program *prog, #ifdef __cplusplus } #endif + +#endif -- 2.30.2