Lines Matching defs:dst_point

1888                     POINT dst_point = {dst_rect.left, dst_rect.top};
1890 if (SUCCEEDED(surface_upload_from_surface(dst_surface, &dst_point, src_surface, &src_rect)))
2554 const struct wined3d_format *format, const RECT *src_rect, UINT src_pitch, const POINT *dst_point,
2560 TRACE("surface %p, gl_info %p, format %s, src_rect %s, src_pitch %u, dst_point %s, srgb %#x, data {%#x:%p}.\n",
2562 wine_dbgstr_point(dst_point), srgb, data->buffer_object, data->addr);
2601 dst_point->x, dst_point->y, update_w, update_h, internal, row_count * row_length, addr);
2606 dst_point->x, dst_point->y, update_w, update_h, internal, row_count * row_length, addr));
2614 for (row = 0, y = dst_point->y; row < row_count; ++row)
2617 dst_point->x, y, update_w, format->block_height, internal, row_length, addr));
2632 surface->texture_target, surface->texture_level, dst_point->x, dst_point->y,
2640 dst_point->x, dst_point->y, update_w, update_h, format->glFormat, format->glType, addr);
2818 HRESULT surface_upload_from_surface(struct wined3d_surface *dst_surface, const POINT *dst_point,
2834 TRACE("dst_surface %p, dst_point %s, src_surface %p, src_rect %s.\n",
2835 dst_surface, wine_dbgstr_point(dst_point),
2847 if (!dst_point)
2851 dst_point = &p;
2853 else if (dst_point->x < 0 || dst_point->y < 0)
2880 if (update_w > dst_w || dst_point->x > dst_w - update_w
2881 || update_h > dst_h || dst_point->y > dst_h - update_h)
2893 SetRect(&dst_rect, dst_point->x, dst_point->y, dst_point->x + update_w, dst_point->y + update_h);
2921 surface_upload_data(dst_surface, gl_info, src_format, src_rect, src_pitch, dst_point, FALSE, &data);
6403 POINT dst_point = {0, 0};
6549 surface_upload_data(surface, gl_info, &format, &src_rect, src_pitch, &dst_point, srgb, &data);