diff options
author | BALATON Zoltan | 2017-04-21 17:18:09 +0200 |
---|---|---|
committer | Peter Maydell | 2017-04-24 13:32:12 +0200 |
commit | 01d2d584c9e1d051892de115ab20787da62baf6a (patch) | |
tree | dba63e29e6b5a7e3ddd0a63b681b9f659df7fdeb /hw/display/sm501.c | |
parent | sm501: Fix hardware cursor (diff) | |
download | qemu-01d2d584c9e1d051892de115ab20787da62baf6a.tar.gz qemu-01d2d584c9e1d051892de115ab20787da62baf6a.tar.xz qemu-01d2d584c9e1d051892de115ab20787da62baf6a.zip |
sm501: Misc clean ups
- Rename a variable
- Move variable declarations out of loop to the beginning in draw_hwc_line
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Aurelien Jarno <aurelien@aurel32.net>
Message-id: 187c9e4e09d9bc2967b2454b36bb088ceef0b8bc.1492787889.git.balaton@eik.bme.hu
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/display/sm501.c')
-rw-r--r-- | hw/display/sm501.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/display/sm501.c b/hw/display/sm501.c index 72e86bad95..39748210d4 100644 --- a/hw/display/sm501.c +++ b/hw/display/sm501.c @@ -1313,7 +1313,7 @@ static void sm501_draw_crt(SM501State *s) uint32_t *palette = (uint32_t *)&s->dc_palette[SM501_DC_CRT_PALETTE - SM501_DC_PANEL_PALETTE]; uint8_t hwc_palette[3 * 3]; - int ds_depth_index = get_depth_index(surface); + int dst_depth_index = get_depth_index(surface); draw_line_func *draw_line = NULL; draw_hwc_line_func *draw_hwc_line = NULL; int full_update = 0; @@ -1325,13 +1325,13 @@ static void sm501_draw_crt(SM501State *s) /* choose draw_line function */ switch (src_bpp) { case 1: - draw_line = draw_line8_funcs[ds_depth_index]; + draw_line = draw_line8_funcs[dst_depth_index]; break; case 2: - draw_line = draw_line16_funcs[ds_depth_index]; + draw_line = draw_line16_funcs[dst_depth_index]; break; case 4: - draw_line = draw_line32_funcs[ds_depth_index]; + draw_line = draw_line32_funcs[dst_depth_index]; break; default: printf("sm501 draw crt : invalid DC_CRT_CONTROL=%x.\n", @@ -1343,7 +1343,7 @@ static void sm501_draw_crt(SM501State *s) /* set up to draw hardware cursor */ if (is_hwc_enabled(s, 1)) { /* choose cursor draw line function */ - draw_hwc_line = draw_hwc_line_funcs[ds_depth_index]; + draw_hwc_line = draw_hwc_line_funcs[dst_depth_index]; hwc_src = get_hwc_address(s, 1); c_x = get_hwc_x(s, 1); c_y = get_hwc_y(s, 1); |