mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-05-28 22:45:12 +02:00
12 lines
267 B
C
12 lines
267 B
C
//---
|
|
// render-cg - Internal definitions for the display module on fxcg50
|
|
//---
|
|
|
|
#ifndef RENDER_CG
|
|
#define RENDER_CG
|
|
|
|
/* dvram_switch() - triple buffering switch
|
|
Alternates VRAMs after a display update started. */
|
|
void dvram_switch(void);
|
|
|
|
#endif /* RENDER_CG */
|