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.
17 lines
368 B
C
17 lines
368 B
C
#include <gint/display.h>
|
|
#include <gint/config.h>
|
|
#if GINT_RENDER_RGB
|
|
|
|
void dpixel(int x, int y, int color)
|
|
{
|
|
if(x < dwindow.left || x >= dwindow.right) return;
|
|
if(y < dwindow.top || y >= dwindow.bottom) return;
|
|
if(color == C_NONE) return;
|
|
|
|
int index = DWIDTH * y + x;
|
|
|
|
if(color == C_INVERT) gint_vram[index] ^= 0xffff;
|
|
else gint_vram[index] = color;
|
|
}
|
|
|
|
#endif
|