From e79d9bdd1a6aa6d6d9852bf5a380a8cd01cbc315 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 17 Nov 2018 23:21:37 -0800 Subject: Move the vector and matrix declarations to a separate header --- Alc/alu.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Alc/alu.cpp') diff --git a/Alc/alu.cpp b/Alc/alu.cpp index 1895b777..2a6dcfe0 100644 --- a/Alc/alu.cpp +++ b/Alc/alu.cpp @@ -56,13 +56,6 @@ ALfloat ZScale = 1.0f; /* Force default speed of sound for distance-related reverb decay. */ ALboolean OverrideReverbSpeedOfSound = AL_FALSE; -const aluMatrixf IdentityMatrixf = {{ - { 1.0f, 0.0f, 0.0f, 0.0f }, - { 0.0f, 1.0f, 0.0f, 0.0f }, - { 0.0f, 0.0f, 1.0f, 0.0f }, - { 0.0f, 0.0f, 0.0f, 1.0f }, -}}; - static void ClearArray(ALfloat f[MAX_OUTPUT_CHANNELS]) { -- cgit v1.2.3