From: "Edmund Horner" Newsgroups: comp.os.msdos.djgpp References: Subject: Re: Allegro question Lines: 16 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Organization: Paradise Net Message-ID: <972034328.32347@shelley.paradise.net.nz> Cache-Post-Path: shelley.paradise.net.nz!unknown AT 203-96-146-87 DOT tnt2 DOT paradise DOT net DOT nz X-Cache: nntpcache 2.4.0b5 (see http://www.nntpcache.org/) Date: Fri, 20 Oct 2000 22:33:03 +1300 NNTP-Posting-Host: 203.96.152.26 X-Complaints-To: newsadmin AT xtra DOT co DOT nz X-Trace: news.xtra.co.nz 972034329 203.96.152.26 (Fri, 20 Oct 2000 22:32:09 NZDT) NNTP-Posting-Date: Fri, 20 Oct 2000 22:32:09 NZDT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com > Can someone explain me what does is_linear instruction mean I assume you mean, is_linear_bitmap(). The is_linear_bitmap() function is used to test whether a BITMAP is linear, i.e. that it's image data is stored in the "obvious" way (you can access pixels simply by their (x+y*width) offset). Memory bitmaps and Mode 13 screen bitmaps are linear. I can't imagine you'd be interested in this function without already knowing about it, so I am a little curious as to why you're asking. Why don't you refer to the Allegro documentation for some real information? Edmund.