mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-05 00:36:57 +00:00
AGS: Implement xor_mode/solid_mode
This commit is contained in:
parent
8e1a3d08db
commit
91bce9b2e9
@ -28,12 +28,11 @@ void drawing_mode(int mode, BITMAP *pattern, int x_anchor, int y_anchor) {
|
||||
}
|
||||
|
||||
void xor_mode(int on) {
|
||||
// TODO: xor_mode
|
||||
error("TODO: xor_mode");
|
||||
drawing_mode(on ? DRAW_MODE_XOR : DRAW_MODE_SOLID, NULL, 0, 0);
|
||||
}
|
||||
|
||||
void solid_mode(void) {
|
||||
// TODO: solid_mode
|
||||
drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0);
|
||||
}
|
||||
|
||||
void do_line(BITMAP *bmp, int x1, int y1, int x2, int y2, int d, DrawMethod proc) {
|
||||
|
Loading…
Reference in New Issue
Block a user