mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
remove features that are deprecated as of v2.1
This commit is contained in:
parent
d887423bbb
commit
d12be8add0
3 changed files with 0 additions and 39 deletions
5
TODO
5
TODO
|
@ -1,8 +1,3 @@
|
||||||
For the 2.1.0 release:
|
|
||||||
* bopti: remove the deprecated image_t definition
|
|
||||||
* project: remove the compat branch
|
|
||||||
* project: remove the gray aliases
|
|
||||||
|
|
||||||
Extensions on existing code:
|
Extensions on existing code:
|
||||||
* tmu: make interrupt handlers more elegant
|
* tmu: make interrupt handlers more elegant
|
||||||
* bopti: try to display fullscreen images with TLB access + DMA on fxcg50
|
* bopti: try to display fullscreen images with TLB access + DMA on fxcg50
|
||||||
|
|
|
@ -83,10 +83,6 @@ typedef struct
|
||||||
|
|
||||||
} GPACKED(4) bopti_image_t;
|
} GPACKED(4) bopti_image_t;
|
||||||
|
|
||||||
/* Old alias to image_t, now deprecated because of libimg */
|
|
||||||
typedef bopti_image_t image_t __attribute__((deprecated(
|
|
||||||
"image_t has been renamed to bopti_image_t")));
|
|
||||||
|
|
||||||
#endif /* FX9860G */
|
#endif /* FX9860G */
|
||||||
|
|
||||||
#endif /* GINT_DISPLAY_FX */
|
#endif /* GINT_DISPLAY_FX */
|
||||||
|
|
|
@ -144,34 +144,4 @@ void dgray_getdelays(uint32_t *light, uint32_t *dark);
|
||||||
These pointers can be used for custom rendering functions. */
|
These pointers can be used for custom rendering functions. */
|
||||||
void dgray_getvram(uint32_t **light, uint32_t **dark);
|
void dgray_getvram(uint32_t **light, uint32_t **dark);
|
||||||
|
|
||||||
//---
|
|
||||||
// Aliases for older programs
|
|
||||||
//---
|
|
||||||
|
|
||||||
/* Functions for the gray engine used to be called g*() to mirror the d*()
|
|
||||||
functions of the display module. They are now bundled together, so these
|
|
||||||
aliases are for older programs that still use the g*() naming scheme */
|
|
||||||
|
|
||||||
#ifdef GINT_GRAY_ALIASES
|
|
||||||
|
|
||||||
#define gclear dclear
|
|
||||||
#define grect drect
|
|
||||||
#define gpixel dpixel
|
|
||||||
#define gline dline
|
|
||||||
#define ghline dhline
|
|
||||||
#define gvline dvline
|
|
||||||
#define gimage dimage
|
|
||||||
#define gsubimage dsubimage
|
|
||||||
#define gtext dtext
|
|
||||||
#define gtext_opt dtext_opt
|
|
||||||
#define gprint dprint
|
|
||||||
#define gprint_opt dprint_opt
|
|
||||||
|
|
||||||
#define gupdate dupdate
|
|
||||||
#define gray_delays dgray_setdelays
|
|
||||||
#define gray_config dgray_getdelays
|
|
||||||
#define gvram dgray_getvram
|
|
||||||
|
|
||||||
#endif /* GINT_GRAY_ALIASES */
|
|
||||||
|
|
||||||
#endif /* GINT_GRAY */
|
#endif /* GINT_GRAY */
|
||||||
|
|
Loading…
Add table
Reference in a new issue