2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_RENDER_MATRIX_H
|
|
|
|
#define WLR_RENDER_MATRIX_H
|
2017-06-08 03:35:07 +02:00
|
|
|
|
2017-08-06 11:38:40 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-06-08 03:35:07 +02:00
|
|
|
void wlr_matrix_identity(float (*output)[16]);
|
|
|
|
void wlr_matrix_translate(float (*output)[16], float x, float y, float z);
|
|
|
|
void wlr_matrix_scale(float (*output)[16], float x, float y, float z);
|
|
|
|
void wlr_matrix_rotate(float (*output)[16], float radians);
|
2017-06-08 21:52:42 +02:00
|
|
|
void wlr_matrix_mul(const float (*x)[16], const float (*y)[16], float (*product)[16]);
|
2017-06-08 03:35:07 +02:00
|
|
|
|
2017-08-06 11:38:40 +02:00
|
|
|
enum wl_output_transform;
|
2017-11-30 23:58:12 +01:00
|
|
|
void wlr_matrix_transform(float mat[static 16],
|
|
|
|
enum wl_output_transform transform);
|
2017-08-08 18:02:14 +02:00
|
|
|
void wlr_matrix_texture(float mat[static 16], int32_t width, int32_t height,
|
2017-08-06 11:38:40 +02:00
|
|
|
enum wl_output_transform transform);
|
|
|
|
|
2017-06-08 03:35:07 +02:00
|
|
|
#endif
|