anv: use correct header guards
authorEmil Velikov <emil.velikov@collabora.com>
Tue, 11 Oct 2016 17:26:24 +0000 (18:26 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Fri, 14 Oct 2016 10:53:41 +0000 (11:53 +0100)
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Chad Versace <chadversary@chromium.org>
src/intel/vulkan/anv_genX.h
src/intel/vulkan/anv_meta.h
src/intel/vulkan/anv_nir.h
src/intel/vulkan/anv_private.h
src/intel/vulkan/anv_wsi.h
src/intel/vulkan/genX_pipeline_util.h
src/intel/vulkan/vk_format_info.h

index 81ebbaa008b0623ba2fb294d7776434ec0b15517..e0cdf7e20f4f1e38dfc2457343adfacba2582b25 100644 (file)
  * IN THE SOFTWARE.
  */
 
+/*
+ * NOTE: The header can be included multiple times, from the same file.
+ */
+
 /*
  * Gen-specific function declarations.  This header must *not* be included
  * directly.  Instead, it is included multiple times by gen8_private.h.
index 47c6d3354383eb0efab82986e892c55b3609a477..a7cb730cf7afd1f61b889c5352d7bf2c9ab5290d 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef ANV_META_H
+#define ANV_META_H
 
 #include "anv_private.h"
 
@@ -67,3 +68,5 @@ anv_meta_get_iview_layer(const struct anv_image *dest_image,
 #ifdef __cplusplus
 }
 #endif
+
+#endif /* ANV_META_H */
index 567de6c2d08ff6d77eff81c0a78f03f0084a9bb8..4fff7f4f5062b1a4758aa7e551627d7bbc30160b 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef ANV_NIR_H
+#define ANV_NIR_H
 
 #include "nir/nir.h"
 #include "anv_private.h"
@@ -43,3 +44,5 @@ void anv_nir_apply_pipeline_layout(struct anv_pipeline *pipeline,
 #ifdef __cplusplus
 }
 #endif
+
+#endif /* ANV_NIR_H */
index fd886bfd03ec5e567f0a01e80ef253d06487605e..e82171433aa96da93dc23c6dc7ee3e22aaa39a30 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef ANV_PRIVATE_H
+#define ANV_PRIVATE_H
 
 #include <stdlib.h>
 #include <stdio.h>
@@ -2009,3 +2010,5 @@ ANV_DEFINE_STRUCT_CASTS(anv_common, VkImageMemoryBarrier)
 #ifdef __cplusplus
 }
 #endif
+
+#endif /* ANV_PRIVATE_H */
index 67cb690fdc5701845f6d273bb784d07bb0c83094..02be86dada541789002c64f67b3753078802bbba 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef ANV_WSI_H
+#define ANV_WSI_H
 
 #include "anv_private.h"
 
@@ -76,3 +77,5 @@ VkResult anv_x11_init_wsi(struct anv_physical_device *physical_device);
 void anv_x11_finish_wsi(struct anv_physical_device *physical_device);
 VkResult anv_wl_init_wsi(struct anv_physical_device *physical_device);
 void anv_wl_finish_wsi(struct anv_physical_device *physical_device);
+
+#endif /* ANV_WSI_H */
index b5142ac9a6f15b00cad46bdafaf5e6503dac0d8f..8e78c68f1bc4c521bbf7b900f4e007bf8b34f7b6 100644 (file)
@@ -21,6 +21,9 @@
  * IN THE SOFTWARE.
  */
 
+#ifndef GENX_PIPELINE_UTIL_H
+#define GENX_PIPELINE_UTIL_H
+
 #include "common/gen_l3_config.h"
 #include "common/gen_sample_positions.h"
 #include "vk_format_info.h"
@@ -969,3 +972,5 @@ emit_3dstate_streamout(struct anv_pipeline *pipeline,
       so.RenderingDisable = rs_info->rasterizerDiscardEnable;
    }
 }
+
+#endif /* GENX_PIPELINE_UTIL_H */
index effed55c4bcd2696ad3bb1183290bb95414cad48..5c5a1f3cc16879e516da5c51fae8aaee49cfacee 100644 (file)
@@ -21,7 +21,8 @@
  * IN THE SOFTWARE.
  */
 
-#pragma once
+#ifndef VK_FORMAT_INFO_H
+#define VK_FORMAT_INFO_H
 
 #include <stdbool.h>
 #include <vulkan/vulkan.h>
@@ -63,3 +64,5 @@ vk_format_is_depth_or_stencil(VkFormat format)
    const VkImageAspectFlags aspects = vk_format_aspects(format);
    return aspects & (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT);
 }
+
+#endif /* VK_FORMAT_INFO_H */