mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-01 09:17:15 -04:00
0b8db42226
* start JSystem * JKRAram and JUTGamePad * started heap and thread * more JKernel * mostly finished JKernel * delete unused asm * JKRFileFinder * delete unused asm and match findNextFile * format * fix mtx_vec
16 lines
447 B
C
16 lines
447 B
C
#ifndef MTXVEC_H
|
|
#define MTXVEC_H
|
|
|
|
#include "dolphin/mtx/mtx.h"
|
|
#include "dolphin/mtx/vec.h"
|
|
#include "dolphin/types.h"
|
|
|
|
extern "C" {
|
|
void PSMTXMultVec(const Mtx matrix, const Vec* src, Vec* dst);
|
|
void PSMTXMultVecArray(const Mtx matrix, const Vec* src, Vec* dst, u32 count);
|
|
void PSMTXMultVecSR(const Mtx matrix, const Vec* src, Vec* dst);
|
|
void PSMTXMultVecArraySR(const Mtx matrix, const Vec* src, Vec* dst, u32 count);
|
|
}
|
|
|
|
#endif /* MTXVEC_H */
|