wined3d: Remove unused variables.

This commit is contained in:
Alexandre Julliard 2012-07-16 14:26:32 +02:00
parent 2b4a7912ec
commit 30e0e3ffff
1 changed files with 0 additions and 4 deletions

View File

@ -2553,7 +2553,6 @@ HRESULT surface_upload_from_surface(struct wined3d_surface *dst_surface, const P
struct wined3d_format format;
UINT update_w, update_h;
UINT dst_w, dst_h;
UINT src_w, src_h;
RECT r, dst_rect;
UINT src_pitch;
POINT p;
@ -2598,9 +2597,6 @@ HRESULT surface_upload_from_surface(struct wined3d_surface *dst_surface, const P
return WINED3DERR_INVALIDCALL;
}
src_w = src_surface->resource.width;
src_h = src_surface->resource.height;
dst_w = dst_surface->resource.width;
dst_h = dst_surface->resource.height;