procedure Blit
( | source, dest | : not null A_Bitmap; |
source_x, source_y, dest_x, dest_y | : Integer; | |
width, height | : Natural ); |
procedure Draw_Character_Ex
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer; | |
color, bg | : Color_Type ); |
procedure Draw_Gouraud_Sprite
( | bmp, sprite | : not null A_Bitmap; |
x, y, c1, c2, c3, c4 | : Color_Type ); |
procedure Draw_Lit_Sprite
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer; | |
color | : Color_Type ); |
procedure Draw_Sprite
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer ); |
procedure Draw_Sprite_H_Flip
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer ); |
procedure Draw_Sprite_V_Flip
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer ); |
procedure Draw_Sprite_VH_Flip
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer ); |
procedure Draw_Trans_Sprite
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer ); |
procedure Masked_Blit
( | source, dest | : not null A_Bitmap; |
source_x, source_y, dest_x, dest_y | : Integer; | |
width, height | : Natural ); |
procedure Masked_Stretch_Blit
( | source, dest | : not null A_Bitmap; |
source_x, source_y | : Integer; | |
source_w, source_h | : Natural; | |
dest_x, dest_y | : Integer; | |
dest_w, dest_h | : Natural ); |
procedure Stretch_Blit
( | source, dest | : not null A_Bitmap; |
source_x, source_y | : Integer; | |
source_width, source_height | : Natural; | |
dest_x, dest_y | : Integer; | |
dest_width, dest_height | : Natural ); |
procedure Stretch_Sprite
( | bmp, sprite | : not null A_Bitmap; |
x, y | : Integer; | |
w, h | : Natural ); |