forked from pyrite-dev/milsko
add MWDECL
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@564 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
ab8e44a55d
commit
58eb313aa7
1 changed files with 13 additions and 13 deletions
|
|
@ -56,7 +56,7 @@ struct _MwLLVec {
|
|||
MwLLVecUnion un;
|
||||
};
|
||||
|
||||
MwLLVec _MwLLVecCreateGeneric(int ty, ...);
|
||||
MWDECL MwLLVec _MwLLVecCreateGeneric(int ty, ...);
|
||||
|
||||
#define MwLLVecU8x8(a, b, c, d, e, f, g, h) _MwLLVecCreateGeneric(_MwLLVecTypeU8x8, a, b, c, d, e, f, g, h)
|
||||
#define MwLLVecU16x4(a, b, c, d) _MwLLVecCreateGeneric(_MwLLVecTypeU16x4, a, b, c, d)
|
||||
|
|
@ -65,17 +65,17 @@ MwLLVec _MwLLVecCreateGeneric(int ty, ...);
|
|||
#define MwLLVecI16x4(a, b, c, d) _MwLLVecCreateGeneric(_MwLLVecTypeI16x4, a, b, c, d)
|
||||
#define MwLLVecI32x2(a, b) _MwLLVecCreateGeneric(_MwLLVecTypeI32x2, a, b)
|
||||
|
||||
void MwLLMathAdd(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathMultiply(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathSub(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathReciprocal(MwLLVec* a, MwLLVec* out);
|
||||
void MwLLMathSquareRoot(MwLLVec* a, MwLLVec* out);
|
||||
void MwLLMathAnd(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathOr(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathShiftRight(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathShiftLeft(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathEqual(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathGreaterThen(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
void MwLLMathLesserThen(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathAdd(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathMultiply(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathSub(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathReciprocal(MwLLVec* a, MwLLVec* out);
|
||||
MWDECL void MwLLMathSquareRoot(MwLLVec* a, MwLLVec* out);
|
||||
MWDECL void MwLLMathAnd(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathOr(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathShiftRight(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathShiftLeft(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathEqual(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathGreaterThen(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
MWDECL void MwLLMathLesserThen(MwLLVec* a, MwLLVec* b, MwLLVec* out);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue