Home
last modified time | relevance | path

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

/reactos/dll/directx/wine/ddraw/
H A Dsurface.c4255 iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), trans); in ddraw_surface7_BltFast()
4268 if (src_w > dst_w || dst_x > dst_w - src_w in ddraw_surface7_BltFast()
4275 SetRect(&dst_rect, dst_x, dst_y, dst_x + src_w, dst_y + src_h); in ddraw_surface7_BltFast()
4316 iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags); in ddraw_surface4_BltFast()
4318 return ddraw_surface7_BltFast(&dst_impl->IDirectDrawSurface7_iface, dst_x, dst_y, in ddraw_surface4_BltFast()
4329 iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags); in ddraw_surface3_BltFast()
4331 return ddraw_surface7_BltFast(&dst_impl->IDirectDrawSurface7_iface, dst_x, dst_y, in ddraw_surface3_BltFast()
4342 iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags); in ddraw_surface2_BltFast()
4344 return ddraw_surface7_BltFast(&dst_impl->IDirectDrawSurface7_iface, dst_x, dst_y, in ddraw_surface2_BltFast()
4355 iface, dst_x, dst_y, src_surface, wine_dbgstr_rect(src_rect), flags); in ddraw_surface1_BltFast()
[all …]
/reactos/dll/win32/windowscodecs/
H A Dscaler.c192 UINT dst_x, UINT dst_y, UINT dst_width, in NearestNeighbor_CopyScanline() argument
203 src_x = (dst_x + i) * This->src_width / This->width - src_data_x; in NearestNeighbor_CopyScanline()
/reactos/dll/directx/wine/wined3d/
H A Ddevice.c4122 … struct wined3d_resource *dst_resource, unsigned int dst_sub_resource_idx, unsigned int dst_x, argument
4130 device, dst_resource, dst_sub_resource_idx, dst_x, dst_y, dst_z,
4174 dst_w = dst_resource->size - dst_x;
4186 if (src_box->right > src_resource->size || dst_x >= dst_resource->size
4187 || src_box->right - src_box->left > dst_resource->size - dst_x)
4190 dst_x, src_box->left, src_box->right - src_box->left);
4194 wined3d_box_set(&dst_box, dst_x, 0, dst_x + (src_box->right - src_box->left), 1, 0, 1);
4248 dst_w = wined3d_texture_get_level_width(dst_texture, dst_level) - dst_x;
4260 wined3d_box_set(&dst_box, dst_x, dst_y, dst_x + (src_box->right - src_box->left),
/reactos/dll/win32/gdiplus/
H A Dgraphics.c334 StretchBlt(graphics->hdc, dst_x, dst_y, dst_width, dst_height, in gdi_alpha_blend()
346 GdiAlphaBlend(graphics->hdc, dst_x, dst_y, dst_width, dst_height, in gdi_alpha_blend()
392 static GpStatus alpha_blend_bmp_pixels(GpGraphics *graphics, INT dst_x, INT dst_y, in alpha_blend_bmp_pixels() argument
408 GdipBitmapGetPixel(dst_bitmap, x+dst_x, y+dst_y, &dst_color); in alpha_blend_bmp_pixels()
419 static GpStatus alpha_blend_hdc_pixels(GpGraphics *graphics, INT dst_x, INT dst_y, in alpha_blend_hdc_pixels() argument
453 gdi_alpha_blend(graphics, dst_x, dst_y, src_width, src_height, in alpha_blend_hdc_pixels()
461 static GpStatus alpha_blend_pixels_hrgn(GpGraphics *graphics, INT dst_x, INT dst_y, in alpha_blend_pixels_hrgn() argument
474 hrgn = CreateRectRgn(dst_x, dst_y, dst_x + src_width, dst_y + src_height); in alpha_blend_pixels_hrgn()
510 &src[(rects[i].left - dst_x) * 4 + (rects[i].top - dst_y) * src_stride], in alpha_blend_pixels_hrgn()
543 stat = alpha_blend_hdc_pixels(graphics, dst_x, dst_y, src, src_width, in alpha_blend_pixels_hrgn()
[all …]
/reactos/sdk/include/reactos/wine/
H A Dwined3d.h2240 … struct wined3d_resource *dst_resource, unsigned int dst_sub_resource_idx, unsigned int dst_x,