X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pages%2FSDL-Mixer.html-inc;h=68bd8f0ebb2854fc5c631a87ce9d277739f3bc8f;hb=a43a516b1f3521ac3984af2bcbf57e767bca01fc;hp=df066d5a236d3ea867326477e42b57c66e8a9c92;hpb=793cad595fa968121607bef381fcddd84d599a77;p=sdlgit%2FSDL-Site.git diff --git a/pages/SDL-Mixer.html-inc b/pages/SDL-Mixer.html-inc index df066d5..68bd8f0 100644 --- a/pages/SDL-Mixer.html-inc +++ b/pages/SDL-Mixer.html-inc @@ -33,11 +33,11 @@

CONSTANTS

Top

-

The constants are not exported by default. You can export them into your namespace by doing:

-
 use SDL::Mixer ':all';
+

The constants are exported by default. You can avoid this by doing:

+
 use SDL::Mixer ();
 
 
-

or access them directly:

+

and access them directly:

 SDL::Mixer::MIX_DEFAULT_FREQUENCY;
 
 
@@ -49,7 +49,7 @@ MIX_INIT_OGG
-

Export tag: ':default'

+

Export tag: ':defaults'

 MIX_CHANNELS
  MIX_DEFAULT_FORMAT
  MIX_DEFAULT_FREQUENCY
@@ -76,6 +76,25 @@
  MUS_MP3_FLAC
 
 
+

Export tag: ':format'

+
 AUDIO_U8
+ AUDIO_S8
+ AUDIO_U16LSB
+ AUDIO_S16LSB
+ AUDIO_U16MSB
+ AUDIO_S16MSB
+ AUDIO_U16
+ AUDIO_S16 
+ AUDIO_U16SYS
+ AUDIO_S16SYS
+
+
+

Export tag: ':status'

+
 SDL_AUDIO_STOPPED
+ SDL_AUDIO_PLAYING
+ SDL_AUDIO_PAUSED
+
+

DESCRIPTION

Top