Home
last modified time | relevance | path

Searched refs:srcRect (Results 1 - 17 of 17) sorted by relevance

/device/soc/rockchip/common/hardware/display/src/display_gfx/
H A Ddisplay_gfx.c275 int32_t doFlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in doFlit() argument
358 srect.x = srcRect->x; in doFlit()
360 srect.y = srcRect->y; in doFlit()
362 srect.height = srcRect->h; in doFlit()
363 srect.width = srcRect->w; in doFlit()
479 int32_t rkBlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in rkBlit() argument
482 CHECK_NULLPOINTER_RETURN_VALUE(srcRect, DISPLAY_NULL_PTR); in rkBlit()
487 if (doFlit(srcSurface, srcRect, dstSurface, dstRect, opt) < 0) { in rkBlit()
/device/soc/rockchip/rk3399/hardware/display/src/display_gfx/
H A Ddisplay_gfx.c273 int32_t doFlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in doFlit() argument
356 srect.x = srcRect->x; in doFlit()
358 srect.y = srcRect->y; in doFlit()
360 srect.height = srcRect->h; in doFlit()
361 srect.width = srcRect->w; in doFlit()
473 int32_t rkBlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in rkBlit() argument
476 CHECK_NULLPOINTER_RETURN_VALUE(srcRect, DISPLAY_NULL_PTR); in rkBlit()
481 if (doFlit(srcSurface, srcRect, dstSurface, dstRect, opt) < 0) in rkBlit()
/device/soc/rockchip/rk3566/hardware/display/src/display_gfx/
H A Ddisplay_gfx.c266 int32_t doFlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in doFlit() argument
348 srect.x = srcRect->x; in doFlit()
350 srect.y = srcRect->y; in doFlit()
352 srect.height = srcRect->h; in doFlit()
354 srect.width = srcRect->w; in doFlit()
447 int32_t rkBlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in rkBlit() argument
450 CHECK_NULLPOINTER_RETURN_VALUE(srcRect, DISPLAY_NULL_PTR); in rkBlit()
455 if (doFlit(srcSurface, srcRect, dstSurface, dstRect, opt) < 0) in rkBlit()
/device/soc/rockchip/rk3568/hardware/display/src/display_gfx/
H A Ddisplay_gfx.c266 int32_t doFlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in doFlit() argument
348 srect.x = srcRect->x; in doFlit()
350 srect.y = srcRect->y; in doFlit()
352 srect.height = srcRect->h; in doFlit()
354 srect.width = srcRect->w; in doFlit()
447 int32_t rkBlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in rkBlit() argument
450 CHECK_NULLPOINTER_RETURN_VALUE(srcRect, DISPLAY_NULL_PTR); in rkBlit()
455 if (doFlit(srcSurface, srcRect, dstSurface, dstRect, opt) < 0) in rkBlit()
/device/soc/rockchip/rk3588/hardware/display/src/display_gfx/
H A Ddisplay_gfx.c266 int32_t doFlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in doFlit() argument
348 srect.x = srcRect->x; in doFlit()
350 srect.y = srcRect->y; in doFlit()
352 srect.height = srcRect->h; in doFlit()
354 srect.width = srcRect->w; in doFlit()
447 int32_t rkBlit(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt) in rkBlit() argument
450 CHECK_NULLPOINTER_RETURN_VALUE(srcRect, DISPLAY_NULL_PTR); in rkBlit()
455 if (doFlit(srcSurface, srcRect, dstSurface, dstRect, opt) < 0) in rkBlit()
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/higv/include/
H A Dhi_gv_image.h52 * param[in] srcRect Source rect.
62 HI_U32 imageWidth, const HI_RECT *srcRect, const HI_RECT *dstRect, const HIGO_BLTOPT_S *blitOpt,
70 * param[in] srcRect Source rect(null indicate full surface).
82 const HI_RECT *srcRect, const HI_RECT *dstRect, const HIGO_BLTOPT_S *blitOpt, HI_BOOL transparent);
H A Dhi_gv_graphiccontext.h184 HIGV_HANDLE imageHandle, const HI_RECT *srcRect, const HIGO_BLTOPT_S *blitOpt);
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_scrn.c607 blit->body.srcRect.left = 0; in vmw_sou_surface_pre_clip()
608 blit->body.srcRect.top = 0; in vmw_sou_surface_pre_clip()
609 blit->body.srcRect.right = 0; in vmw_sou_surface_pre_clip()
610 blit->body.srcRect.bottom = 0; in vmw_sou_surface_pre_clip()
667 blit->body.srcRect.left = src_bb.x1; in vmw_sou_surface_post_clip()
668 blit->body.srcRect.top = src_bb.y1; in vmw_sou_surface_post_clip()
669 blit->body.srcRect.right = src_bb.x2; in vmw_sou_surface_post_clip()
670 blit->body.srcRect.bottom = src_bb.y2; in vmw_sou_surface_post_clip()
1052 cmd->body.srcRect.left = sdirty->left + trans_x; in vmw_sou_surface_fifo_commit()
1053 cmd->body.srcRect in vmw_sou_surface_fifo_commit()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_scrn.c600 blit->body.srcRect.left = 0; in vmw_sou_surface_pre_clip()
601 blit->body.srcRect.top = 0; in vmw_sou_surface_pre_clip()
602 blit->body.srcRect.right = 0; in vmw_sou_surface_pre_clip()
603 blit->body.srcRect.bottom = 0; in vmw_sou_surface_pre_clip()
660 blit->body.srcRect.left = src_bb.x1; in vmw_sou_surface_post_clip()
661 blit->body.srcRect.top = src_bb.y1; in vmw_sou_surface_post_clip()
662 blit->body.srcRect.right = src_bb.x2; in vmw_sou_surface_post_clip()
663 blit->body.srcRect.bottom = src_bb.y2; in vmw_sou_surface_post_clip()
1018 cmd->body.srcRect.left = sdirty->left + trans_x; in vmw_sou_surface_fifo_commit()
1019 cmd->body.srcRect in vmw_sou_surface_fifo_commit()
[all...]
/device/soc/rockchip/rk3566/hardware/display/src/display_device/
H A Ddisplay_gfx.h100 * @param srcRect Indicates the pointer to the rectangle of the source bitmap.
108 int32_t (*Blit)(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt);
/device/soc/rockchip/rk3568/hardware/display/src/display_device/
H A Ddisplay_gfx.h100 * @param srcRect Indicates the pointer to the rectangle of the source bitmap.
108 int32_t (*Blit)(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt);
/device/soc/rockchip/rk3588/hardware/display/src/display_device/
H A Ddisplay_gfx.h100 * @param srcRect Indicates the pointer to the rectangle of the source bitmap.
108 int32_t (*Blit)(ISurface *srcSurface, IRect *srcRect, ISurface *dstSurface, IRect *dstRect, GfxOpt *opt);
/test/xts/hats/hdf/hdf_lite/display/
H A Ddisplay_test.c337 IRect srcRect = {0, 0, SAMPLE_IMAGE_WIDTH, SAMPLE_IMAGE_HEIGHT}; in BlitTest() local
340 IRect dstRect = srcRect; in BlitTest()
344 ret = g_displayTest.gfxFuncs->Blit(&srcSurface, &srcRect, &dstSurface, &dstRect, NULL); in BlitTest()
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/device_include/
H A Dsvga_reg.h2103 SVGASignedRect srcRect; member
H A Dsvga3d_cmd.h1201 SVGASignedRect srcRect; member
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/device_include/
H A Dsvga_reg.h826 SVGASignedRect srcRect; member
H A Dsvga3d_cmd.h823 SVGASignedRect srcRect; member

Completed in 22 milliseconds