mirror of
https://github.com/zeldaret/ss
synced 2026-08-10 03:05:33 -04:00
23 lines
440 B
C
23 lines
440 B
C
#ifndef RVL_SDK_MTX_MTX44_H
|
|
#define RVL_SDK_MTX_MTX44_H
|
|
#include "common.h"
|
|
#include "rvl/MTX/mtx.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);
|
|
|
|
#define MTXFrustum C_MTXFrustum
|
|
#define MTXPerspective C_MTXPerspective
|
|
#define MTXOrtho C_MTXOrtho
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|