summaryrefslogtreecommitdiffstats
path: root/src/panfrost/midgard/cppwrap.cpp
blob: cf2ca3b7a11dd4cdf19faf54aa569d46bc0a0d24 (plain)
1
2
3
4
5
6
7
8
9
struct exec_list;

bool do_mat_op_to_vec(struct exec_list *instructions);

extern "C" {
	bool c_do_mat_op_to_vec(struct exec_list *instructions) {
		return do_mat_op_to_vec(instructions);
	}
};