mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
This change finally introduces gray image rendering with bopti. This is the final iteration of bopti v2 and certainly the fastest so far. All four profiles are supported, without change to the format.
36 lines
839 B
C
36 lines
839 B
C
#define GINT_NEED_VRAM
|
|
#include <gint/display.h>
|
|
#include <display/fx.h>
|
|
#include "bopti-asm.h"
|
|
|
|
/* List of rendering functions */
|
|
static void *bopti_asm[] = {
|
|
bopti_asm_mono,
|
|
bopti_asm_mono_alpha,
|
|
};
|
|
|
|
/* dimage() - render a full image */
|
|
void dimage(int x, int y, image_t const *img)
|
|
{
|
|
if(img->gray) return;
|
|
bopti_render_clip(x, y, img, 0, 0, img->width, img->height, vram,
|
|
NULL, bopti_asm[img->profile]);
|
|
}
|
|
|
|
/* dsubimage() - render a section of an image */
|
|
void dsubimage(int x, int y, image_t const *img, int left, int top,
|
|
int width, int height, int flags)
|
|
{
|
|
if(img->gray) return;
|
|
|
|
if(flags & DIMAGE_NOCLIP)
|
|
{
|
|
bopti_render_noclip(x, y, img, left, top, width, height,
|
|
vram, NULL, bopti_asm[img->profile]);
|
|
}
|
|
else
|
|
{
|
|
bopti_render_clip(x, y, img, left, top, width, height,
|
|
vram, NULL, bopti_asm[img->profile]);
|
|
}
|
|
}
|