Module: wine Branch: master Commit: 5ffb08897507492ee67443d7a095446750c57857 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5ffb08897507492ee67443d7a0...
Author: Roderick Colenbrander thunderbird2k@gmail.com Date: Sun Mar 21 16:42:03 2010 +0100
wined3d: Fix depth blit regression.
---
dlls/wined3d/surface.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c index 54eb6ec..9850731 100644 --- a/dlls/wined3d/surface.c +++ b/dlls/wined3d/surface.c @@ -158,9 +158,9 @@ static void surface_get_blt_info(GLenum target, const RECT *rect_in, GLsizei w, else { rect.left = 0; - rect.top = 0; + rect.top = h; rect.right = w; - rect.bottom = h; + rect.bottom = 0; }
switch (target)