Home
last modified time | relevance | path

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

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/
H A D0001-gfx-direct-Aboid-usng-VLAs-and-printf-formats.patch41 - DFBRectangle rects[num];
43 + DFBRectangle *rects = (DFBRectangle*)alloca( sizeof(struct DFBRectangle) * num);
52 - DFBRectangle rects[num];
54 + DFBRectangle *rects = (DFBRectangle*)alloca( sizeof(struct DFBRectangle) * num);
/openbmc/openbmc/poky/meta/recipes-graphics/pong-clock/pong-clock/
H A Dpong-clock-no-flicker.c123 XRectangle rects[5*5]; in draw_digit() local
132 rects[i].x = (x + j) * pong_clock->pixelw; in draw_digit()
133 rects[i].y = (y + k) * pong_clock->pixelh; in draw_digit()
134 rects[i].width = pong_clock->pixelw; in draw_digit()
135 rects[i].height = pong_clock->pixelh; in draw_digit()
142 rects, i); in draw_digit()
/openbmc/u-boot/drivers/video/
H A Dstb_truetype.h590 …k_context *spc, stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects);
591 STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_re…
592 …k_context *spc, stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects);
2634 static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects) in stbrp_pack_rects() argument
2638 if (con->x + rects[i].w > con->width) { in stbrp_pack_rects()
2642 if (con->y + rects[i].h > con->height) in stbrp_pack_rects()
2644 rects[i].x = con->x; in stbrp_pack_rects()
2645 rects[i].y = con->y; in stbrp_pack_rects()
2646 rects[i].was_packed = 1; in stbrp_pack_rects()
2647 con->x += rects[i].w; in stbrp_pack_rects()
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/
H A D0024-userland-Sync-needed-defines-for-weston-build.patch25 … PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects);
/openbmc/qemu/ui/
H A Dvnc.c3258 int has_dirty, rects = 0; in vnc_refresh() local
3276 rects += vnc_update_client(vs, has_dirty); in vnc_refresh()
3280 if (has_dirty && rects) { in vnc_refresh()