mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
Nothing interesting in this commit, just moving files around, making sure every target compiles every file, and controlling with macros instead. Basic support for fxg3a target in CMakeLists.txt, cmake/FindGint.cmake, giteapc.make and include/gint/config.h.in. The rest is forgettable.
34 lines
1 KiB
C
34 lines
1 KiB
C
//---
|
|
// gint:render-cg:topti-asm - Assembler drawing routines for topti
|
|
//---
|
|
|
|
#ifndef GINT_RENDERCG_TOPTIASM
|
|
#define GINT_RENDERCG_TOPTIASM
|
|
|
|
#include <gint/config.h>
|
|
#if GINT_RENDER_RGB
|
|
|
|
/* Text rendering functions
|
|
|
|
@vram Pointer to VRAM, offset for subglyph position
|
|
@data Glyph data, offset for subglyph position
|
|
@color topti_glyph_fg: Foreground color
|
|
topti_glyph_bg: Background color
|
|
topti_glyph_fg_bg: (fg << 16) | bg
|
|
@height Subglyph height
|
|
@width Sublgyph width
|
|
@stride Storage width of subglyph - width
|
|
@index Starting index in data, ie. top * storage width + left */
|
|
typedef void asm_text_t(uint16_t *vram, uint32_t const * data, uint32_t color,
|
|
int height, int width, int stride, int index);
|
|
|
|
/* Opaque foreground, transparent background */
|
|
extern asm_text_t topti_glyph_fg;
|
|
/* Transparent foreground, opaque background */
|
|
extern asm_text_t topti_glyph_bg;
|
|
/* Opaque foreground, opaque background */
|
|
extern asm_text_t topti_glyph_fg_bg;
|
|
|
|
#endif
|
|
|
|
#endif /* GINT_RENDERFX_TOPTIASM */
|