mirror of
https://github.com/zeldaret/tp
synced 2026-05-26 15:46:02 -04:00
8fd9f2ab5d
* 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 */
|