[PATCH 3/5] ddraw: Clear DDSD_PITCH on compressed surfaces.

Henri Verbeet hverbeet at codeweavers.com
Thu Jun 12 04:52:29 CDT 2014


---
 dlls/ddraw/surface.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/ddraw/surface.c b/dlls/ddraw/surface.c
index a326404..21ca19f 100644
--- a/dlls/ddraw/surface.c
+++ b/dlls/ddraw/surface.c
@@ -6118,7 +6118,8 @@ HRESULT ddraw_surface_init(struct ddraw_surface *surface, struct ddraw *ddraw, s
             || wined3d_desc.format == WINED3DFMT_DXT3 || wined3d_desc.format == WINED3DFMT_DXT4
             || wined3d_desc.format == WINED3DFMT_DXT5)
     {
-        surface->surface_desc.dwFlags |= DDSD_LINEARSIZE;
+        desc->dwFlags |= DDSD_LINEARSIZE;
+        desc->dwFlags &= ~DDSD_PITCH;
         if (wined3d_desc.format == WINED3DFMT_DXT1)
             surface->surface_desc.u1.dwLinearSize = max(4, desc->dwWidth) * max(4, desc->dwHeight) / 2;
         else
-- 
1.7.10.4




More information about the wine-patches mailing list