cglm icon indicating copy to clipboard operation
cglm copied to clipboard

Support for unaligned memory

Open recp opened this issue 9 years ago • 0 comments

Currently all mat4 and vec4 operations need memory to aligned 16 because of SSE/AVX instructions, this library may support unaligned memory operations, this would beuseful when using library on non-library type e.g. float[4][4]:

for instance: needs aligned:

glm_mat4_mul(  )

no aligment required:

glm_mat4u_mul(  )

recp avatar Nov 22 '16 12:11 recp