Mail Archives: djgpp/1995/06/02/21:19:29
> Am I correct to then assume that I can not fill a screen using an
> assembly routine that directly stores data in it (rather than calling
> some other routine for each pixel/line/etc? That would probably be too
> slow for what I am doing. I am about to start looking through the
> source of the graphics library to better understand what is up, but would
> feel alot better if someone would clarify this for me before I end up
> wasting lots of time to find out djgpp won't do what I need.
You need to call GrSetMode() to initialize the extender. Once this is
done, the paging hardware is active for that memory, and *then* you
can just poke values in. The support is in hardware, not software, so
it doesn't affect your programming, but it does require
initialization.
- Raw text -