mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 15:48:36 +02:00
intel/compiler: consistently use ifndef guards over pragma once
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Acked-by: Vedran Miletić <vedran@miletic.net> Acked-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net>
This commit is contained in:
parent
868324419e
commit
2438c0a236
8 changed files with 31 additions and 5 deletions
|
|
@ -25,7 +25,6 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef BRW_CFG_H
|
||||
#define BRW_CFG_H
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef BRW_COMPILER_H
|
||||
#define BRW_COMPILER_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "common/gen_device_info.h"
|
||||
|
|
@ -1055,3 +1056,5 @@ brw_stage_has_packed_dispatch(const struct gen_device_info *devinfo,
|
|||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* BRW_COMPILER_H */
|
||||
|
|
|
|||
|
|
@ -21,6 +21,11 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef BRW_DEAD_CONTROL_FLOW_H
|
||||
#define BRW_DEAD_CONTROL_FLOW_H
|
||||
|
||||
#include "brw_shader.h"
|
||||
|
||||
bool dead_control_flow_eliminate(backend_shader *s);
|
||||
|
||||
#endif /* BRW_DEAD_CONTROL_FLOW_H */
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef BRW_FS_H
|
||||
#define BRW_FS_H
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "brw_ir_fs.h"
|
||||
|
|
@ -498,3 +499,5 @@ fs_reg setup_imm_df(const brw::fs_builder &bld,
|
|||
|
||||
enum brw_barycentric_mode brw_barycentric_mode(enum glsl_interp_mode mode,
|
||||
nir_intrinsic_op op);
|
||||
|
||||
#endif /* BRW_FS_H */
|
||||
|
|
|
|||
|
|
@ -25,6 +25,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef BRW_FS_LIVE_VARIABLES_H
|
||||
#define BRW_FS_LIVE_VARIABLES_H
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "util/bitset.h"
|
||||
|
||||
|
|
@ -113,3 +116,5 @@ protected:
|
|||
};
|
||||
|
||||
} /* namespace brw */
|
||||
|
||||
#endif /* BRW_FS_LIVE_VARIABLES_H */
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef BRW_NIR_H
|
||||
#define BRW_NIR_H
|
||||
|
||||
#include "brw_reg.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
|
|
@ -152,3 +153,5 @@ bool brw_nir_opt_peephole_ffma(nir_shader *shader);
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BRW_NIR_H */
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef BRW_SHADER_H
|
||||
#define BRW_SHADER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "brw_reg.h"
|
||||
|
|
@ -288,3 +289,5 @@ unsigned get_atomic_counter_op(nir_intrinsic_op op);
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BRW_SHADER_H */
|
||||
|
|
|
|||
|
|
@ -25,6 +25,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef BRW_VEC4_LIVE_VARIABLES_H
|
||||
#define BRW_VEC4_LIVE_VARIABLES_H
|
||||
|
||||
#include "util/bitset.h"
|
||||
#include "brw_vec4.h"
|
||||
|
||||
|
|
@ -110,3 +113,5 @@ var_from_reg(const simple_allocator &alloc, const dst_reg ®,
|
|||
}
|
||||
|
||||
} /* namespace brw */
|
||||
|
||||
#endif /* BRW_VEC4_LIVE_VARIABLES_H */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue