summaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_meta.h
diff options
context:
space:
mode:
authorEdward O'Callaghan <[email protected]>2016-10-07 22:19:19 +1100
committerEdward O'Callaghan <[email protected]>2016-10-10 16:10:56 +1100
commitba43768a1e9740076825a873001e1d7a3259742b (patch)
tree078bf5c9a9c0e9ae491d2ca31eb7ec21fada5362 /src/amd/vulkan/radv_meta.h
parent2d7e0f35c54f49c3280eea308a652253cb3bde46 (diff)
radv: Use proper header guards over 'pragma once' directives
Signed-off-by: Edward O'Callaghan <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta.h')
-rw-r--r--src/amd/vulkan/radv_meta.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_meta.h b/src/amd/vulkan/radv_meta.h
index ae63a308b2d..97d020cea14 100644
--- a/src/amd/vulkan/radv_meta.h
+++ b/src/amd/vulkan/radv_meta.h
@@ -23,7 +23,8 @@
* IN THE SOFTWARE.
*/
-#pragma once
+#ifndef RADV_META_H
+#define RADV_META_H
#include "radv_private.h"
@@ -188,3 +189,5 @@ void radv_meta_resolve_compute_image(struct radv_cmd_buffer *cmd_buffer,
#ifdef __cplusplus
}
#endif
+
+#endif /* RADV_META_H */