Home
last modified time | relevance | path

Searched refs:video_16to32 (Results 1 – 6 of 6) sorted by relevance

/dports/emulators/pcem/pcem_emulator-pcem-faf5d6423060/src/
H A Dvid_svga_render.c590 p[x] = video_16to32[dat & 0xffff]; in svga_render_16bpp_lowres()
591 p[x + 1] = video_16to32[dat >> 16]; in svga_render_16bpp_lowres()
595 p[x] = video_16to32[dat & 0xffff]; in svga_render_16bpp_lowres()
596 p[x + 1] = video_16to32[dat >> 16]; in svga_render_16bpp_lowres()
618 p[x] = video_16to32[dat & 0xffff]; in svga_render_16bpp_highres()
619 p[x + 1] = video_16to32[dat >> 16]; in svga_render_16bpp_highres()
622 p[x + 2] = video_16to32[dat & 0xffff]; in svga_render_16bpp_highres()
623 p[x + 3] = video_16to32[dat >> 16]; in svga_render_16bpp_highres()
626 p[x + 4] = video_16to32[dat & 0xffff]; in svga_render_16bpp_highres()
627 p[x + 5] = video_16to32[dat >> 16]; in svga_render_16bpp_highres()
[all …]
H A Dvideo.h59 extern uint32_t *video_15to32, *video_16to32;
H A Dvideo.c454 uint32_t *video_15to32, *video_16to32; variable
1007 video_16to32 = malloc(4 * 65536); in initvideo()
1009video_16to32[c] = ((c & 31) << 3) | (((c >> 5) & 63) << 10) | (((c >> 11) & 31) << 19); in initvideo()
1027 free(video_16to32); in closevideo()
H A Dvid_s3.c2466 fg = video_16to32[s3->hwc_fg_col & 0xffff]; in s3_hwcursor_draw()
2467 bg = video_16to32[s3->hwc_bg_col & 0xffff]; in s3_hwcursor_draw()
H A Dvid_s3_virge.c3396 fg = video_16to32[virge->hwc_fg_col & 0xffff]; in s3_virge_hwcursor_draw()
3397 bg = video_16to32[virge->hwc_bg_col & 0xffff]; in s3_virge_hwcursor_draw()
H A Dvid_voodoo.c379 uint32_t video_16to32[0x10000]; member
6947 …voodoo->video_16to32[c] = (voodoo->clutData256[r].r << 16) | (voodoo->clutData256[g].g << 8) | voo… in voodoo_calc_clutData()
7360 p[x] = draw_voodoo->video_16to32[src[x]]; in voodoo_callback()