Message-ID: <368BFAC9.6FFECC6C@lycosmail.com> Date: Thu, 31 Dec 1998 17:29:30 -0500 From: Adam Schrotenboer X-Mailer: Mozilla 4.5 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: djgpp AT delorie DOT com, Mad Cow Subject: Re: blit! References: <3 DOT 0 DOT 6 DOT 32 DOT 19981231133407 DOT 007d8ec0 AT tenforward DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com void blit(BITMAP *source, BITMAP *dest, int source_x, int source_y, int dest_x, int dest_y, int width, int height); Example: blit(buffer,screen, 0, 0, 0,0, 640,480); Mad Cow wrote: > ahem..how do i use allegro's "blit"? I see it in allegro > tutorials but they never say HOW to use blit. > the allegro documentation doesn't even explain it.. > all i need is something like this--> > > /** hline(BITMAP *bmp, int x, int y, int y2, int color); **/ > > just an explanation like the above..thats all i want... > thanks!