kas1e
Member |
hi all.
for example i have 640x480x16bit screen and some background. (here is no any custom chips code, only system friendly)
So, i want to do draw on this background some text (of course with no 'delete' part of backgorund). But want draw fast, full screen per frame.After it i want to do this:
1. fast scroll of this text per string.
2. fast fade in/out of full pages of this text (like as excess09 by mawi).
Well.. how i can do it by system funcs ? So, in other words, i want to know how i can load my font (like xen) and scroll it fast over my background ?
I know somethink about this:
SetAPen(window->RPort, 2);
SetDrMd(window->RPort, JAM1);
Move(window->RPort, 100,10+o);
Text(window->RPort, words, strlen(words));
But is too slow..
any help and ideas are welcome :)
|