Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/drivers/video/
H A Dstb_truetype.h269 glTexCoord2f(q.s1,q.t0); glVertex2f(q.x1,q.y1);
270 glTexCoord2f(q.s0,q.t0); glVertex2f(q.x0,q.y1);
346 int advance,lsb,x0,y0,x1,y1;
349 stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1);
350 …stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 79,…
464 unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap member
481 float x1,y1,s1,t1; // bottom-right member
510 unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap member
692 …_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1);
703 …btt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1);
[all …]
/rk3399_rockchip-uboot/arch/sh/include/asm/
H A Dptrace.h77 unsigned long y1; member
/rk3399_rockchip-uboot/tools/easylogo/
H A Deasylogo.c48 unsigned char Cb, y1, Cr, y2; member
102 yuyv_pixel->y1 = yuyv_pixel->y2 = 209 * (pR + pG + pB) / 300 + 16; in pixel_rgb_to_yuyv()
/rk3399_rockchip-uboot/drivers/video/drm/
H A Drockchip_vop2.c1623 static inline int interpolate(int x1, int y1, int x2, int y2, int x) in interpolate() argument
1625 return y1 + (y2 - y1) * (x - x1) / (x2 - x1); in interpolate()