/SIMDforMatrix_Multiplication

SIMD intrinsics for C++ optimization. Game and engine programmers can use use SIMD library for developing low latency systems. It is so obvious to calculate T*R*S for every update to render, these multiplication order load takes so much head load on the compiler as each matrix is 4x4. Now we can speed up this this using SIMD intrinsics. This project shows how to implement these SIMD on matrices of different operations along with optimizing techniques of RVO's and implicit conversions.

Primary LanguageC++

This repository is not active