wined3d: Make the swapchain parameter to x11_copy_to_screen() const.

This commit is contained in:
Henri Verbeet 2011-07-11 22:04:31 +02:00 committed by Alexandre Julliard
parent d1b650e959
commit a86785d065
2 changed files with 3 additions and 3 deletions

View File

@ -644,9 +644,9 @@ static const struct wined3d_swapchain_ops swapchain_gl_ops =
};
/* Helper function that blits the front buffer contents to the target window. */
void x11_copy_to_screen(struct wined3d_swapchain *swapchain, const RECT *rect)
void x11_copy_to_screen(const struct wined3d_swapchain *swapchain, const RECT *rect)
{
struct wined3d_surface *front;
const struct wined3d_surface *front;
POINT offset = {0, 0};
HDC src_dc, dst_dc;
RECT draw_rect;

View File

@ -2451,7 +2451,7 @@ struct wined3d_swapchain
HWND backup_wnd;
};
void x11_copy_to_screen(struct wined3d_swapchain *swapchain, const RECT *rect) DECLSPEC_HIDDEN;
void x11_copy_to_screen(const struct wined3d_swapchain *swapchain, const RECT *rect) DECLSPEC_HIDDEN;
struct wined3d_context *swapchain_get_context(struct wined3d_swapchain *swapchain) DECLSPEC_HIDDEN;
void swapchain_destroy_contexts(struct wined3d_swapchain *swapchain) DECLSPEC_HIDDEN;