Skip to content

Instantly share code, notes, and snippets.

View LibRaw's full-sized avatar

LibRaw LLC LibRaw

View GitHub Profile
#include <immintrin.h>
#include <intrin.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
union Mat44 {
float m[4][4];
__m128 row[4];
};