From: Tobias Leich Date: Wed, 24 Mar 2010 19:28:30 +0000 (+0100) Subject: Constants exported by default now (again) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=sdlgit%2FSDL-Site.git;a=commitdiff_plain;h=3549ee6a3a96e3e1834ff3373567ab631acd42cc Constants exported by default now (again) --- diff --git a/pages/SDL-Audio.html-inc b/pages/SDL-Audio.html-inc index fcfe145..4a74324 100644 --- a/pages/SDL-Audio.html-inc +++ b/pages/SDL-Audio.html-inc @@ -34,11 +34,11 @@

CONSTANTS

Top

-

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

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

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

+
 use SDL::Audio ();
 
 
-

or access them directly:

+

and access them directly:

 SDL::Audio::AUDIO_S16SYS;
 
 
diff --git a/pages/SDL-CD.html-inc b/pages/SDL-CD.html-inc index fbcb7b5..370e1e1 100644 --- a/pages/SDL-CD.html-inc +++ b/pages/SDL-CD.html-inc @@ -40,7 +40,7 @@

SYNOPSIS

Top

-
 use SDL ':init';
+
 use SDL;
  use SDL::CDROM;
  use SDL::CD;
 
@@ -64,11 +64,11 @@
 

CONSTANTS

Top

-

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

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

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

+
 use SDL::CD ();
 
 
-

or access them directly:

+

and access them directly:

 SDL::CD::CD_TRAYEMPTY;
 
 
diff --git a/pages/SDL-CDTrack.html-inc b/pages/SDL-CDTrack.html-inc index 22001e8..e33fcb7 100644 --- a/pages/SDL-CDTrack.html-inc +++ b/pages/SDL-CDTrack.html-inc @@ -30,7 +30,7 @@

SYNOPSIS

Top

-
 use SDL ':init';
+
 use SDL;
  use SDL::CDROM;
  use SDL::CD ':status';
  use SDL::CDTrack;
@@ -57,11 +57,11 @@
 

CONSTANTS

Top

-

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

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

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

+
 use SDL::CDTrack ();
 
 
-

or access them directly:

+

and access them directly:

 SDL::CDTrack::SDL_AUDIO_TRACK;
 
 
diff --git a/pages/SDL-Events.html-inc b/pages/SDL-Events.html-inc index 1a09919..6f5c25f 100644 --- a/pages/SDL-Events.html-inc +++ b/pages/SDL-Events.html-inc @@ -93,11 +93,11 @@

CONSTANTS

Top

-

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

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

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

+
 use SDL::Events ();
 
 
-

or access them directly:

+

and access them directly:

 SDL::Events::SDL_ACTIVEEVENT;
 
 
diff --git a/pages/SDL-Mixer.html-inc b/pages/SDL-Mixer.html-inc index df066d5..71f387b 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;
 
 
diff --git a/pages/SDL-Pango.html-inc b/pages/SDL-Pango.html-inc index 2e36d02..b771463 100644 --- a/pages/SDL-Pango.html-inc +++ b/pages/SDL-Pango.html-inc @@ -74,15 +74,11 @@

CONSTANTS

Top

-

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

-
 use SDL::Pango ':direction';
+

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

+
 use SDL::Pango ();
 
 
-

or

-
 use SDL::Pango ':all';
-
-
-

or access them directly:

+

and access them directly:

 SDL::Pango::SDLPANGO_DIRECTION_NEUTRAL;
 
 
diff --git a/pages/SDL-Surface.html-inc b/pages/SDL-Surface.html-inc index 5de90d2..da88a7d 100644 --- a/pages/SDL-Surface.html-inc +++ b/pages/SDL-Surface.html-inc @@ -71,15 +71,11 @@

CONSTANTS

Top

-

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

-
 use SDL::Video ':surface';
+

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

+
 use SDL::Video ();
 
 
-

or

-
 use SDL::Video ':all';
-
-
-

or access them directly:

+

and access them directly:

 SDL::Video::SDL_SWSURFACE;
 
 
diff --git a/pages/SDL-TTF.html-inc b/pages/SDL-TTF.html-inc index 915de49..6fca4a9 100644 --- a/pages/SDL-TTF.html-inc +++ b/pages/SDL-TTF.html-inc @@ -111,15 +111,14 @@

CONSTANTS

Top

-

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

-
 use SDL::TTF qw(:hinting :style);
+

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

+
 use SDL::TTF ();
+
+
 
-
-

or

-
 use SDL::TTF ':all';
 
 
-

or access them directly:

+

and access them directly:

 SDL::TTF::TTF_HINTING_NORMAL;
 
 
diff --git a/pages/SDL-Video.html-inc b/pages/SDL-Video.html-inc index 32ebba2..91d483a 100644 --- a/pages/SDL-Video.html-inc +++ b/pages/SDL-Video.html-inc @@ -129,11 +129,11 @@

CONSTANTS

Top

-

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

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

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

+
 use SDL::Video ();
 
 
-

or access them directly:

+

and access them directly:

 SDL::Video::SDL_SWSURFACE;
 
 
diff --git a/pages/documentation.html-inc b/pages/documentation.html-inc index d4437f8..74908b5 100644 --- a/pages/documentation.html-inc +++ b/pages/documentation.html-inc @@ -1,2 +1,2 @@
-

Documentation (latest development branch)

Core
thumbSDL- Simple DirectMedia Layer for Perl
thumbSDL::Time- a SDL perl extension for managing timers.
Audio
thumbSDL::Audio- SDL Bindings for Audio
Structure
thumbSDL::AudioCVT- Audio Conversion Structure
thumbSDL::AudioSpec- SDL Bindings for structure SDL::AudioSpec
CDROM
thumbSDL::CDROM- SDL Bindings for the CDROM device
Structure
thumbSDL::CD- SDL Bindings for structure SDL_CD
thumbSDL::CDTrack- SDL Bindings for structure SDL_CDTrack
Events
thumbSDL::Events- Bindings to the Events Category in SDL API
Structure
thumbSDL::Event- General event structure
Joystick
thumbSDL::Joystick- SDL Bindings for the Joystick device
Mouse
thumbSDL::Mouse- SDL Bindings for the Mouse device
Structure
thumbSDL::Cursor- Mouse cursor structure
Structure
thumbSDL::Version- SDL Bindings for structure SDL_Version
Video
thumbSDL::Video- Bindings to the video category in SDL API
Structure
thumbSDL::Color- Format independent color description
thumbSDL::Overlay- YUV Video overlay
thumbSDL::Palette- Color palette for 8-bit pixel formats
thumbSDL::PixelFormat- Stores surface format information
thumbSDL::Rect- Defines a rectangular area
thumbSDL::Surface- Graphic surface structure.
thumbSDL::VideoInfo- Video Target Information

Cookbook
thumbSDL::Cookbook
thumbSDL::Cookbook::PDL

Extension
thumbSDL::App- a SDL perl extension

GFX
thumbSDL::GFX::Framerate- framerate calculating functions
thumbSDL::GFX::Primitives- basic drawing functions
Structure
thumbSDL::GFX::FPSManager- data structure used by SDL::GFX::Framerate

Image
thumbSDL::Image- Bindings for the SDL_Image library

Mixer
thumbSDL::Mixer- Sound and music functions
thumbSDL::Mixer::Channels- SDL::Mixer channel functions and bindings
thumbSDL::Mixer::Effects- sound effect functions
thumbSDL::Mixer::Groups- Audio channel group functions
thumbSDL::Mixer::Music- functions for music
thumbSDL::Mixer::Samples- functions for loading sound samples
Structure
thumbSDL::Mixer::MixChunk- SDL Bindings for structure SDL_MixChunk
thumbSDL::Mixer::MixMusic- SDL Bindings for structure SDL_MixMusic

Pango
thumbSDL::Pango- Text rendering engine
Structure
thumbSDL::Pango::Context- Context object for SDL::Pango
TODO
Core
MultiThread
thumbSDL::MultiThread- Bindings to the MultiThread category in SDL API
Structure
thumbSDL::RWOps- SDL Bindings to SDL_RWOPs
GFX
thumbSDL::GFX::BlitFunc- blitting functions
thumbSDL::GFX::ImageFilter- image filtering functions
thumbSDL::GFX::Rotozoom- rotation and zooming functions for surfaces

TTF
thumbSDL::TTF- True Type Font functions (libfreetype)
Structure
thumbSDL::TTF::Font- Font object type for SDL_ttf

Tutorials
thumbSDL::Tutorial- introduction to Perl SDL
thumbSDL::Tutorial::Animation
thumbSDL::Tutorial::Images
thumbSDL::Tutorial::LunarLander- a small tutorial on Perl SDL
thumbSDL::Tutorial::Pong- Get started pong
thumbSDL::Tutorial::Tetris- Let's Make Tetris

UNCATEGORIZED
thumbSDL::Credits
thumbSDL::Font- a SDL perl extension
thumbSDL::Game::Palette- a perl extension
thumbSDL::MPEG- a SDL perl extension
thumbSDL::Music- a perl extension
thumbSDL::OpenGL- a perl extension
thumbSDL::SFont- a perl extension
thumbSDL::SMPEG- a SDL perl extension
thumbSDL::Sound- a perl extension
thumbSDL::TTFont- a SDL perl extension
thumbSDL::Tool::Font- a perl extension
thumbSDL::Tool::Graphic
+

Documentation (latest development branch)

Core
thumbSDL- Simple DirectMedia Layer for Perl
thumbSDL::Time- a SDL perl extension for managing timers.
Audio
thumbSDL::Audio- SDL Bindings for Audio
Structure
thumbSDL::AudioCVT- Audio Conversion Structure
thumbSDL::AudioSpec- SDL Bindings for structure SDL::AudioSpec
CDROM
thumbSDL::CDROM- SDL Bindings for the CDROM device
Structure
thumbSDL::CD- SDL Bindings for structure SDL_CD
thumbSDL::CDTrack- SDL Bindings for structure SDL_CDTrack
Events
thumbSDL::Events- Bindings to the Events Category in SDL API
Structure
thumbSDL::Event- General event structure
Joystick
thumbSDL::Joystick- SDL Bindings for the Joystick device
Mouse
thumbSDL::Mouse- SDL Bindings for the Mouse device
Structure
thumbSDL::Cursor- Mouse cursor structure
Structure
thumbSDL::Version- SDL Bindings for structure SDL_Version
Video
thumbSDL::Video- Bindings to the video category in SDL API
Structure
thumbSDL::Color- Format independent color description
thumbSDL::Overlay- YUV Video overlay
thumbSDL::Palette- Color palette for 8-bit pixel formats
thumbSDL::PixelFormat- Stores surface format information
thumbSDL::Rect- Defines a rectangular area
thumbSDL::Surface- Graphic surface structure.
thumbSDL::VideoInfo- Video Target Information

Cookbook
thumbSDL::Cookbook
thumbSDL::Cookbook::PDL

Extension
thumbSDL::App- a SDL perl extension

GFX
thumbSDL::GFX::Framerate- framerate calculating functions
thumbSDL::GFX::Primitives- basic drawing functions
Structure
thumbSDL::GFX::FPSManager- data structure used by SDL::GFX::Framerate

Image
thumbSDL::Image- Bindings for the SDL_Image library

Mixer
thumbSDL::Mixer- Sound and music functions
thumbSDL::Mixer::Channels- SDL::Mixer channel functions and bindings
thumbSDL::Mixer::Effects- sound effect functions
thumbSDL::Mixer::Groups- Audio channel group functions
thumbSDL::Mixer::Music- functions for music
thumbSDL::Mixer::Samples- functions for loading sound samples
Structure
thumbSDL::Mixer::MixChunk- SDL Bindings for structure SDL_MixChunk
thumbSDL::Mixer::MixMusic- SDL Bindings for structure SDL_MixMusic

Pango
thumbSDL::Pango- Text rendering engine
Structure
thumbSDL::Pango::Context- Context object for SDL::Pango
TODO
Core
MultiThread
thumbSDL::MultiThread- Bindings to the MultiThread category in SDL API
Structure
thumbSDL::RWOps- SDL Bindings to SDL_RWOPs
GFX
thumbSDL::GFX::BlitFunc- blitting functions
thumbSDL::GFX::ImageFilter- image filtering functions
thumbSDL::GFX::Rotozoom- rotation and zooming functions for surfaces

TTF
thumbSDL::TTF- True Type Font functions (libfreetype)
Structure
thumbSDL::TTF::Font- Font object type for SDL_ttf

Tutorials
thumbSDL::Tutorial- introduction to Perl SDL
thumbSDL::Tutorial::Animation
thumbSDL::Tutorial::Images
thumbSDL::Tutorial::LunarLander- a small tutorial on Perl SDL
thumbSDL::Tutorial::Pong- Get started pong
thumbSDL::Tutorial::Tetris- Let's Make Tetris

UNCATEGORIZED
thumbSDL::Credits
thumbSDL::Font- a SDL perl extension
thumbSDL::Game::Palette- a perl extension
thumbSDL::MPEG- a SDL perl extension
thumbSDL::Music- a perl extension
thumbSDL::OpenGL- a perl extension
thumbSDL::SFont- a perl extension
thumbSDL::SMPEG- a SDL perl extension
thumbSDL::Sound- a perl extension
thumbSDL::TTFont- a SDL perl extension
thumbSDL::Tool::Font- a perl extension
thumbSDL::Tool::Graphic