1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
Revision history for Perl extension SDL_perl.
* Apr 03 2003 v1.20.3 Tels <http://bloodgate.com/perl/sdl/>
!! This is not an official release, but my private release. Use at your !!
!! own risk! Send comments to me or the sdlperl mailing list. !!
- moved some files to win32/ dir, renamed readme.win32.txt to REAME.win32
- removed test.pl (it was quite pointless, testing the already inst. vers.)
- fixed GL_BTYE to GL_UNSIGNED_BYTE in glCallListsScalar (just to be sure)
- support for SDL_BUTTON_WHEELUP and SDL_BUTTON_WHEELDOWN
- added SDL_GL_STEREO (not sure if it works)
- added the following OpenGL functions:
* glDeleteLists(base, count)
* $scalar = glReadPixels(x,y,width,height,type,format)
* ($r,$g,$b,$a) = glReadPixel(x,y);
* glLightModel() (supports all 4 modi) (fixed on 2003-04-03)
- added SDL::OpenGL::SaveBMP($file,$w,$h,$bpp,$data);
- incorporated all the win32 changes from Wayne Keenan, thanx!
This includes critical win32 patches never released via the 'official'
release. Here is a list of the win32 changes:
- makefile.pl * fixed to identify Win32 platform correctly
- Makefile.win32 * fixed syntax errors taken out of
* fixed lib list problem
* other fixes...
* made things f*cking 'strict'
- setenv.bat * has a fairly full set of default libs to look for (well,
mine)
- SDL_perl.xs: * on WIN32 smpeg/smpeg.h is 'known'* as smpeg.h
*(well, in the 'make it up' any old way sense)
* SDL_sound.h was not getting included
- Opengl.xs: * on WIN32 SDL_opengl.h is included if HAVE_GL or HAVE_GLU
is defined
* changes var names 'near' & 'far'
as they are keywords (memory models) in MS VC++
* NURBS support is removed unless GL_HAS_NURBS is defined
(MS GL 1.1 (vc.6) doesn't have it, does 7.0 anyone?)
* The follwing GL functions will only be included if the
GL implementation supports version 1.3:
(not checked if one could get away with 1.2 for any)
glActiveTextureARB
glBlendEquation
glColorSubTable
glColorTable
glColorTableParameterfv
glConvolutionFilter1D
glConvolutionFilter2D
glConvolutionParameterfv
glConvolutionParameteri
glCopyColorSubTable
glCopyColorTable
glCopyConvolutionFilter1D
glCopyConvolutionFilter2D
glCopyTexSubImage3D
glDrawRangeElements
glGetHistogram
glGetMinmax
glHistogram
glMinmax
glMultiTexCoord4dARB
glResetHistogram
glResetMinmax
glSeparableFilter2D
glTexImage3D
glTexSubImage3D
- added Win32 binary release creation support (uses
http://www.nullsoft.com/free/nsis/)
* release.pl (very messy build script)
* sdlperl.nsi.env (scipt used as template for release.pl)
- added readme.win32.txt
* Mar 21 2003 v1.20.2 Tels <http://bloodgate.com/perl/sdl/>
!! This is not an official release, but my private release. Use at your !!
!! own risk! Send comments to me or the sdlperl mailing list. !!
- fixed the testscripts to use the blib/lib and blib/arch directories
(otherwise they use the already installed version to run the tests, which
fails)
- "fixed" the constant exporting back to be v1.20.0 compatible
- added more OpenGL constants (all in my /usr/include/GL/GL.h file)
- fixed glCallLists() so that it:
+ works (did drop last element)
+ does no longer require the (unused anyway) type parameter.
+ Added doc for it in OpenGL.pm
- added glCallListsScalar() which is _much_ faster if your data is already
byte-packed into a scalar string, plus doc for it
- added opengl.t
- added patches directory
- debug is now by default off. If you wish to use debug, compile
with debug flags and also set $SDL::Debug to 1
* Mar 13 2003 David J. Goehrig <dave@sdlperl.org>
- cleaned up OpenGL constants exportation
- fixed glColor alpha
- fixed all tests & the causes of failure
- fixed TTFont.pm color bug
- fixed SDL::Tool::Graphic
* Mar 11 2003 David J. Goehrig <dave@sdlperl.org>
- changed USE_THREAD support because perl5.8 usually builds with it
- added SDL::Constants & SDL::OpenGL::Constants
- removed constant functions from XS code (going easier on the linker)
- changed version to SDL_perl-2.0-beta1 Way Too much is Broken release
- Moved Opt/* to regular & fixing as found broken
- 27% of tests now fail!
* Feb 25 2003 David J. Goehrig <dave@sdlperl.org>
- resized the testmenu.pl script
* Jan 6 2003 Wayne Keenan <tripixuk@yahoo.co.uk>
- fixed testjoystick.pl
* Jan 4 2003 David J. Goehrig <dave@sdlperl.org>
- Added test suite, Thanks Tels
- Added SDL::SurfaceCopy finally
- Added SDL::Surface::new -surface && -copy constructors
- Changed SDL::Tool::Graphic::* to return a new SDL::Surface object
- Added SDL::Event::resize_w && SDL::Event::resize_h
* Jan 3 2003 David J. Goehrig <dave@sdlperl.org>
- SDL_perl-1.20.0 release
- fixed default pitch value in SDL::Surface
- fixed test/OpenGL/tutorials/*, removed nasty -flags options
* Jan 2 2003 David J. Goehrig <dave@sdlperl.org>
- Changed SDL::SurfacePixel to work as documented returns SDL_Color*
- Changed SDL::Surface::pixel to return SDL::Color object
- Changed SDL::SetColorKey to take SDL_Color*
- Changed SDL::Surface::set_color_key to take SDL_Color*,SDL::Color, && (x,y)
- Added test/testcolor.pl
- Fixed SDL::Opt::Surface::pixel to return SDL::Opt::Color objects
- Fixed test/testsprite.pl (must call display_format before set_color_key)
- removed use strict from test/testmenu.pl
- Added SDL::INIT_TIMER
* Jan 1 2003 David J. Goehrig <dave@sdlperl.org>
- Added a lot of documentation stubs
- Added SDL_PREALLOC support
- Added SDL_VIDEORESIZE event type
- Moved SDL_* SDL_Surface flags EXPORT to SDL::Surface
- Added SDL::App::resize & -resizeable tag
- Updated README
- Added SDL::Opt::Surface, SDL::Opt::Rect, SDL::Opt::Color
* Dec 30 2002 David J. Goehrig <dave@sdlperl.org>
- Cleaned SDL::App a little more
- Patch release SDL_perl-1.19.2
* Dec 29 2002 Tels <http://www.bloodgate.com>
- Patched SDL::Font includes
- Optimized SDL::Rect
* Dec 28 2002 Tels <http://www.bloodgate.com>
- Removed miscelaneous typos
- Rewrote utility function SDL::in
* Dec 25 2002 Tels <http://www.bloodgate.com>
- Patched SDL::Timer documentation
- Patched SDL::Event documentation
- Patched SDL::Cdrom documentation
- Patched mail address in Readme
* Dec 20 2002 Michael Lamertz <mike@perl-ronin.de>
- Fixed wrong spelling of XS call to SDL::App::grab_input function
* Oct 14 2002 David J. Goehrig <dave@sdlperl.org>
- Altered usage message printing behavior for Guillaume
- Added Guillaume Cottenceau's <gc@mandrakesoft.com>
64 bit support patch.
- Patch release SDL_perl-1.19.1
* Oct 13 2002 David J. Goehrig <dave@sdlperl.org>
- Added ConvertRGB and ConvertRGBA functions, useful
for creating OpenGL textures from arbitrary images.
- Updated documentation for SDL::Cursor
* Oct 11 2002 David J. Goehrig <dave@sdlperl.org>
- Added library disable configure options for linux
- Released SDL_perl-1.19.0
* Sept 28 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed some prototypes (OpenGL happier on Debian)
* Sept 5 2002 David J. Goehrig <dave@sdlperl.org>
- Optimizaiton in SDL::App::loop,
now syncs app only if action called
- Added test/testmenu.pl (precursor to a menu class)
* Sept 4 2002 Russell Valentine <russ_allegro@yahoo.com>
- Added SDL::GraphicTool and testgraphictool.pl
* Aug 31 2002 David J. Goehrig <dave@sdlperl.org>
- Removed redundant variable in SDL::Mixer::fade_in_music
Thanks to Peter BARABAS <z0d@artifact.hu> for finding it
* Aug 30 2002 David J. Goehrig <dave@sdlperl.org>
- Altered examples to use 16 bit color
- Fixed OpenGL/tutorial gluPerspective bugs
* Jun 14 2002 David J. Goehrig <dave@sdlperl.org>
- Finished color table and convolution support
- Added more GLUtesselator support
* Jun 10 2002 David J. Goehrig <dave@sdlperl.org>
- Added configure script, gnuish build environemnt
* Jun 8 2002 David J. Goehrig <dave@sdlperl.org>
- Applied Wayne Keenan's win32 build patches
* Jun 5 2002 David J. Goehrig <dave@sdlperl.org>
- Simply defines GL_ALL_CLIENT_ATTRIB_BITS 0xffffffff
- SDL::TTFont added font metric query methods
* Jun 4 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed GL_ALL_CLIENT_BITS Mesa bug again...
It appears to have disappeared after 1.17.2,
Thanks Seemant Kulleen & Chris Moeller for
pointing it out.
* May 28 2002 David J. Goehrig <dave@sdlperl.org>
- Added tutorials 7 & 8 to test/OpenGL/tutorial
* May 27 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed SDL::OpenGL::TexCoordPointer
* May 26 2002 David J. Goehrig <dave@sdlperl.org>
- SDL_perl-1.18
* May 25 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed include paths under linux
- Added SDL::Shell.pm and test/testshell.pl
* May 24 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed more OpenGL GLU tesselator code
- Added HAVE_SDL_MIXER around callbacks
* May 23 2002 Benedikt Meurer <bmeurer@fwdn.de>
- Added FreeBSD support
* May 21 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed typo in SDL::App:iconify
* May 3 2002 David J. Goehrig <dave@sdlperl.org>
- Added still more OpenGL support (errors and textures)
- Ported old OpenGL tutorials 2-6
- Fixed more bugs, improved SDL::SurfacePixels
- Added support for glu* and GLU_* exportation
- Added OpenGLU Nurbs support
- Added Nurbs example test/OpenGL/test5.pl
- Added more OpenGL projection and color code
* May 1 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed -Wall (added prototypes, fixed typos, etc)
- Improved Makefile, added GLU version detection
- Added OpenGL 1.2 dependent feature detection
- Added one and two dimension evaluators for OpenGL
- Added OpenGL test3.pl and test4.pl
* Apr 30 2002 Wayne Keenan <wayne@metaverse.fsnet.co.uk>
- updated Makefile.win32
* Apr 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com>
- updated Makefile.linux
* Apr 27 2002 David J. Goehrig <dave@sdlperl.org>
- SDL_perl-1.17 release made
- updated MANIFEST, etc.
* Apr 26 2002 David J. Goehrig <dave@sdlperl.org>
- Added more OpenGL support
* Apr 23 2002 David J. Goehrig <dave@sdlperl.org>
- fixed SFont and SDL_Console support
- Added SDL::FontTool
- Added test/testfonttool.pl
* Apr 19 2002 David J. Goehrig <dave@sdlperl.org>
- Added proper SDL_mixer callback support
- Broke out linux makefile
- Begun OpenGL support
- fixed test/testgfxprim.pl screen update bug
- fixed test/testgfxroto.pl alpha blits
- Added test/logo.png
* Apr 16 2002 Wayne Keenan <wayne@metaverse.fsnet.co.uk>
- Added SDL_Console support
- Added test/testconsole.pl
- Added SDL_gfx support
- Added test/testgfxroto.pl and test/testgfxprim.pl
- Updated Makefile
* Apr 11 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed SDL::ColorB typo
- Altered SDL::FillRect and SDL::Pixel to use SDL_Color* sources
- Documented SDL::Surface, SDL::Color
- Added automagic Surface, Color, and Rect support throughout OO layer
- Fixed testsprite.pl, graywin.pl to use above classes
- Brokeout Win32 Makefile.PL
- Fixed SMPEG a little bit
* Apr 11 2002 Wayne Keenan <wayne@metaverse.fsnet.co.uk>
- Added SMPEG support
- Added test/testsprite.pl
* Apr 10 2002 Wayne Keenan <wayne@metaverse.fsnet.co.uk>
- Added Win32 threading support in callbacks
- Added SDL_GetKeyState
* Apr 8 2002 Wayne Keenan <wayne@metaverse.fsnet.co.uk>
- Added joystick hat constants
- Added joystick hat constants to test/testjoystick.pl
* Apr 5 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed SDL_perl.spec according to most of Guillaume's suggestions
- Expanded the build_rpms script to upload to sdlperl.org
- Added SDL::Timer.pm for timer objects
- Added test/testtimer.pl
* Apr 4 2002 David J. Goehrig <dave@sdlperl.org>
- Added SDL_perl.spec for RPM/SRPM builds
- Fixed typo in SDL_perl.xs
* Apr 4 2002 Wayne Keenan <wayne@metaverse.fsnet.co.uk>
- Fixed Makefile.PL for Win32 builds
* Apr 4 2002 Russell Valentine <russ_allegro@yahoo.com>
- Added test/testjoystick.pl
* Apr 3 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed SDL::TTFont support
- Fixed SDL::Color support
- Applied Wayne's changes for Win32 support
- Moved XS code to SDL_perl.xs
- Created SDL_perl.pm
- Altered SDL.pm to use SDL_perl.pm
* Apr 1 2002 David J. Goehrig <dave@sdlperl.org>
- Added SDL::Color
- Added SDL::TTFont
- Added SDL::App::loop
- More Documentation
* Mar 31 2002 David J. Goehrig <dave@sdlperl.org>
- Upgraded SFont to version 1.5 <http://www.linux-games.com/sfont>
- Removed old examples and began porting SDL test programs to perl
- Updated key state modifier code
- Added audio processing callbacks and driver interrogation
* Mar 14 2002 David J. Goehrig <dave@sdlperl.org>
- Added YUV Overlay support
- Added more WM support (toggle fullscreen,grab input,iconify window)
- Added Resize Event support
- Added Joystick Events support
- Added audio status query support
- Removed TrackListing
* Mar 9 2002 David J. Goehrig <dave@sdlperl.org>
- Generated sdlpl compatability layer ( known to be buggy )
- Bug fixes in OO modules, frozen-bubble now runs under 1.14
- Added patches directory to contain fixes for other people's programs
- Added some Set/GetClipRect support
- More Documentation
- Began SDL_ttf support
- Began SDL_net support
* Feb 28 2002 David J. Goehrig <dave@sdlperl.org>
- Fixed-up OO modules to use new API
- Added AddTimer and RemoveTimer Support
- Added Joystick Support
- Added full Init/Quit support for subsystems
- Began Documentation Rewrite
- Began 1.12 compatability layer
* Feb 26 2002 David J. Goehrig <dave@sdlperl.org>
- Altered API / Simplified namespace
- Removed SDL_Image, SDL_Mixer, and OpenGL dependencies
- Added extension autodetection to config process
* Jan 28 2002 Guillaume Cottenceau <gc@mandrakesoft.com>
- Fixed a deallocation bug in Sound.pm
* Jan 22 2002 Guillaume Cottenceau <gc@mandrakesoft.com>
- Fixed a deallocation bug in Music.pm
* Dec 18 2000 David J. Goehrig
- Removed clipping fuctions
- Updated Readme
- Moved more to sourceforge
* Aug 5 2000 Wayne Keenan
- Open GL support
- OpenGL Glut like Application framework
- more video flags
- creating Surface from pre-allocated memory
- BMP screen dump
- added state dumpers as an debugging aid
- bug fixes
* May 26 2000 David J. Goehrig
- Added SFont support.
* May 22 2000 David J. Goehrig
- Finished the first release
|