blob: 6931e8d21fa72cbd37077f214dbfb6da44919ab9 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _MATRIX_H
#define _MATRIX_H
#include <wlr/types/wlr_output.h>
void matrix_projection(float mat[static 9], int width, int height,
enum wl_output_transform transform);
#endif
|