Date: Tue, 15 May 2001 20:42:15 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "Cody" Message-Id: <7458-Tue15May2001204214+0300-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <3afda406@leia.ktsnet.com> (cody1@ktsnet.com) Subject: Re: [OT] graphics routines References: <3afc6377 AT leia DOT ktsnet DOT com> <9003-Sat12May2001083713+0300-eliz AT is DOT elta DOT co DOT il> <3afda406 AT leia DOT ktsnet DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "Cody" > Newsgroups: comp.os.msdos.djgpp > Date: Sat, 12 May 2001 15:58:57 -0500 > > > Nate gave you some good answers. I'd like to add that the DJGPP FAQ > > list (v2/faq230b.zip from the same place you get DJGPP) explains these > > issues in quite some detail in chapters 10 and 18. > Thanks for the pointers... any other links that would help me out? I hope you won't need any other links after you read the FAQ ;-) If something is still unclear after that, please ask specific questions. > > You don't need assembly to do any of the above. Just use C and the > > available library functions (some of them were mentioned by Nate, > > others are in the FAQ). > I just figured that optimized asm functions would be more efficient than > using the already available c routines.... The functions mentioned in the FAQ either expand into fast inline assembly, or are implemented in optimized assembly. Experience shows they are hard to beat. So you shouldn't worry about performance too much, at least not until you time your code and find it to be too slow.