aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-11-21 06:32:59 -0800
committerChris Robinson <[email protected]>2010-11-21 06:32:59 -0800
commita7b4e0b5c5eefb8476836aad094035bd0a5cbcd5 (patch)
tree3a1d54115f2557e5540297625f20961b8b148e62 /OpenAL32
parentbbb45e326c049aef5b4d7e86021f365d206d8bb3 (diff)
Get rid of the device timer stuff
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 80d25e52..41189010 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -84,11 +84,6 @@ AL_API ALvoid AL_APIENTRY alUnmapDatabufferEXT(ALuint uiBuffer);
#define AL_LOOP_POINTS 0x2015
#endif
-#ifndef ALC_EXT_device_time
-#define ALC_EXT_device_time 1
-#define ALC_GET_TIME_EXT 0x314
-#define ALC_GET_TIME_RES_EXT 0x315
-#endif
#if defined(HAVE_STDINT_H)
#include <stdint.h>
@@ -279,8 +274,6 @@ typedef struct {
void (*StopCapture)(ALCdevice*);
void (*CaptureSamples)(ALCdevice*, void*, ALCuint);
ALCuint (*AvailableSamples)(ALCdevice*);
-
- ALuint64 (*GetTime)(ALCdevice*);
} BackendFuncs;
enum {
@@ -416,12 +409,6 @@ struct ALCdevice_struct
ALCcontext **Contexts;
ALuint NumContexts;
- // Number of samples rendered by this device
- ALuint64 SamplesPlayed;
-
- // Precision of this device's timing
- ALuint64 TimeRes;
-
BackendFuncs *Funcs;
void *ExtraData; // For the backend's use