SSE 向量乘矩阵
摘要:
struct Vector4 { float x, y, z, w; }; struct Matrix { float _M[4][4]; }; void SSE_VectorMultiplyMatrix(const Vector4& v,const Matrix& m1,Vector4& ret) 阅读全文
posted @ 2017-02-23 15:46 草丛有头猪 阅读(391) 评论(1) 推荐(0) 编辑