Making OpenTK Matrix multiplications faster – An optimisation exercise in C#

Real-time graphics code is one of those areas of programming where you can never get enough performance. One such scenario was in an OpenGL application I’d been working on recently, where there was a lot of matrix multiplications going on in the inner core loop of the application. I’d been using the excellent OpenTK library …