1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-18 13:20:57 +00:00

Merge pull request from lioncash/mat

matrix: Fix a misnamed function prototype
This commit is contained in:
Twinaphex 2014-09-06 06:31:01 +02:00
commit e37122f5fa

@ -25,7 +25,7 @@ typedef struct math_matrix
#define MAT_ELEM(mat, r, c) ((mat).data[4 * (c) + (r)])
void matrix_load_identity(math_matrix *mat);
void matrix_identity(math_matrix *mat);
void matrix_transpose(math_matrix *out, const math_matrix *in);
void matrix_rotate_x(math_matrix *mat, float rad);