mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-18 07:04:07 +00:00
fix things
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@542 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
28
src/math/math_internal.h
Normal file
28
src/math/math_internal.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/* $Id$ */
|
||||
|
||||
#ifndef __MW_LOWLEVEL_INTERNAL_MATH_H__
|
||||
#define __MW_LOWLEVEL_INTERNAL_MATH_H__
|
||||
|
||||
#include <Mw/LowLevelMath.h>
|
||||
|
||||
struct _MwLLMathVTable {
|
||||
void (*Add)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*Multiply)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*Sub)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*Reciprocal)(MwLLVec* a, MwLLVec* out);
|
||||
void (*SquareRoot)(MwLLVec* a, MwLLVec* out);
|
||||
void (*And)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*Or)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*ShiftRight)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*ShiftLeft)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*Equal)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*GreaterThen)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void (*LesserThen)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
};
|
||||
|
||||
typedef struct _MwLLMathVTable MwLLMathVTable;
|
||||
|
||||
MwLLMathVTable** default_multi_table(void);
|
||||
void mmx_apply(MwLLMathVTable**);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user