Home
last modified time | relevance | path

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

/openbmc/qemu/ui/
H A Dconsole-gl.c50 assert(QEMU_IS_ALIGNED(surface_stride(surface), surface_bytes_per_pixel(surface))); in surface_gl_create_texture()
79 surface_stride(surface) / surface_bytes_per_pixel(surface)); in surface_gl_create_texture()
110 surface_stride(surface) in surface_gl_update_texture()
115 data + surface_stride(surface) * y in surface_gl_update_texture()
H A Dsdl2-2d.c45 surface_stride(surf) * y; in sdl2_2d_update()
53 surface_stride(surf)); in sdl2_2d_update()
H A Ddbus-listener.c332 surface_stride(ddl->ds), in dbus_scanout_map()
614 &src[surface_stride(ddl->ds) * (hh + y) + x * bp], in dbus_gfx_update_sub()
658 surface_stride(ddl->ds) * surface_height(ddl->ds), in dbus_gfx_update()
666 surface_stride(ddl->ds), in dbus_gfx_update()
H A Degl-helpers.c183 glPixelStorei(GL_PACK_ROW_LENGTH, surface_stride(dst) / 4); in egl_fb_read_rect()
H A Dspice-display.c209 yoff1 = y * surface_stride(ssd->ds); in qemu_spice_create_update()
H A Dgtk.c529 surface_stride(surface)); in gd_switch()
/openbmc/qemu/hw/display/
H A Djazz_led.c93 d = surface_data(ds) + surface_stride(ds) * posy + bpp * posx1; in draw_horizontal_line()
124 d = surface_data(ds) + surface_stride(ds) * posy1 + bpp * posx; in draw_vertical_line()
129 d += surface_stride(ds); in draw_vertical_line()
135 d += surface_stride(ds); in draw_vertical_line()
141 d += surface_stride(ds); in draw_vertical_line()
161 d1 += surface_stride(surface); in jazz_led_update_display()
H A Dati_2d.c54 s->vga.vbe_start_addr, surface_data(ds), surface_stride(ds), in ati_2d_blt()
179 dst_y * surface_stride(ds), in ati_2d_blt()
180 s->regs.dst_height * surface_stride(ds)); in ati_2d_blt()
233 dst_y * surface_stride(ds), in ati_2d_blt()
234 s->regs.dst_height * surface_stride(ds)); in ati_2d_blt()
H A Dg364fb.c182 data_display = dd = data_display + surface_stride(surface); in g364fb_draw_graphic8()
206 data_display += dy * surface_stride(surface); in g364fb_draw_graphic8()
234 d += surface_stride(surface); in g364fb_draw_blank()
350 start = ymin * surface_stride(surface); in g364_invalidate_cursor_position()
351 end = (ymax + 1) * surface_stride(surface); in g364_invalidate_cursor_position()
H A Dvmware_vga.c372 bypl = surface_stride(surface); in vmsvga_update_rect()
425 int bypl = surface_stride(surface); in vmsvga_copy_rect()
462 int bypl = surface_stride(surface); in vmsvga_fill_rect()
875 ret = surface_stride(surface); in vmsvga_value_read()
H A Dtcx.c227 dd = surface_stride(surface); in tcx_update_display()
280 dd = surface_stride(surface); in tcx24_update_display()
H A Domap_lcdc.c307 linesize = surface_stride(surface); in omap_update_display()
H A Dtc6393xb.c450 d += surface_stride(surface); in tc6393xb_draw_blank()
H A Dvga.c1282 linesize = surface_stride(surface); in vga_draw_text()
1660 linesize = surface_stride(surface); in vga_draw_graphic()
1755 d += surface_stride(surface); in vga_draw_blank()
H A Dmacfb.c315 data_display = surface_data(surface) + y * surface_stride(surface); in macfb_draw_graphic()
H A Dxenfb.c637 int linesize = surface_stride(surface); in xenfb_guest_copy()
/openbmc/qemu/include/ui/
H A Dsurface.h58 static inline int surface_stride(DisplaySurface *s) in surface_stride() function