mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-06 08:53:36 +01:00
13 lines
260 B
C
13 lines
260 B
C
#include <gint/image.h>
|
|
#include <gint/display.h>
|
|
|
|
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;
|
|
}
|