mirror of https://github.com/nmlgc/ReC98.git
15 lines
473 B
C++
15 lines
473 B
C++
#include "th03/formats/pi.hpp"
|
|
|
|
#undef pi_free
|
|
void pascal pi_free(int slot);
|
|
|
|
// Like pi_put_8() and pi_put_quarter_8(), but applying the mask with the given
|
|
// ID while blitting. See TH03's and TH04's pic_put_both_masked() for a C++
|
|
// implementation of the same functionality.
|
|
void pascal pi_put_masked_8(
|
|
screen_x_t left, vram_y_t top, int slot, int mask_id
|
|
);
|
|
void pascal pi_put_quarter_masked_8(
|
|
screen_x_t left, vram_y_t top, int slot, int quarter, int mask_id
|
|
);
|