Use a standard mutex for the event callback lock
[openal-soft.git] / common / vecmat.cpp
blobccb9ad9fed5dbff72dc2ee71cb0744650c369916
2 #include "config.h"
4 #include "vecmat.h"
7 const aluMatrixf aluMatrixf::Identity{{
8 { 1.0f, 0.0f, 0.0f, 0.0f },
9 { 0.0f, 1.0f, 0.0f, 0.0f },
10 { 0.0f, 0.0f, 1.0f, 0.0f },
11 { 0.0f, 0.0f, 0.0f, 1.0f },
12 }};