mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 09:07:11 +02:00
render-cg: remove now-unused section of .effects field of image command
This commit is contained in:
parent
ede19fc878
commit
667f43b45c
11 changed files with 3 additions and 17 deletions
|
@ -263,10 +263,9 @@ struct gint_image_cmd
|
|||
{
|
||||
/* Shader ID. This is used in Azur, and ignored in gint */
|
||||
uint8_t shader_id;
|
||||
/* Dynamic effects
|
||||
Bit 0: VFLIP
|
||||
Bit 1: HFLIP
|
||||
Bits 2-7: 0=NONE, 1=CLEARBG, 2=SWAPCOLOR, 3=DYE */
|
||||
/* Dynamic effects not already dispatched by renderer
|
||||
Bit 0: VFLIP
|
||||
Bit 1: HFLIP */
|
||||
uint8_t effect;
|
||||
|
||||
/* Number of pixels to render per line. For formats that force either x
|
||||
|
|
|
@ -35,7 +35,6 @@ void dsubimage_p4_clearbg(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 4;
|
||||
cmd.color_1 = bg_color;
|
||||
cmd.loop = gint_image_p4_clearbg;
|
||||
gint_image_p4_loop(DWIDTH, &cmd);
|
||||
|
|
|
@ -15,7 +15,6 @@ void dsubimage_p4_clearbg_alt(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, true, true, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 16;
|
||||
cmd.color_1 = bg_color;
|
||||
cmd.loop = gint_image_p4_clearbg_alt;
|
||||
gint_image_p4_loop(DWIDTH, &cmd);
|
||||
|
|
|
@ -15,7 +15,6 @@ void dsubimage_p4_dye(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, true, true, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 12;
|
||||
cmd.color_1 = img->alpha;
|
||||
cmd.color_2 = dye_color;
|
||||
cmd.loop = gint_image_p4_dye;
|
||||
|
|
|
@ -16,7 +16,6 @@ void dsubimage_p4_swapcolor(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, true, true, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 8;
|
||||
cmd.color_1 = old_index;
|
||||
cmd.color_2 = new_color;
|
||||
cmd.loop = gint_image_p4_swapcolor;
|
||||
|
@ -38,7 +37,6 @@ void dsubimage_p4_addbg(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, true, true, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 8;
|
||||
cmd.color_1 = img->alpha;
|
||||
cmd.color_2 = bg_color;
|
||||
cmd.loop = gint_image_p4_swapcolor;
|
||||
|
|
|
@ -35,7 +35,6 @@ void dsubimage_p8_clearbg(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, true, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 4;
|
||||
cmd.color_1 = bg_color;
|
||||
cmd.loop = gint_image_p8_clearbg;
|
||||
gint_image_p8_loop(DWIDTH, &cmd);
|
||||
|
|
|
@ -15,7 +15,6 @@ void dsubimage_p8_dye(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, true, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 12;
|
||||
cmd.color_1 = img->alpha;
|
||||
cmd.color_2 = dye_color;
|
||||
cmd.loop = gint_image_p8_dye;
|
||||
|
|
|
@ -16,7 +16,6 @@ void dsubimage_p8_swapcolor(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 8;
|
||||
cmd.color_1 = old_index;
|
||||
cmd.color_2 = new_color;
|
||||
cmd.loop = gint_image_p8_swapcolor;
|
||||
|
@ -38,7 +37,6 @@ void dsubimage_p8_addbg(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 8;
|
||||
cmd.color_1 = img->alpha;
|
||||
cmd.color_2 = bg_color;
|
||||
cmd.loop = gint_image_p8_swapcolor;
|
||||
|
|
|
@ -36,7 +36,6 @@ void dsubimage_rgb16_clearbg(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 4;
|
||||
cmd.color_1 = bg_color;
|
||||
cmd.loop = gint_image_rgb16_clearbg;
|
||||
gint_image_rgb16_loop(DWIDTH, &cmd);
|
||||
|
|
|
@ -15,7 +15,6 @@ void dsubimage_rgb16_dye(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 12;
|
||||
cmd.color_1 = img->alpha;
|
||||
cmd.color_2 = dye_color;
|
||||
cmd.loop = gint_image_rgb16_dye;
|
||||
|
|
|
@ -16,7 +16,6 @@ void dsubimage_rgb16_swapcolor(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 8;
|
||||
cmd.color_1 = old_color;
|
||||
cmd.color_2 = new_color;
|
||||
cmd.loop = gint_image_rgb16_swapcolor;
|
||||
|
@ -38,7 +37,6 @@ void dsubimage_rgb16_addbg(int x, int y, image_t const *img,
|
|||
|
||||
if(!gint_image_mkcmd(&box, img, eff, false, false, &cmd, DWIDTH,
|
||||
DHEIGHT)) return;
|
||||
cmd.effect += 8;
|
||||
cmd.color_1 = img->alpha;
|
||||
cmd.color_2 = bg_color;
|
||||
cmd.loop = gint_image_rgb16_swapcolor;
|
||||
|
|
Loading…
Add table
Reference in a new issue