Files
tp/include/dolphin/mtx/mtxvec.h
T

16 lines
447 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef MTXVEC_H
#define MTXVEC_H
2021-05-03 02:03:24 +02:00
#include "dolphin/mtx/mtx.h"
#include "dolphin/mtx/vec.h"
2021-03-28 22:49:05 +02:00
#include "dolphin/types.h"
2021-05-03 02:03:24 +02:00
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);
}
2021-03-28 22:49:05 +02:00
#endif /* MTXVEC_H */