uxn/src/devices/screen.h

25 lines
742 B
C
Raw Normal View History

2021-12-28 21:37:26 +00:00
/*
Copyright (c) 2021 Devine Lu Linvega
Copyright (c) 2021 Andrew Alderwick
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE.
*/
2021-12-29 17:11:03 +00:00
typedef struct UxnScreen {
2023-05-05 03:45:52 +00:00
int width, height, x1, y1, x2, y2;
Uint32 palette[4], *pixels;
2023-05-04 18:33:31 +00:00
Uint8 *fg, *bg;
2021-12-29 17:11:03 +00:00
} UxnScreen;
2021-12-28 21:37:26 +00:00
2021-12-29 17:11:03 +00:00
extern UxnScreen uxn_screen;
2023-05-05 00:43:44 +00:00
void screen_palette(Uint8 *addr);
void screen_resize(Uint16 width, Uint16 height);
void screen_redraw(void);
Uint8 screen_dei(Uxn *u, Uint8 addr);
2023-01-01 21:34:20 +00:00
void screen_deo(Uint8 *ram, Uint8 *d, Uint8 port);