aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_multisample_state.h
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-03-20 16:04:19 +0000
committerEmil Velikov <[email protected]>2017-03-22 16:55:22 +0000
commit8c8761b237d35d1a39ec9535e69d6aaa97b99c84 (patch)
treedf605a8d7dcc8e23bd6e220ee07090d5e34e6792 /src/mesa/drivers/dri/i965/brw_multisample_state.h
parentb04916285e6ea27a5dbcbfc5939d3947b1b21c63 (diff)
i965: consistently use ifndef guards over pragma once
The only remaining case is the brw_oa.py generator which pipes the generated file to stdout. That will be resolved with later commits. Signed-off-by: Emil Velikov <[email protected]> Acked-by: Lionel Landwerlin <[email protected]> Acked-by: Vedran Miletić <[email protected]> Acked-by: Juha-Pekka Heikkila <[email protected]> Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_multisample_state.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_multisample_state.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_multisample_state.h b/src/mesa/drivers/dri/i965/brw_multisample_state.h
index db59af2affb..6cf324e561c 100644
--- a/src/mesa/drivers/dri/i965/brw_multisample_state.h
+++ b/src/mesa/drivers/dri/i965/brw_multisample_state.h
@@ -21,6 +21,9 @@
* IN THE SOFTWARE.
*/
+#ifndef BRW_MULTISAMPLE_STATE_H
+#define BRW_MULTISAMPLE_STATE_H
+
#include <stdint.h>
/**
@@ -104,3 +107,5 @@ static const uint32_t
brw_multisample_positions_16x[] = {
0xc75a7599, 0xb3dbad36, 0x2c42816e, 0x10eff408
};
+
+#endif /* BRW_MULTISAMPLE_STATE_H */