mirror of
https://github.com/zeldaret/ss
synced 2026-08-17 21:33:05 -04:00
17 lines
337 B
C
17 lines
337 B
C
#ifndef RVL_SDK_MTX_MTX44_H
|
|
#define RVL_SDK_MTX_MTX44_H
|
|
#include "rvl/MTX/mtx.h"
|
|
#include <common.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void C_MTXFrustum(Mtx44, f32, f32, f32, f32, f32, f32);
|
|
void C_MTXPerspective(Mtx44, f32, f32, f32, f32);
|
|
void C_MTXOrtho(Mtx44, f32, f32, f32, f32, f32, f32);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|