panfrost/midgard: Refactor schedule/emit pipeline
[mesa.git] / src / gallium / drivers / panfrost / midgard / cppwrap.cpp
1 struct exec_list;
2
3 bool do_mat_op_to_vec(struct exec_list *instructions);
4
5 extern "C" {
6 bool c_do_mat_op_to_vec(struct exec_list *instructions) {
7 return do_mat_op_to_vec(instructions);
8 }
9 };