gint/src/render-cg/topti-asm.h
Lephe 28bea2e1ce
gint: switch from file filters to config macros + basic fxg3a target
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.
2024-03-23 10:02:51 +01:00

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 */