Searched refs:desty (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/system/core/virtcon/
H A Dvc-gfx.cpp74 unsigned desty = vc_tb_gfx->height + y * vc->charh; local
76 gfx_copylines(vc_test_gfx, vc_gfx, y * vc->charh, desty, h * vc->charh);
79 w * vc->charw, h * vc->charh, x * vc->charw, desty);
84 unsigned desty = vc_tb_gfx->height + y; local
86 gfx_copylines(vc_test_gfx, vc_gfx, y, desty, h);
88 gfx_blend(vc_test_gfx, vc_gfx, x, y, w, h, x, desty);
/fuchsia/zircon/system/ulib/gfx/include/gfx/
H A Dgfx.h80 void gfx_surface_blend(struct gfx_surface* target, struct gfx_surface* source, unsigned destx, unsigned desty);
83 void gfx_blend(struct gfx_surface* target, struct gfx_surface* source, unsigned srcx, unsigned srcy, unsigned width, unsigned height, unsigned destx, unsigned desty);
/fuchsia/zircon/system/ulib/gfx/
H A Dgfx.c461 void gfx_surface_blend(struct gfx_surface* target, struct gfx_surface* source, unsigned destx, unsigned desty) { argument
462 gfx_blend(target, source, 0, 0, source->width, source->height, destx, desty);
468 void gfx_blend(gfx_surface* target, gfx_surface* source, unsigned srcx, unsigned srcy, unsigned width, unsigned height, unsigned destx, unsigned desty) { argument
471 xprintf("target %p, source %p, srcx %u, srcy %u, width %u, height %u, destx %u, desty %u\n", target, source, srcx, srcy, width, height, destx, desty);
475 if (desty >= target->height)
485 if (desty + height > target->height)
486 height = target->height - desty;
497 uint16_t* dest = &((uint16_t*)target->ptr)[destx + desty * target->stride];
516 uint32_t* dest = &((uint32_t*)target->ptr)[destx + desty * targe
[all...]
/fuchsia/zircon/kernel/lib/gfx/
H A Dgfx.cpp321 void gfx_surface_blend(struct gfx_surface* target, struct gfx_surface* source, uint destx, uint desty) { argument
324 LTRACEF("target %p, source %p, destx %u, desty %u\n", target, source, destx, desty);
328 if (desty >= target->height)
336 if (desty + height > target->height)
337 height = target->height - desty;
343 uint16_t* dest = static_cast<uint16_t*>(target->ptr) + (destx + desty * target->stride);
362 uint32_t* dest = static_cast<uint32_t*>(target->ptr) + (destx + desty * target->stride);
382 uint32_t* dest = static_cast<uint32_t*>(target->ptr) + (destx + desty * target->stride);
401 uint8_t* dest = static_cast<uint8_t*>(target->ptr) + (destx + desty * targe
[all...]
/fuchsia/zircon/kernel/lib/gfx/include/lib/
H A Dgfx.h81 void gfx_surface_blend(struct gfx_surface* target, struct gfx_surface* source, uint destx, uint desty);

Completed in 86 milliseconds