Searched defs:src_rect (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Dswapchain.c99 const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
105 TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p.\n",
106 iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect), dst_window_override, dirty_region);
109 hr = wined3d_swapchain_present(swapchain->wined3d_swapchain, src_rect,
98 d3d8_swapchain_Present(IDirect3DSwapChain8 *iface, const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region) argument
H A Ddevice.c657 static HRESULT WINAPI d3d8_device_Present(IDirect3DDevice8 *iface, const RECT *src_rect, argument
663 TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p.\n",
664 iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect), dst_window_override, dirty_region);
667 hr = wined3d_device_present(device->wined3d_device, src_rect, dst_rect,
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Dswapchain.c123 const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
129 TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#x.\n",
130 iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
134 hr = wined3d_swapchain_present(swapchain->wined3d_swapchain, src_rect,
122 d3d9_swapchain_Present(IDirect3DSwapChain9Ex *iface, const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region, DWORD flags) argument
H A Ddevice.c688 const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region)
693 TRACE("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p.\n",
694 iface, src_rect, dst_rect, dst_window_override, dirty_region);
697 hr = wined3d_device_present(device->wined3d_device, src_rect, dst_rect,
1245 IDirect3DSurface9 *src_surface, const RECT *src_rect,
1253 TRACE("iface %p, src_surface %p, src_rect %p, dst_surface %p, dst_point %p.\n",
1254 iface, src_surface, src_rect, dst_surface, dst_point);
1257 hr = wined3d_device_update_surface(device->wined3d_device, src->wined3d_surface, src_rect,
1317 const RECT *src_rect, IDirect3DSurface9 *dst_surface, const RECT *dst_rect, D3DTEXTUREFILTERTYPE filter)
1326 TRACE("iface %p, src_surface %p, src_rect
687 d3d9_device_Present(IDirect3DDevice9Ex *iface, const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region) argument
1244 d3d9_device_UpdateSurface(IDirect3DDevice9Ex *iface, IDirect3DSurface9 *src_surface, const RECT *src_rect, IDirect3DSurface9 *dst_surface, const POINT *dst_point) argument
1316 d3d9_device_StretchRect(IDirect3DDevice9Ex *iface, IDirect3DSurface9 *src_surface, const RECT *src_rect, IDirect3DSurface9 *dst_surface, const RECT *dst_rect, D3DTEXTUREFILTERTYPE filter) argument
3208 d3d9_device_PresentEx(IDirect3DDevice9Ex *iface, const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region, DWORD flags) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dswapchain.c235 const RECT *src_rect, const RECT *dst_rect)
239 UINT src_w = src_rect->right - src_rect->left;
240 UINT src_h = src_rect->bottom - src_rect->top;
244 TRACE("swapchain %p, context %p, src_rect %s, dst_rect %s.\n",
245 This, context, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect));
266 gl_info->fbo_ops.glBlitFramebuffer(src_rect->left, src_rect->top, src_rect
234 swapchain_blit(IWineD3DSwapChainImpl *This, struct wined3d_context *context, const RECT *src_rect, const RECT *dst_rect) argument
351 RECT src_rect, dst_rect; local
[all...]
H A Dsurface.c331 void draw_textured_quad(IWineD3DSurfaceImpl *src_surface, const RECT *src_rect, const RECT *dst_rect, WINED3DTEXTUREFILTERTYPE Filter) argument
336 surface_get_blt_info(src_surface->texture_target, src_rect, src_surface->pow2Width, src_surface->pow2Height, &info);
3303 const RECT *src_rect, const RECT *dst_rect_in, WINED3DTEXTUREFILTERTYPE Filter, BOOL fFastOnly)
3333 xrel = (float) (src_rect->right - src_rect->left) / (float) (dst_rect.right - dst_rect.left);
3334 yrel = (float) (src_rect->bottom - src_rect->top) / (float) (dst_rect.bottom - dst_rect.top);
3384 src_rect->left, src_rect->top,
3387 UINT yoffset = Src->currentDesc.Height - src_rect
3302 fb_copy_to_texture_direct(IWineD3DSurfaceImpl *This, IWineD3DSurface *SrcSurface, const RECT *src_rect, const RECT *dst_rect_in, WINED3DTEXTUREFILTERTYPE Filter, BOOL fFastOnly) argument
3441 fb_copy_to_texture_hwstretch(IWineD3DSurfaceImpl *This, IWineD3DSurface *SrcSurface, const RECT *src_rect, const RECT *dst_rect_in, WINED3DTEXTUREFILTERTYPE Filter) argument
3727 RECT dst_rect, src_rect; local
4208 RECT dst_rect, src_rect; local
4961 RECT src_rect, dst_rect; local
5499 ffp_blit_supported(const struct wined3d_gl_info *gl_info, enum blit_operation blit_op, const RECT *src_rect, DWORD src_usage, WINED3DPOOL src_pool, const struct wined3d_format_desc *src_format_desc, const RECT *dst_rect, DWORD dst_usage, WINED3DPOOL dst_pool, const struct wined3d_format_desc *dst_format_desc) argument
5590 cpu_blit_supported(const struct wined3d_gl_info *gl_info, enum blit_operation blit_op, const RECT *src_rect, DWORD src_usage, WINED3DPOOL src_pool, const struct wined3d_format_desc *src_format_desc, const RECT *dst_rect, DWORD dst_usage, WINED3DPOOL dst_pool, const struct wined3d_format_desc *dst_format_desc) argument
5622 fbo_blit_supported(const struct wined3d_gl_info *gl_info, enum blit_operation blit_op, const RECT *src_rect, DWORD src_usage, WINED3DPOOL src_pool, const struct wined3d_format_desc *src_format_desc, const RECT *dst_rect, DWORD dst_usage, WINED3DPOOL dst_pool, const struct wined3d_format_desc *dst_format_desc) argument
[all...]
H A Darb_program_shader.c6889 const RECT *src_rect, DWORD src_usage, WINED3DPOOL src_pool,
6944 HRESULT arbfp_blit_surface(IWineD3DDeviceImpl *device, IWineD3DSurfaceImpl *src_surface, const RECT *src_rect, argument
6995 draw_textured_quad(src_surface, src_rect, &dst_rect, Filter);
6888 arbfp_blit_supported(const struct wined3d_gl_info *gl_info, enum blit_operation blit_op, const RECT *src_rect, DWORD src_usage, WINED3DPOOL src_pool, const struct wined3d_format_desc *src_format_desc, const RECT *dst_rect, DWORD dst_usage, WINED3DPOOL dst_pool, const struct wined3d_format_desc *dst_format_desc) argument
H A Ddevice.c5489 IWineD3DSurface *src_surface, const RECT *src_rect,
5506 TRACE("iface %p, src_surface %p, src_rect %s, dst_surface %p, dst_point %s",
5507 iface, src_surface, wine_dbgstr_rect(src_rect),
5535 return IWineD3DSurface_BltFast(dst_surface, dst_x, dst_y, src_surface, src_rect, 0);
5550 update_w = src_rect ? src_rect->right - src_rect->left : src_w;
5551 update_h = src_rect ? src_rect->bottom - src_rect
5488 IWineD3DDeviceImpl_UpdateSurface(IWineD3DDevice *iface, IWineD3DSurface *src_surface, const RECT *src_rect, IWineD3DSurface *dst_surface, const POINT *dst_point) argument
6030 RECT src_rect, dst_rect; local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dswapchain.c288 const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
291 TRACE("swapchain %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#x.\n",
292 swapchain, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
306 swapchain->swapchain_ops->swapchain_present(swapchain, src_rect, dst_rect, dirty_region, flags);
315 RECT src_rect, dst_rect; local
320 SetRect(&src_rect, 0, 0, src_surface->resource.width, src_surface->resource.height);
321 dst_rect = src_rect;
332 return wined3d_surface_blt(dst_surface, &dst_rect, src_surface, &src_rect, 0, NULL, WINED3D_TEXF_POINT);
455 struct wined3d_context *context, const RECT *src_rect, const RECT *dst_rect)
458 UINT src_w = src_rect
287 wined3d_swapchain_present(struct wined3d_swapchain *swapchain, const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region, DWORD flags) argument
454 swapchain_blit(const struct wined3d_swapchain *swapchain, struct wined3d_context *context, const RECT *src_rect, const RECT *dst_rect) argument
593 RECT src_rect, dst_rect; local
[all...]
H A Dutils.c3715 const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format,
3729 src_rect, src_usage, src_pool, src_format,
3714 wined3d_select_blitter(const struct wined3d_gl_info *gl_info, enum wined3d_blit_op blit_op, const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format, const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format) argument
H A Ddevice.c3996 HRESULT CDECL wined3d_device_present(const struct wined3d_device *device, const RECT *src_rect, argument
4001 TRACE("device %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#x.\n",
4002 device, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
4007 wined3d_swapchain_present(device->swapchains[i], src_rect,
4438 struct wined3d_surface *src_surface, const RECT *src_rect,
4441 TRACE("device %p, src_surface %p, src_rect %s, dst_surface %p, dst_point %s.\n",
4442 device, src_surface, wine_dbgstr_rect(src_rect),
4452 return surface_upload_from_surface(dst_surface, dst_point, src_surface, src_rect);
4437 wined3d_device_update_surface(struct wined3d_device *device, struct wined3d_surface *src_surface, const RECT *src_rect, struct wined3d_surface *dst_surface, const POINT *dst_point) argument
H A Dsurface.c82 struct wined3d_surface *src_surface, const RECT *src_rect, DWORD flags,
85 struct wined3d_surface *src_surface, const RECT *src_rect, DWORD flags, const WINEDDBLTFX *fx,
404 const RECT *src_rect, const RECT *dst_rect, enum wined3d_texture_filter_type filter)
409 surface_get_blt_info(src_surface->texture_target, src_rect, src_surface->pow2Width, src_surface->pow2Height, &info);
1202 struct wined3d_surface *src_surface, DWORD src_location, const RECT *src_rect,
1211 TRACE("src_surface %p, src_location %s, src_rect %s,\n",
1212 src_surface, debug_surflocation(src_location), wine_dbgstr_rect(src_rect));
1283 gl_info->fbo_ops.glBlitFramebuffer(src_rect->left, src_rect->top, src_rect
403 draw_textured_quad(const struct wined3d_surface *src_surface, struct wined3d_context *context, const RECT *src_rect, const RECT *dst_rect, enum wined3d_texture_filter_type filter) argument
1201 surface_depth_blt_fbo(const struct wined3d_device *device, struct wined3d_surface *src_surface, DWORD src_location, const RECT *src_rect, struct wined3d_surface *dst_surface, DWORD dst_location, const RECT *dst_rect) argument
1301 RECT src_rect, dst_rect; local
1419 fbo_blit_supported(const struct wined3d_gl_info *gl_info, enum wined3d_blit_op blit_op, const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format, const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format) argument
1574 wined3d_surface_depth_blt(struct wined3d_surface *src_surface, DWORD src_location, const RECT *src_rect, struct wined3d_surface *dst_surface, DWORD dst_location, const RECT *dst_rect) argument
1600 RECT src_rect, dst_rect; local
2553 surface_upload_data(struct wined3d_surface *surface, const struct wined3d_gl_info *gl_info, const struct wined3d_format *format, const RECT *src_rect, UINT src_pitch, const POINT *dst_point, BOOL srgb, const struct wined3d_bo_address *data) argument
2818 surface_upload_from_surface(struct wined3d_surface *dst_surface, const POINT *dst_point, struct wined3d_surface *src_surface, const RECT *src_rect) argument
3669 wined3d_surface_update_overlay(struct wined3d_surface *surface, const RECT *src_rect, struct wined3d_surface *dst_surface, const RECT *dst_rect, DWORD flags, const WINEDDOVERLAYFX *fx) argument
5165 fb_copy_to_texture_direct(struct wined3d_surface *dst_surface, struct wined3d_surface *src_surface, const RECT *src_rect, const RECT *dst_rect_in, enum wined3d_texture_filter_type filter) argument
5280 fb_copy_to_texture_hwstretch(struct wined3d_surface *dst_surface, struct wined3d_surface *src_surface, const RECT *src_rect, const RECT *dst_rect_in, enum wined3d_texture_filter_type filter) argument
5595 RECT src_rect, dst_rect; local
5677 IWineD3DSurfaceImpl_BltOverride(struct wined3d_surface *dst_surface, const RECT *dst_rect, struct wined3d_surface *src_surface, const RECT *src_rect, DWORD flags, const WINEDDBLTFX *DDBltFx, enum wined3d_texture_filter_type filter) argument
6396 RECT src_rect = {0, 0, surface->resource.width, surface->resource.height}; local
6794 ffp_blit_supported(const struct wined3d_gl_info *gl_info, enum wined3d_blit_op blit_op, const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format, const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format) argument
6919 cpu_blit_supported(const struct wined3d_gl_info *gl_info, enum wined3d_blit_op blit_op, const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format, const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format) argument
7033 surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *dst_rect, struct wined3d_surface *src_surface, const RECT *src_rect, DWORD flags, const WINEDDBLTFX *fx, enum wined3d_texture_filter_type filter) argument
7535 static const RECT src_rect; local
[all...]
H A Darb_program_shader.c7398 const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format,
7462 RECT src_rect = *src_rect_in; local
7477 src_rect.top = src_surface->resource.height - src_rect.top;
7478 src_rect.bottom = src_surface->resource.height - src_rect.bottom;
7497 draw_textured_quad(src_surface, context, &src_rect, &dst_rect, filter);
7397 arbfp_blit_supported(const struct wined3d_gl_info *gl_info, enum wined3d_blit_op blit_op, const RECT *src_rect, DWORD src_usage, enum wined3d_pool src_pool, const struct wined3d_format *src_format, const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddevice.c694 TRACE("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p.\n",
1293 TRACE("iface %p, src_surface %p, src_rect %p, dst_surface %p, dst_point %p.\n",
1357 TRACE("iface %p, src_surface %p, src_rect %p, dst_surface %p, dst_rect %p, filter %#x.\n",
2785 const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
2788 FIXME("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p, flags %#x stub!\n",
2789 iface, src_rect, dst_rect, dst_window_override, dirty_region, flags);
2784 IDirect3DDevice9ExImpl_PresentEx(IDirect3DDevice9Ex *iface, const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region, DWORD flags) argument

Completed in 345 milliseconds