mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-29 13:03:36 +01:00
28bea2e1ce
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
313 B
C
17 lines
313 B
C
#include <gint/image.h>
|
|
#include <gint/display.h>
|
|
#include <gint/config.h>
|
|
#if GINT_RENDER_RGB
|
|
|
|
image_t *image_create_vram(void)
|
|
{
|
|
image_t *img = image_create(DWIDTH, DHEIGHT, IMAGE_RGB565);
|
|
if(!img)
|
|
return NULL;
|
|
|
|
img->stride = 2 * DWIDTH;
|
|
img->data = gint_vram;
|
|
return img;
|
|
}
|
|
|
|
#endif
|