2019-12-15 19:17:00 +00:00
|
|
|
#include "th03/formats/pi.h"
|
|
|
|
|
2020-10-25 13:02:12 +00:00
|
|
|
#undef pi_free
|
2021-02-12 16:39:51 +00:00
|
|
|
void pascal pi_free(int slot);
|
2019-12-10 07:52:24 +00:00
|
|
|
|
2020-10-23 17:27:10 +00:00
|
|
|
// Like pi_put_8() and pi_put_quarter_8(), but applying the mask with the given
|
|
|
|
// ID while blitting.
|
2020-12-01 20:58:19 +00:00
|
|
|
int pascal pi_put_masked_8(
|
|
|
|
screen_x_t left, vram_y_t top, int slot, int mask_id
|
|
|
|
);
|
|
|
|
int pascal pi_put_quarter_masked_8(
|
2020-08-20 19:59:45 +00:00
|
|
|
screen_x_t left, vram_y_t top, int slot, int quarter, int mask_id
|
2019-12-10 07:52:24 +00:00
|
|
|
);
|