mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-04 07:53:34 +01:00
61da7debc8
t6k11: use the gint array for variant detection r61524: use true triple buffering by default display: define DWIDTH and DHEIGHT display: add C_RGB(r,g,b) (0 ≤ r,g,b ≤ 31) [fxcg50]
12 lines
271 B
C
12 lines
271 B
C
//---
|
|
// display:cg - Internal definitions for the display module on fxcg50
|
|
//---
|
|
|
|
#ifndef DISPLAY_CG
|
|
#define DISPLAY_CG
|
|
|
|
/* dvram_switch() - triple buffering switch
|
|
Alternates VRAMs after a display update started. */
|
|
void dvram_switch(void);
|
|
|
|
#endif /* DISPLAY_CG */
|