Mail Archives: djgpp/2000/03/03/04:16:47
From: | Damian Yerrick <DONT DOT YOU DOT DAREd_yerrick AT hotmail DOT comSEND DOT SPAM>
|
Newsgroups: | comp.os.msdos.djgpp
|
Subject: | Re: allegro and StdVGA 640x480x16, how ?
|
Organization: | Pin Eight Software http://pineight.8m.com/
|
Message-ID: | <ikhubs069mml9cn03fff20b03pf0v710g9@4ax.com>
|
References: | <89lu5e$gcf$1 AT bagan DOT srce DOT hr>
|
X-Newsreader: | Forte Agent 1.7/32.534
|
MIME-Version: | 1.0
|
Lines: | 37
|
X-Trace: | /bGnt890cExyiZ4IQSXSL6AXZIxZ9s99nEsv0gW4c51IDzTAS6NUcDLSi59JRVUjptH7wVo818CS!VkTb62Srg/UHjpejW+xXBreT8dhCCGj65a4qMyDd7bj7LP2LhdkCF3f/TkwRD66jRtO9PJeNAWUR!LqM=
|
X-Complaints-To: | abuse AT gte DOT net
|
X-Abuse-Info: | Please be sure to forward a copy of ALL headers
|
X-Abuse-Info: | Otherwise we will be unable to process your complaint properly
|
NNTP-Posting-Date: | Fri, 03 Mar 2000 05:12:03 GMT
|
Distribution: | world
|
Date: | Fri, 03 Mar 2000 05:12:03 GMT
|
To: | djgpp AT delorie DOT com
|
DJ-Gateway: | from newsgroup comp.os.msdos.djgpp
|
Reply-To: | djgpp AT delorie DOT com
|
On Thu, 2 Mar 2000 15:26:43 +0100, "Tihomir Heidelberg"
<9a4gl AT 9a0tcp DOT ampr DOT org> wrote:
>Is it possible to use 640x480 16 color graphic resolution with
>standard VGA driver (not VESA) with Allegro ?
No. Allegro works only in packed-pixel modes, namely 8-bit,
15/16-bit, 24-bit, and 32-bit modes. Sixteen-color mode is
four overlayed monochrome bitmaps; you may need to delve into
GRX or write your own library. Look for EGA graphics manuals
for more information, as 16-color works exactly as on EGA.
>It seems that it works up to 320x200 with standard VGA driver.
BTW, have you tried mode X in 320x400? Looks cool.
You can even show an authentic Windows 9x splash screen:
void Show9xBoot(void)
{
PALETTE pal;
BITMAP *bmp = load_bitmap("c:\logo.sys", pal);
if(bmp == NULL)
return;
set_palette(pal);
blit(bmp, screen, 0, 0, 0, 0, 320, 400);
destroy_bitmap(bmp);
}
--
Damian Yerrick http://yerricde.tripod.com/
Comment on story ideas: http://home1.gte.net/frodo/quickjot.html
AOL is sucks! Find out why: http://anti-aol.org/faqs/aas/
View full sig: http://www.rose-hulman.edu/~yerricde/sig.html
This is McAfee VirusScan. Add these two lines to your .sig to
prevent the spread of .sig viruses. http://www.mcafee.com/
- Raw text -