Re: [AD] Allegro 5's new graphics core |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
Laurence Withers wrote:
In reply to Bob <ohannessian@xxxxxxxxxx>:
[snip]
http://pages.infinit.net/voidstar/new_gfx.c
With the create_video_bitmap function you are proposing, why not create
the video bitmap directly from a normal memory BITMAP?
I can see that having such a function would be beneficial, but I don't reall
see how it would be better than:
BITMAP *vb = create_video_bitmap(bmp->w, bmp->h);
blit(bmp, vb, 0, 0, 0, 0, bmp->w, bmp->h);
--
- Robert J Ohannessian
"Microsoft code is probably O(n^20)" (my CS prof)
http://pages.infinit.net/voidstar/