aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-04-19 21:46:29 -0700
committerChris Robinson <[email protected]>2012-04-19 21:46:29 -0700
commit125b743e5cd9b37420e4b0d57e0c3f6502784f2f (patch)
tree0a875b9b6587a8c0d2fc24de7f030d81f5d9cefa /OpenAL32/Include
parent9a3eb397f4e39b293b6dfd3f539161fde3c70977 (diff)
Remove hungarian notation from sources
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alSource.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index cabf404e..841f0498 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -30,21 +30,21 @@ typedef struct ALbufferlistitem
typedef struct ALsource
{
- volatile ALfloat flPitch;
- volatile ALfloat flGain;
- volatile ALfloat flOuterGain;
- volatile ALfloat flMinGain;
- volatile ALfloat flMaxGain;
- volatile ALfloat flInnerAngle;
- volatile ALfloat flOuterAngle;
- volatile ALfloat flRefDistance;
- volatile ALfloat flMaxDistance;
- volatile ALfloat flRollOffFactor;
- volatile ALfloat vPosition[3];
- volatile ALfloat vVelocity[3];
- volatile ALfloat vOrientation[3];
- volatile ALboolean bHeadRelative;
- volatile ALboolean bLooping;
+ volatile ALfloat Pitch;
+ volatile ALfloat Gain;
+ volatile ALfloat OuterGain;
+ volatile ALfloat MinGain;
+ volatile ALfloat MaxGain;
+ volatile ALfloat InnerAngle;
+ volatile ALfloat OuterAngle;
+ volatile ALfloat RefDistance;
+ volatile ALfloat MaxDistance;
+ volatile ALfloat RollOffFactor;
+ volatile ALfloat Position[3];
+ volatile ALfloat Velocity[3];
+ volatile ALfloat Orientation[3];
+ volatile ALboolean HeadRelative;
+ volatile ALboolean Looping;
volatile enum DistanceModel DistanceModel;
volatile ALboolean DirectChannels;
@@ -81,7 +81,7 @@ typedef struct ALsource
ALenum OffsetType;
// Source Type (Static, Streaming, or Undetermined)
- volatile ALint lSourceType;
+ volatile ALint SourceType;
ALuint NumChannels;
ALuint SampleSize;