diff options
author | Chris Robinson <[email protected]> | 2019-08-05 12:15:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-05 12:15:14 -0700 |
commit | d24401c3f3fbed3f0aa7fd5e4777e0d83797fa10 (patch) | |
tree | 292d6a7d4e928c70ee6785ece26d04bcb2d1b44b /alc/alcontext.h | |
parent | 3154a915b1f811416f3c29c6af0c0f13fc3acd3e (diff) |
Move the meters per unit property to the listener
Diffstat (limited to 'alc/alcontext.h')
-rw-r--r-- | alc/alcontext.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/alc/alcontext.h b/alc/alcontext.h index 70215e9c..f30a4bd0 100644 --- a/alc/alcontext.h +++ b/alc/alcontext.h @@ -48,7 +48,6 @@ struct ALcontextProps { ALfloat SpeedOfSound; ALboolean SourceDistanceModel; DistanceModel mDistanceModel; - ALfloat MetersPerUnit; std::atomic<ALcontextProps*> next; }; @@ -102,7 +101,6 @@ struct ALCcontext : public al::intrusive_ref<ALCcontext> { ALfloat mDopplerFactor{1.0f}; ALfloat mDopplerVelocity{1.0f}; ALfloat mSpeedOfSound{SPEEDOFSOUNDMETRESPERSEC}; - ALfloat mMetersPerUnit{AL_DEFAULT_METERS_PER_UNIT}; std::atomic_flag mPropsClean; std::atomic<bool> mDeferUpdates{false}; |