Re: [AD] Feature request: Add missing GFX_VTABLE entries |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On Sunday 03 October 2004 22:46, Robert Ohannessian wrote:
> Calc_spline is still there.
Oops, missed that one
> I also noticed that stretch_masked_blit is gone...
Yes - because it is basically the same as stretch_blit and stretch_sprite.
All of these call the do_stretch_blit function from src/i386/istretch.c,
so it is probably best to add this to the vtable rather than add the three
functions seperately. For reference, the prototype for the vtable entry
is:
do_stretch_blit(struct BITMAP *source, struct BITMAP *dest, int source_x,
int source_y, int source_width, int source_height, int dest_x, int dest_y,
int dest_width, int dest_height, int masked)
Evert