intel/blorp: use correct header guards
authorEmil Velikov <emil.velikov@collabora.com>
Tue, 11 Oct 2016 17:26:21 +0000 (18:26 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Fri, 14 Oct 2016 10:53:34 +0000 (11:53 +0100)
Avoid the discouraged use of pragma once and a missing guard for
blorp_genX_exec.h.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Chad Versace <chadversary@chromium.org>
src/intel/blorp/blorp.h
src/intel/blorp/blorp_genX_exec.h
src/intel/blorp/blorp_priv.h

index 480f1bb104fc77cb8a6dd137e46f416fbc105b15..aa52976bd9524f20464ba370ef419c1812ddbabf 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef BLORP_H
+#define BLORP_H
 
 #include <stdint.h>
 #include <stdbool.h>
@@ -162,3 +163,5 @@ blorp_gen6_hiz_op(struct blorp_batch *batch,
 #ifdef __cplusplus
 } /* end extern "C" */
 #endif /* __cplusplus */
+
+#endif /* BLORP_H */
index 62f16a3ad7a79705ca374a35126f3cd75ce71bc9..88171bea53ef21e3f86dd4b6e68bf992a51c7e3a 100644 (file)
@@ -21,6 +21,9 @@
  * IN THE SOFTWARE.
  */
 
+#ifndef BLORP_GENX_EXEC_H
+#define BLORP_GENX_EXEC_H
+
 #include "blorp_priv.h"
 #include "common/gen_device_info.h"
 #include "common/gen_sample_positions.h"
@@ -1223,3 +1226,5 @@ blorp_exec(struct blorp_batch *batch, const struct blorp_params *params)
       prim.InstanceCount = params->num_layers;
    }
 }
+
+#endif /* BLORP_GENX_EXEC_H */
index a88d0f87ba1688dfb3cd2f4f9c87b3089be1a22a..ba4c94c5ac7865d89e2e3c697fe732b48988c0c1 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef BLORP_PRIV_H
+#define BLORP_PRIV_H
 
 #include <stdint.h>
 
@@ -314,3 +315,5 @@ brw_blorp_compile_nir_shader(struct blorp_context *blorp, struct nir_shader *nir
 #ifdef __cplusplus
 } /* end extern "C" */
 #endif /* __cplusplus */
+
+#endif /* BLORP_PRIV_H */