Show last: 20 , 50 , 100 , All
Next page

Date File Revision Author Revision Log
2007/10/01 19:00:21 9474 9474 mmimica Supplemented a bug description.
2007/09/30 12:46:35 9473 9473 mmimica Dennis Busch fixed the breakage when building DLL Release configuration in batch build.
2007/09/29 21:51:50 9472 9472 mmimica Wording fixes.
2007/09/29 20:36:41 9471 9471 mmimica Documented the ALLEGRO_USE_C and AllegroGL interaction (bug).
2007/09/26 17:28:45 9470 9470 mmimica Fixed vertical clipping of [masked_]stretch_blit().
2007/09/26 16:37:50 9469 9469 mmimica - Make clear_to_color(screen, ...) use rectfill(screen, ...) which handles clipping and does
some funny things with colors to make the demo game look nice.
- Fixed rectfill(screen, ...) and memory->video blit colors, by setting glColor to white
2007/09/19 16:28:29 9468 9468 mmimica More optimistic comments.
Tryed to explain the differences to Allegro API that AllegroGL introduces, ni the docs.
2007/09/19 15:52:35 9467 9467 mmimica Made all types of polygon3d rendering work when drawing to a video bitmap (switching to software mode if necessary.
2007/09/19 15:38:07 9466 9466 mmimica Optimized drawing_mode() so that it doesn't do redundant OpenGL calls.
2007/09/18 20:07:28 9465 9465 mmimica Added support for POLYTYPE_[A|P]TEX_TRANS 3D polygon rendering.
2007/09/18 15:23:13 9464 9464 mmimica Implemented 3D polygon routines for video bitmap targets.
Fixed clipping in rectfill().
Various other fixes.
2007/09/17 21:14:06 9463 9463 mmimica Added support for POLYTYPE_[A|P]TEX in 3d polygon rendering for screen targets.
2007/09/17 17:30:31 9462 9462 mmimica Added support for DRAW_MODE_COPY_PATTERN drawing mode, for screen and video targets.
2007/08/21 12:35:02 9461 9461 mmimica Remade MSVC project files to follow new lib naming discipline, with better predefined configurations.
Docs updated.
2007/08/20 18:12:16 9460 9460 elias Updated readme.txt and faq.txt about the license of AllegroGL (and re-added gpl.txt). Copied from /allegrogl/trunk/gpl.txt:9458
2007/08/20 16:53:43 9459 9459 elias removed gpl.txt which was there by mistake, if at all, it should be lgpl from what I remember..
2007/08/19 10:09:58 9458 9458 mmimica Made STATICLINK=1 be set when --enable-shared=no is passed to ./configure.
2007/08/19 09:53:25 9457 9457 mmimica Matthew Leverton added DMC support.

Introduced new (old) library naming rules:
The STATICALLEGRO gets set if STATICLINK=1. This effectively makes the following pairs stick:

* alg.lib, alleg.lib
* alg_s.lib, alleg_s.lib
* algd.lib, alld.lib
* algd_s.lib, alld_s.lib

And likewise for the MSVC static C runtimes (_crt).
2007/08/18 19:37:42 9456 9456 mmimica Fix for the problem when clearing a video bitmap larger then the screen (SF.net bug tracker #1776678), when using FBO. Screen drawing routines were clipping the bitmap as it was of the size of the screen.
Hint: in AGL, screen->h is always equal to SCREEN_H
2007/08/18 18:58:11 9455 9455 mmimica Fixed checks if a FBO is used for video bitmaps. It is possible that the extension is available but for some reason FBO feature is not used.
Some comments added.