Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
DSDL_riscosFullScreenVideo.c410 int width_bytes; in FULLSCREEN_UpdateRects8bpp() local
417 width_bytes = rects->w; in FULLSCREEN_UpdateRects8bpp()
423 width_bytes += extra; in FULLSCREEN_UpdateRects8bpp()
425 if (width_bytes & 3) width_bytes += 4 - (width_bytes & 3); in FULLSCREEN_UpdateRects8bpp()
426 src_skip_bytes = pitch - width_bytes; in FULLSCREEN_UpdateRects8bpp()
428 RISCOS_Put32(to, (width_bytes >> 2), pitch, (int)rects->h, from, src_skip_bytes); in FULLSCREEN_UpdateRects8bpp()
440 int width_bytes; in FULLSCREEN_UpdateRects16bpp() local
447 width_bytes = (((int)rects->w) << 1); in FULLSCREEN_UpdateRects16bpp()
452 width_bytes += 2; in FULLSCREEN_UpdateRects16bpp()
454 if (width_bytes & 3) width_bytes += 2; in FULLSCREEN_UpdateRects16bpp()
[all …]