ir3: C++-proofing

Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21931>
This commit is contained in:
Danylo Piliaiev
2023-03-13 14:52:44 +01:00
committed by Marge Bot
parent 485bdae420
commit 1510b97c70
2 changed files with 8 additions and 0 deletions

View File

@@ -35,6 +35,8 @@
#include "ir3.h"
BEGINC;
struct ir3_ra_reg_set;
struct ir3_shader;
@@ -328,4 +330,6 @@ ir3_debug_print(struct ir3 *ir, const char *when)
}
}
ENDC;
#endif /* IR3_COMPILER_H_ */

View File

@@ -33,6 +33,8 @@
#include "ir3_shader.h"
BEGINC;
bool ir3_nir_apply_trig_workarounds(nir_shader *shader);
bool ir3_nir_lower_imul(nir_shader *shader);
bool ir3_nir_lower_io_offsets(nir_shader *shader);
@@ -131,4 +133,6 @@ is_intrinsic_load(nir_intrinsic_op op)
}
}
ENDC;
#endif /* IR3_NIR_H_ */