wined3d: Check validity of rects before locking surface in Blt.
[wine/gsoc_dplay.git] / dlls / wined3d / surface_base.c
blob916a3a47ee5bda072be8a744a4a468c7863ca0d2
1 /*
2 * IWineD3DSurface Implementation of management(non-rendering) functions
4 * Copyright 1998 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
6 * Copyright 2002-2005 Jason Edmeades
7 * Copyright 2002-2003 Raphael Junqueira
8 * Copyright 2004 Christian Costa
9 * Copyright 2005 Oliver Stieber
10 * Copyright 2006-2008 Stefan Dösinger for CodeWeavers
11 * Copyright 2007 Henri Verbeet
12 * Copyright 2006-2007 Roderick Colenbrander
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "config.h"
30 #include "wine/port.h"
31 #include "wined3d_private.h"
33 #include <assert.h>
35 WINE_DEFAULT_DEBUG_CHANNEL(d3d_surface);
37 /* See also float_16_to_32() in wined3d_private.h */
38 static inline unsigned short float_32_to_16(const float *in)
40 int exp = 0;
41 float tmp = fabs(*in);
42 unsigned int mantissa;
43 unsigned short ret;
45 /* Deal with special numbers */
46 if(*in == 0.0) return 0x0000;
47 if(isnan(*in)) return 0x7C01;
48 if(isinf(*in)) return (*in < 0.0 ? 0xFC00 : 0x7c00);
50 if(tmp < pow(2, 10)) {
53 tmp = tmp * 2.0;
54 exp--;
55 }while(tmp < pow(2, 10));
56 } else if(tmp >= pow(2, 11)) {
59 tmp /= 2.0;
60 exp++;
61 }while(tmp >= pow(2, 11));
64 mantissa = (unsigned int) tmp;
65 if(tmp - mantissa >= 0.5) mantissa++; /* round to nearest, away from zero */
67 exp += 10; /* Normalize the mantissa */
68 exp += 15; /* Exponent is encoded with excess 15 */
70 if(exp > 30) { /* too big */
71 ret = 0x7c00; /* INF */
72 } else if(exp <= 0) {
73 /* exp == 0: Non-normalized mantissa. Returns 0x0000 (=0.0) for too small numbers */
74 while(exp <= 0) {
75 mantissa = mantissa >> 1;
76 exp++;
78 ret = mantissa & 0x3ff;
79 } else {
80 ret = (exp << 10) | (mantissa & 0x3ff);
83 ret |= ((*in < 0.0 ? 1 : 0) << 15); /* Add the sign */
84 return ret;
88 /* Do NOT define GLINFO_LOCATION in this file. THIS CODE MUST NOT USE IT */
90 /* *******************************************
91 IWineD3DSurface IUnknown parts follow
92 ******************************************* */
93 HRESULT WINAPI IWineD3DBaseSurfaceImpl_QueryInterface(IWineD3DSurface *iface, REFIID riid, LPVOID *ppobj)
95 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
96 /* Warn ,but be nice about things */
97 TRACE("(%p)->(%s,%p)\n", This,debugstr_guid(riid),ppobj);
99 if (IsEqualGUID(riid, &IID_IUnknown)
100 || IsEqualGUID(riid, &IID_IWineD3DBase)
101 || IsEqualGUID(riid, &IID_IWineD3DResource)
102 || IsEqualGUID(riid, &IID_IWineD3DSurface)) {
103 IUnknown_AddRef((IUnknown*)iface);
104 *ppobj = This;
105 return S_OK;
107 *ppobj = NULL;
108 return E_NOINTERFACE;
111 ULONG WINAPI IWineD3DBaseSurfaceImpl_AddRef(IWineD3DSurface *iface) {
112 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
113 ULONG ref = InterlockedIncrement(&This->resource.ref);
114 TRACE("(%p) : AddRef increasing from %d\n", This,ref - 1);
115 return ref;
118 /* ****************************************************
119 IWineD3DSurface IWineD3DResource parts follow
120 **************************************************** */
121 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDevice(IWineD3DSurface *iface, IWineD3DDevice** ppDevice) {
122 return IWineD3DResourceImpl_GetDevice((IWineD3DResource *)iface, ppDevice);
125 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetPrivateData(IWineD3DSurface *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
126 return IWineD3DResourceImpl_SetPrivateData((IWineD3DResource *)iface, refguid, pData, SizeOfData, Flags);
129 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetPrivateData(IWineD3DSurface *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
130 return IWineD3DResourceImpl_GetPrivateData((IWineD3DResource *)iface, refguid, pData, pSizeOfData);
133 HRESULT WINAPI IWineD3DBaseSurfaceImpl_FreePrivateData(IWineD3DSurface *iface, REFGUID refguid) {
134 return IWineD3DResourceImpl_FreePrivateData((IWineD3DResource *)iface, refguid);
137 DWORD WINAPI IWineD3DBaseSurfaceImpl_SetPriority(IWineD3DSurface *iface, DWORD PriorityNew) {
138 return IWineD3DResourceImpl_SetPriority((IWineD3DResource *)iface, PriorityNew);
141 DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPriority(IWineD3DSurface *iface) {
142 return IWineD3DResourceImpl_GetPriority((IWineD3DResource *)iface);
145 WINED3DRESOURCETYPE WINAPI IWineD3DBaseSurfaceImpl_GetType(IWineD3DSurface *iface) {
146 TRACE("(%p) : calling resourceimpl_GetType\n", iface);
147 return IWineD3DResourceImpl_GetType((IWineD3DResource *)iface);
150 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetParent(IWineD3DSurface *iface, IUnknown **pParent) {
151 TRACE("(%p) : calling resourceimpl_GetParent\n", iface);
152 return IWineD3DResourceImpl_GetParent((IWineD3DResource *)iface, pParent);
155 /* ******************************************************
156 IWineD3DSurface IWineD3DSurface parts follow
157 ****************************************************** */
159 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetContainer(IWineD3DSurface* iface, REFIID riid, void** ppContainer) {
160 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
161 IWineD3DBase *container = 0;
163 TRACE("(This %p, riid %s, ppContainer %p)\n", This, debugstr_guid(riid), ppContainer);
165 if (!ppContainer) {
166 ERR("Called without a valid ppContainer.\n");
169 /** From MSDN:
170 * If the surface is created using CreateImageSurface/CreateOffscreenPlainSurface, CreateRenderTarget,
171 * or CreateDepthStencilSurface, the surface is considered stand alone. In this case,
172 * GetContainer will return the Direct3D device used to create the surface.
174 if (This->container) {
175 container = This->container;
176 } else {
177 container = (IWineD3DBase *)This->resource.wineD3DDevice;
180 TRACE("Relaying to QueryInterface\n");
181 return IUnknown_QueryInterface(container, riid, ppContainer);
184 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDesc(IWineD3DSurface *iface, WINED3DSURFACE_DESC *pDesc) {
185 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
187 TRACE("(%p) : copying into %p\n", This, pDesc);
188 if(pDesc->Format != NULL) *(pDesc->Format) = This->resource.format;
189 if(pDesc->Type != NULL) *(pDesc->Type) = This->resource.resourceType;
190 if(pDesc->Usage != NULL) *(pDesc->Usage) = This->resource.usage;
191 if(pDesc->Pool != NULL) *(pDesc->Pool) = This->resource.pool;
192 if(pDesc->Size != NULL) *(pDesc->Size) = This->resource.size; /* dx8 only */
193 if(pDesc->MultiSampleType != NULL) *(pDesc->MultiSampleType) = This->currentDesc.MultiSampleType;
194 if(pDesc->MultiSampleQuality != NULL) *(pDesc->MultiSampleQuality) = This->currentDesc.MultiSampleQuality;
195 if(pDesc->Width != NULL) *(pDesc->Width) = This->currentDesc.Width;
196 if(pDesc->Height != NULL) *(pDesc->Height) = This->currentDesc.Height;
197 return WINED3D_OK;
200 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetBltStatus(IWineD3DSurface *iface, DWORD Flags) {
201 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
202 TRACE("(%p)->(%x)\n", This, Flags);
204 switch (Flags)
206 case WINEDDGBS_CANBLT:
207 case WINEDDGBS_ISBLTDONE:
208 return WINED3D_OK;
210 default:
211 return WINED3DERR_INVALIDCALL;
215 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetFlipStatus(IWineD3DSurface *iface, DWORD Flags) {
216 /* XXX: DDERR_INVALIDSURFACETYPE */
218 TRACE("(%p)->(%08x)\n",iface,Flags);
219 switch (Flags) {
220 case WINEDDGFS_CANFLIP:
221 case WINEDDGFS_ISFLIPDONE:
222 return WINED3D_OK;
224 default:
225 return WINED3DERR_INVALIDCALL;
229 HRESULT WINAPI IWineD3DBaseSurfaceImpl_IsLost(IWineD3DSurface *iface) {
230 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
231 TRACE("(%p)\n", This);
233 /* D3D8 and 9 loose full devices, ddraw only surfaces */
234 return This->Flags & SFLAG_LOST ? WINED3DERR_DEVICELOST : WINED3D_OK;
237 HRESULT WINAPI IWineD3DBaseSurfaceImpl_Restore(IWineD3DSurface *iface) {
238 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
239 TRACE("(%p)\n", This);
241 /* So far we don't lose anything :) */
242 This->Flags &= ~SFLAG_LOST;
243 return WINED3D_OK;
246 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetPalette(IWineD3DSurface *iface, IWineD3DPalette *Pal) {
247 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
248 IWineD3DPaletteImpl *PalImpl = (IWineD3DPaletteImpl *) Pal;
249 TRACE("(%p)->(%p)\n", This, Pal);
251 if(This->palette == PalImpl) {
252 TRACE("Nop palette change\n");
253 return WINED3D_OK;
256 if(This->palette != NULL)
257 if(This->resource.usage & WINED3DUSAGE_RENDERTARGET)
258 This->palette->Flags &= ~WINEDDPCAPS_PRIMARYSURFACE;
260 This->palette = PalImpl;
262 if(PalImpl != NULL) {
263 if(This->resource.usage & WINED3DUSAGE_RENDERTARGET) {
264 (PalImpl)->Flags |= WINEDDPCAPS_PRIMARYSURFACE;
267 return IWineD3DSurface_RealizePalette(iface);
269 else return WINED3D_OK;
272 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetColorKey(IWineD3DSurface *iface, DWORD Flags, WINEDDCOLORKEY *CKey) {
273 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
274 TRACE("(%p)->(%08x,%p)\n", This, Flags, CKey);
276 if ((Flags & WINEDDCKEY_COLORSPACE) != 0) {
277 FIXME(" colorkey value not supported (%08x) !\n", Flags);
278 return WINED3DERR_INVALIDCALL;
281 /* Dirtify the surface, but only if a key was changed */
282 if(CKey) {
283 switch (Flags & ~WINEDDCKEY_COLORSPACE) {
284 case WINEDDCKEY_DESTBLT:
285 This->DestBltCKey = *CKey;
286 This->CKeyFlags |= WINEDDSD_CKDESTBLT;
287 break;
289 case WINEDDCKEY_DESTOVERLAY:
290 This->DestOverlayCKey = *CKey;
291 This->CKeyFlags |= WINEDDSD_CKDESTOVERLAY;
292 break;
294 case WINEDDCKEY_SRCOVERLAY:
295 This->SrcOverlayCKey = *CKey;
296 This->CKeyFlags |= WINEDDSD_CKSRCOVERLAY;
297 break;
299 case WINEDDCKEY_SRCBLT:
300 This->SrcBltCKey = *CKey;
301 This->CKeyFlags |= WINEDDSD_CKSRCBLT;
302 break;
305 else {
306 switch (Flags & ~WINEDDCKEY_COLORSPACE) {
307 case WINEDDCKEY_DESTBLT:
308 This->CKeyFlags &= ~WINEDDSD_CKDESTBLT;
309 break;
311 case WINEDDCKEY_DESTOVERLAY:
312 This->CKeyFlags &= ~WINEDDSD_CKDESTOVERLAY;
313 break;
315 case WINEDDCKEY_SRCOVERLAY:
316 This->CKeyFlags &= ~WINEDDSD_CKSRCOVERLAY;
317 break;
319 case WINEDDCKEY_SRCBLT:
320 This->CKeyFlags &= ~WINEDDSD_CKSRCBLT;
321 break;
325 return WINED3D_OK;
328 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetPalette(IWineD3DSurface *iface, IWineD3DPalette **Pal) {
329 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
330 TRACE("(%p)->(%p)\n", This, Pal);
332 *Pal = (IWineD3DPalette *) This->palette;
333 return WINED3D_OK;
336 DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPitch(IWineD3DSurface *iface) {
337 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
338 DWORD ret;
339 TRACE("(%p)\n", This);
341 /* DXTn formats don't have exact pitches as they are to the new row of blocks,
342 where each block is 4x4 pixels, 8 bytes (dxt1) and 16 bytes (dxt2/3/4/5)
343 ie pitch = (width/4) * bytes per block */
344 if (This->resource.format == WINED3DFMT_DXT1) /* DXT1 is 8 bytes per block */
345 ret = ((This->currentDesc.Width + 3) >> 2) << 3;
346 else if (This->resource.format == WINED3DFMT_DXT2 || This->resource.format == WINED3DFMT_DXT3 ||
347 This->resource.format == WINED3DFMT_DXT4 || This->resource.format == WINED3DFMT_DXT5) /* DXT2/3/4/5 is 16 bytes per block */
348 ret = ((This->currentDesc.Width + 3) >> 2) << 4;
349 else {
350 unsigned char alignment = This->resource.wineD3DDevice->surface_alignment;
351 ret = This->bytesPerPixel * This->currentDesc.Width; /* Bytes / row */
352 ret = (ret + alignment - 1) & ~(alignment - 1);
354 TRACE("(%p) Returning %d\n", This, ret);
355 return ret;
358 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetOverlayPosition(IWineD3DSurface *iface, LONG X, LONG Y) {
359 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
361 FIXME("(%p)->(%d,%d) Stub!\n", This, X, Y);
363 if(!(This->resource.usage & WINED3DUSAGE_OVERLAY))
365 TRACE("(%p): Not an overlay surface\n", This);
366 return WINEDDERR_NOTAOVERLAYSURFACE;
369 return WINED3D_OK;
372 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetOverlayPosition(IWineD3DSurface *iface, LONG *X, LONG *Y) {
373 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
375 FIXME("(%p)->(%p,%p) Stub!\n", This, X, Y);
377 if(!(This->resource.usage & WINED3DUSAGE_OVERLAY))
379 TRACE("(%p): Not an overlay surface\n", This);
380 return WINEDDERR_NOTAOVERLAYSURFACE;
383 return WINED3D_OK;
386 HRESULT WINAPI IWineD3DBaseSurfaceImpl_UpdateOverlayZOrder(IWineD3DSurface *iface, DWORD Flags, IWineD3DSurface *Ref) {
387 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
388 IWineD3DSurfaceImpl *RefImpl = (IWineD3DSurfaceImpl *) Ref;
390 FIXME("(%p)->(%08x,%p) Stub!\n", This, Flags, RefImpl);
392 if(!(This->resource.usage & WINED3DUSAGE_OVERLAY))
394 TRACE("(%p): Not an overlay surface\n", This);
395 return WINEDDERR_NOTAOVERLAYSURFACE;
398 return WINED3D_OK;
401 HRESULT WINAPI IWineD3DBaseSurfaceImpl_UpdateOverlay(IWineD3DSurface *iface, RECT *SrcRect, IWineD3DSurface *DstSurface, RECT *DstRect, DWORD Flags, WINEDDOVERLAYFX *FX) {
402 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
403 IWineD3DSurfaceImpl *Dst = (IWineD3DSurfaceImpl *) DstSurface;
404 FIXME("(%p)->(%p, %p, %p, %08x, %p)\n", This, SrcRect, Dst, DstRect, Flags, FX);
406 if(!(This->resource.usage & WINED3DUSAGE_OVERLAY))
408 TRACE("(%p): Not an overlay surface\n", This);
409 return WINEDDERR_NOTAOVERLAYSURFACE;
412 return WINED3D_OK;
415 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetClipper(IWineD3DSurface *iface, IWineD3DClipper *clipper)
417 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
418 TRACE("(%p)->(%p)\n", This, clipper);
420 This->clipper = clipper;
421 return WINED3D_OK;
424 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetClipper(IWineD3DSurface *iface, IWineD3DClipper **clipper)
426 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
427 TRACE("(%p)->(%p)\n", This, clipper);
429 *clipper = This->clipper;
430 if(*clipper) {
431 IWineD3DClipper_AddRef(*clipper);
433 return WINED3D_OK;
436 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetContainer(IWineD3DSurface *iface, IWineD3DBase *container) {
437 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
439 TRACE("This %p, container %p\n", This, container);
441 /* We can't keep a reference to the container, since the container already keeps a reference to us. */
443 TRACE("Setting container to %p from %p\n", container, This->container);
444 This->container = container;
446 return WINED3D_OK;
449 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetFormat(IWineD3DSurface *iface, WINED3DFORMAT format) {
450 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
451 const StaticPixelFormatDesc *formatEntry = getFormatDescEntry(format, NULL, NULL);
453 if (This->resource.format != WINED3DFMT_UNKNOWN) {
454 FIXME("(%p) : The format of the surface must be WINED3DFORMAT_UNKNOWN\n", This);
455 return WINED3DERR_INVALIDCALL;
458 TRACE("(%p) : Setting texture format to (%d,%s)\n", This, format, debug_d3dformat(format));
459 if (format == WINED3DFMT_UNKNOWN) {
460 This->resource.size = 0;
461 } else if (format == WINED3DFMT_DXT1) {
462 /* DXT1 is half byte per pixel */
463 This->resource.size = ((max(This->pow2Width, 4) * formatEntry->bpp) * max(This->pow2Height, 4)) >> 1;
465 } else if (format == WINED3DFMT_DXT2 || format == WINED3DFMT_DXT3 ||
466 format == WINED3DFMT_DXT4 || format == WINED3DFMT_DXT5) {
467 This->resource.size = ((max(This->pow2Width, 4) * formatEntry->bpp) * max(This->pow2Height, 4));
468 } else {
469 unsigned char alignment = This->resource.wineD3DDevice->surface_alignment;
470 This->resource.size = ((This->pow2Width * formatEntry->bpp) + alignment - 1) & ~(alignment - 1);
471 This->resource.size *= This->pow2Height;
474 if (format != WINED3DFMT_UNKNOWN) {
475 This->bytesPerPixel = formatEntry->bpp;
476 } else {
477 This->bytesPerPixel = 0;
480 This->Flags |= (WINED3DFMT_D16_LOCKABLE == format) ? SFLAG_LOCKABLE : 0;
482 This->resource.format = format;
484 TRACE("(%p) : Size %d, bytesPerPixel %d\n", This, This->resource.size, This->bytesPerPixel);
486 return WINED3D_OK;
489 HRESULT IWineD3DBaseSurfaceImpl_CreateDIBSection(IWineD3DSurface *iface) {
490 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
491 int extraline = 0;
492 SYSTEM_INFO sysInfo;
493 BITMAPINFO* b_info;
494 HDC ddc;
495 DWORD *masks;
496 const StaticPixelFormatDesc *formatEntry = getFormatDescEntry(This->resource.format, NULL, NULL);
497 UINT usage;
499 switch (This->bytesPerPixel) {
500 case 2:
501 case 4:
502 /* Allocate extra space to store the RGB bit masks. */
503 b_info = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 3 * sizeof(DWORD));
504 break;
506 case 3:
507 b_info = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER));
508 break;
510 default:
511 /* Allocate extra space for a palette. */
512 b_info = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
513 sizeof(BITMAPINFOHEADER)
514 + sizeof(RGBQUAD)
515 * (1 << (This->bytesPerPixel * 8)));
516 break;
519 if (!b_info)
520 return E_OUTOFMEMORY;
522 /* Some apps access the surface in via DWORDs, and do not take the necessary care at the end of the
523 * surface. So we need at least extra 4 bytes at the end of the surface. Check against the page size,
524 * if the last page used for the surface has at least 4 spare bytes we're safe, otherwise
525 * add an extra line to the dib section
527 GetSystemInfo(&sysInfo);
528 if( ((This->resource.size + 3) % sysInfo.dwPageSize) < 4) {
529 extraline = 1;
530 TRACE("Adding an extra line to the dib section\n");
533 b_info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
534 /* TODO: Is there a nicer way to force a specific alignment? (8 byte for ddraw) */
535 b_info->bmiHeader.biWidth = IWineD3DSurface_GetPitch(iface) / This->bytesPerPixel;
536 b_info->bmiHeader.biHeight = -This->currentDesc.Height -extraline;
537 b_info->bmiHeader.biSizeImage = ( This->currentDesc.Height + extraline) * IWineD3DSurface_GetPitch(iface);
538 b_info->bmiHeader.biPlanes = 1;
539 b_info->bmiHeader.biBitCount = This->bytesPerPixel * 8;
541 b_info->bmiHeader.biXPelsPerMeter = 0;
542 b_info->bmiHeader.biYPelsPerMeter = 0;
543 b_info->bmiHeader.biClrUsed = 0;
544 b_info->bmiHeader.biClrImportant = 0;
546 /* Get the bit masks */
547 masks = (DWORD *)b_info->bmiColors;
548 switch (This->resource.format) {
549 case WINED3DFMT_R8G8B8:
550 usage = DIB_RGB_COLORS;
551 b_info->bmiHeader.biCompression = BI_RGB;
552 break;
554 case WINED3DFMT_X1R5G5B5:
555 case WINED3DFMT_A1R5G5B5:
556 case WINED3DFMT_A4R4G4B4:
557 case WINED3DFMT_X4R4G4B4:
558 case WINED3DFMT_R3G3B2:
559 case WINED3DFMT_A8R3G3B2:
560 case WINED3DFMT_A2B10G10R10:
561 case WINED3DFMT_A8B8G8R8:
562 case WINED3DFMT_X8B8G8R8:
563 case WINED3DFMT_A2R10G10B10:
564 case WINED3DFMT_R5G6B5:
565 case WINED3DFMT_A16B16G16R16:
566 usage = 0;
567 b_info->bmiHeader.biCompression = BI_BITFIELDS;
568 masks[0] = formatEntry->redMask;
569 masks[1] = formatEntry->greenMask;
570 masks[2] = formatEntry->blueMask;
571 break;
573 default:
574 /* Don't know palette */
575 b_info->bmiHeader.biCompression = BI_RGB;
576 usage = 0;
577 break;
580 ddc = GetDC(0);
581 if (ddc == 0) {
582 HeapFree(GetProcessHeap(), 0, b_info);
583 return HRESULT_FROM_WIN32(GetLastError());
586 TRACE("Creating a DIB section with size %dx%dx%d, size=%d\n", b_info->bmiHeader.biWidth, b_info->bmiHeader.biHeight, b_info->bmiHeader.biBitCount, b_info->bmiHeader.biSizeImage);
587 This->dib.DIBsection = CreateDIBSection(ddc, b_info, usage, &This->dib.bitmap_data, 0 /* Handle */, 0 /* Offset */);
588 ReleaseDC(0, ddc);
590 if (!This->dib.DIBsection) {
591 ERR("CreateDIBSection failed!\n");
592 HeapFree(GetProcessHeap(), 0, b_info);
593 return HRESULT_FROM_WIN32(GetLastError());
596 TRACE("DIBSection at : %p\n", This->dib.bitmap_data);
597 /* copy the existing surface to the dib section */
598 if(This->resource.allocatedMemory) {
599 memcpy(This->dib.bitmap_data, This->resource.allocatedMemory, This->currentDesc.Height * IWineD3DSurface_GetPitch(iface));
600 } else {
601 /* This is to make LockRect read the gl Texture although memory is allocated */
602 This->Flags &= ~SFLAG_INSYSMEM;
604 This->dib.bitmap_size = b_info->bmiHeader.biSizeImage;
606 HeapFree(GetProcessHeap(), 0, b_info);
608 /* Now allocate a HDC */
609 This->hDC = CreateCompatibleDC(0);
610 This->dib.holdbitmap = SelectObject(This->hDC, This->dib.DIBsection);
611 TRACE("using wined3d palette %p\n", This->palette);
612 SelectPalette(This->hDC,
613 This->palette ? This->palette->hpal : 0,
614 FALSE);
616 This->Flags |= SFLAG_DIBSECTION;
618 HeapFree(GetProcessHeap(), 0, This->resource.heapMemory);
619 This->resource.heapMemory = NULL;
621 return WINED3D_OK;
624 void convert_r32f_r16f(BYTE *src, BYTE *dst, DWORD pitch_in, DWORD pitch_out, unsigned int w, unsigned int h) {
625 unsigned int x, y;
626 float *src_f;
627 unsigned short *dst_s;
629 TRACE("Converting %dx%d pixels, pitches %d %d\n", w, h, pitch_in, pitch_out);
630 for(y = 0; y < h; y++) {
631 src_f = (float *) (src + y * pitch_in);
632 dst_s = (unsigned short *) (dst + y * pitch_out);
633 for(x = 0; x < w; x++) {
634 dst_s[x] = float_32_to_16(src_f + x);
639 struct d3dfmt_convertor_desc {
640 WINED3DFORMAT from, to;
641 void (*convert)(BYTE *src, BYTE *dst, DWORD pitch_in, DWORD pitch_out, unsigned int w, unsigned int h);
644 struct d3dfmt_convertor_desc convertors[] = {
645 {WINED3DFMT_R32F, WINED3DFMT_R16F, convert_r32f_r16f},
648 static inline struct d3dfmt_convertor_desc *find_convertor(WINED3DFORMAT from, WINED3DFORMAT to) {
649 unsigned int i;
650 for(i = 0; i < (sizeof(convertors) / sizeof(convertors[0])); i++) {
651 if(convertors[i].from == from && convertors[i].to == to) {
652 return &convertors[i];
655 return NULL;
658 /*****************************************************************************
659 * surface_convert_format
661 * Creates a duplicate of a surface in a different format. Is used by Blt to
662 * blit between surfaces with different formats
664 * Parameters
665 * source: Source surface
666 * fmt: Requested destination format
668 *****************************************************************************/
669 IWineD3DSurfaceImpl *surface_convert_format(IWineD3DSurfaceImpl *source, WINED3DFORMAT to_fmt) {
670 IWineD3DSurface *ret = NULL;
671 struct d3dfmt_convertor_desc *conv;
672 WINED3DLOCKED_RECT lock_src, lock_dst;
673 HRESULT hr;
675 conv = find_convertor(source->resource.format, to_fmt);
676 if(!conv) {
677 FIXME("Cannot find a conversion function from format %s to %s\n",
678 debug_d3dformat(source->resource.format), debug_d3dformat(to_fmt));
679 return NULL;
682 IWineD3DDevice_CreateSurface((IWineD3DDevice *) source->resource.wineD3DDevice,
683 source->currentDesc.Width,
684 source->currentDesc.Height,
685 to_fmt,
686 TRUE, /* lockable */
687 TRUE, /* discard */
688 0, /* level */
689 &ret,
690 WINED3DRTYPE_SURFACE,
691 0, /* usage */
692 WINED3DPOOL_SCRATCH,
693 WINED3DMULTISAMPLE_NONE, /* TODO: Multisampled conversion */
694 0, /* MultiSampleQuality */
695 NULL, /* SharedHandle */
696 IWineD3DSurface_GetImplType((IWineD3DSurface *) source),
697 NULL); /* parent */
698 if(!ret) {
699 ERR("Failed to create a destination surface for conversion\n");
700 return NULL;
703 memset(&lock_src, 0, sizeof(lock_src));
704 memset(&lock_dst, 0, sizeof(lock_dst));
706 hr = IWineD3DSurface_LockRect((IWineD3DSurface *) source, &lock_src, NULL, WINED3DLOCK_READONLY);
707 if(FAILED(hr)) {
708 ERR("Failed to lock the source surface\n");
709 IWineD3DSurface_Release(ret);
710 return NULL;
712 hr = IWineD3DSurface_LockRect(ret, &lock_dst, NULL, WINED3DLOCK_READONLY);
713 if(FAILED(hr)) {
714 ERR("Failed to lock the dest surface\n");
715 IWineD3DSurface_UnlockRect((IWineD3DSurface *) source);
716 IWineD3DSurface_Release(ret);
717 return NULL;
720 conv->convert(lock_src.pBits, lock_dst.pBits, lock_src.Pitch, lock_dst.Pitch,
721 source->currentDesc.Width, source->currentDesc.Height);
723 IWineD3DSurface_UnlockRect(ret);
724 IWineD3DSurface_UnlockRect((IWineD3DSurface *) source);
726 return (IWineD3DSurfaceImpl *) ret;
729 /*****************************************************************************
730 * _Blt_ColorFill
732 * Helper function that fills a memory area with a specific color
734 * Params:
735 * buf: memory address to start filling at
736 * width, height: Dimensions of the area to fill
737 * bpp: Bit depth of the surface
738 * lPitch: pitch of the surface
739 * color: Color to fill with
741 *****************************************************************************/
742 static HRESULT
743 _Blt_ColorFill(BYTE *buf,
744 int width, int height,
745 int bpp, LONG lPitch,
746 DWORD color)
748 int x, y;
749 LPBYTE first;
751 /* Do first row */
753 #define COLORFILL_ROW(type) \
755 type *d = (type *) buf; \
756 for (x = 0; x < width; x++) \
757 d[x] = (type) color; \
758 break; \
760 switch(bpp)
762 case 1: COLORFILL_ROW(BYTE)
763 case 2: COLORFILL_ROW(WORD)
764 case 3:
766 BYTE *d = buf;
767 for (x = 0; x < width; x++,d+=3)
769 d[0] = (color ) & 0xFF;
770 d[1] = (color>> 8) & 0xFF;
771 d[2] = (color>>16) & 0xFF;
773 break;
775 case 4: COLORFILL_ROW(DWORD)
776 default:
777 FIXME("Color fill not implemented for bpp %d!\n", bpp*8);
778 return WINED3DERR_NOTAVAILABLE;
781 #undef COLORFILL_ROW
783 /* Now copy first row */
784 first = buf;
785 for (y = 1; y < height; y++)
787 buf += lPitch;
788 memcpy(buf, first, width * bpp);
790 return WINED3D_OK;
793 /*****************************************************************************
794 * IWineD3DSurface::Blt, SW emulation version
796 * Performs blits to a surface, eigher from a source of source-less blts
797 * This is the main functionality of DirectDraw
799 * Params:
800 * DestRect: Destination rectangle to write to
801 * SrcSurface: Source surface, can be NULL
802 * SrcRect: Source rectangle
803 *****************************************************************************/
804 HRESULT WINAPI
805 IWineD3DBaseSurfaceImpl_Blt(IWineD3DSurface *iface,
806 RECT *DestRect,
807 IWineD3DSurface *SrcSurface,
808 RECT *SrcRect,
809 DWORD Flags,
810 WINEDDBLTFX *DDBltFx,
811 WINED3DTEXTUREFILTERTYPE Filter)
813 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
814 IWineD3DSurfaceImpl *Src = (IWineD3DSurfaceImpl *) SrcSurface;
815 RECT xdst,xsrc;
816 HRESULT ret = WINED3D_OK;
817 WINED3DLOCKED_RECT dlock, slock;
818 WINED3DFORMAT dfmt = WINED3DFMT_UNKNOWN, sfmt = WINED3DFMT_UNKNOWN;
819 int bpp, srcheight, srcwidth, dstheight, dstwidth, width;
820 int x, y;
821 const StaticPixelFormatDesc *sEntry, *dEntry;
822 LPBYTE dbuf, sbuf;
823 TRACE("(%p)->(%p,%p,%p,%x,%p)\n", This, DestRect, Src, SrcRect, Flags, DDBltFx);
825 if (TRACE_ON(d3d_surface))
827 if (DestRect) TRACE("\tdestrect :%dx%d-%dx%d\n",
828 DestRect->left, DestRect->top, DestRect->right, DestRect->bottom);
829 if (SrcRect) TRACE("\tsrcrect :%dx%d-%dx%d\n",
830 SrcRect->left, SrcRect->top, SrcRect->right, SrcRect->bottom);
831 #if 0
832 TRACE("\tflags: ");
833 DDRAW_dump_DDBLT(Flags);
834 if (Flags & WINEDDBLT_DDFX)
836 TRACE("\tblitfx: ");
837 DDRAW_dump_DDBLTFX(DDBltFx->dwDDFX);
839 #endif
842 if ( (This->Flags & SFLAG_LOCKED) || ((Src != NULL) && (Src->Flags & SFLAG_LOCKED)))
844 WARN(" Surface is busy, returning DDERR_SURFACEBUSY\n");
845 return WINEDDERR_SURFACEBUSY;
848 if(Filter != WINED3DTEXF_NONE && Filter != WINED3DTEXF_POINT) {
849 /* Can happen when d3d9 apps do a StretchRect call which isn't handled in gl */
850 FIXME("Filters not supported in software blit\n");
853 /* First check for the validity of source / destination rectangles. This was
854 * verified using a test application + by MSDN.
856 if ((Src != NULL) && (SrcRect != NULL) &&
857 ((SrcRect->bottom > Src->currentDesc.Height)||(SrcRect->bottom < 0) ||
858 (SrcRect->top > Src->currentDesc.Height)||(SrcRect->top < 0) ||
859 (SrcRect->left > Src->currentDesc.Width) ||(SrcRect->left < 0) ||
860 (SrcRect->right > Src->currentDesc.Width) ||(SrcRect->right < 0) ||
861 (SrcRect->right < SrcRect->left) ||(SrcRect->bottom < SrcRect->top)))
863 WARN("Application gave us bad source rectangle for Blt.\n");
864 return WINEDDERR_INVALIDRECT;
866 /* For the Destination rect, it can be out of bounds on the condition that a clipper
867 * is set for the given surface.
869 if ((/*This->clipper == NULL*/ TRUE) && (DestRect) &&
870 ((DestRect->bottom > This->currentDesc.Height)||(DestRect->bottom < 0) ||
871 (DestRect->top > This->currentDesc.Height)||(DestRect->top < 0) ||
872 (DestRect->left > This->currentDesc.Width) ||(DestRect->left < 0) ||
873 (DestRect->right > This->currentDesc.Width) ||(DestRect->right < 0) ||
874 (DestRect->right < DestRect->left) ||(DestRect->bottom < DestRect->top)))
876 WARN("Application gave us bad destination rectangle for Blt without a clipper set.\n");
877 return WINEDDERR_INVALIDRECT;
880 /* Now handle negative values in the rectangles. Warning: only supported for now
881 in the 'simple' cases (ie not in any stretching / rotation cases).
883 First, the case where nothing is to be done.
885 if ((DestRect && ((DestRect->bottom <= 0) || (DestRect->right <= 0) ||
886 (DestRect->top >= (int) This->currentDesc.Height) ||
887 (DestRect->left >= (int) This->currentDesc.Width))) ||
888 ((Src != NULL) && (SrcRect != NULL) &&
889 ((SrcRect->bottom <= 0) || (SrcRect->right <= 0) ||
890 (SrcRect->top >= (int) Src->currentDesc.Height) ||
891 (SrcRect->left >= (int) Src->currentDesc.Width)) ))
893 TRACE("Nothing to be done !\n");
894 return WINED3D_OK;
897 if (Src == This)
899 IWineD3DSurface_LockRect(iface, &dlock, NULL, 0);
900 dfmt = This->resource.format;
901 slock = dlock;
902 sfmt = dfmt;
903 sEntry = getFormatDescEntry(sfmt, NULL, NULL);
904 dEntry = sEntry;
906 else
908 dfmt = This->resource.format;
909 dEntry = getFormatDescEntry(dfmt, NULL, NULL);
910 if (Src)
912 if(This->resource.format != Src->resource.format) {
913 Src = surface_convert_format(Src, dfmt);
914 if(!Src) {
915 /* The conv function writes a FIXME */
916 WARN("Cannot convert source surface format to dest format\n");
917 goto release;
920 IWineD3DSurface_LockRect((IWineD3DSurface *) Src, &slock, NULL, WINED3DLOCK_READONLY);
921 sfmt = Src->resource.format;
923 sEntry = getFormatDescEntry(sfmt, NULL, NULL);
924 IWineD3DSurface_LockRect(iface, &dlock,NULL,0);
927 if (!DDBltFx || !(DDBltFx->dwDDFX)) Flags &= ~WINEDDBLT_DDFX;
929 if (sEntry->isFourcc && dEntry->isFourcc)
931 memcpy(dlock.pBits, slock.pBits, This->resource.size);
932 goto release;
935 if (DestRect)
937 xdst = *DestRect;
939 else
941 xdst.top = 0;
942 xdst.bottom = This->currentDesc.Height;
943 xdst.left = 0;
944 xdst.right = This->currentDesc.Width;
947 if (SrcRect)
949 xsrc = *SrcRect;
951 else
953 if (Src)
955 xsrc.top = 0;
956 xsrc.bottom = Src->currentDesc.Height;
957 xsrc.left = 0;
958 xsrc.right = Src->currentDesc.Width;
960 else
962 memset(&xsrc,0,sizeof(xsrc));
967 /* The easy case : the source-less blits.... */
968 if (Src == NULL)
970 RECT full_rect;
971 RECT temp_rect; /* No idea if intersect rect can be the same as one of the source rect */
973 full_rect.left = 0;
974 full_rect.top = 0;
975 full_rect.right = This->currentDesc.Width;
976 full_rect.bottom = This->currentDesc.Height;
977 IntersectRect(&temp_rect, &full_rect, &xdst);
978 xdst = temp_rect;
980 else
982 /* Only handle clipping on the destination rectangle */
983 int clip_horiz = (xdst.left < 0) || (xdst.right > (int) This->currentDesc.Width );
984 int clip_vert = (xdst.top < 0) || (xdst.bottom > (int) This->currentDesc.Height);
985 if (clip_vert || clip_horiz)
987 /* Now check if this is a special case or not... */
988 if ((((xdst.bottom - xdst.top ) != (xsrc.bottom - xsrc.top )) && clip_vert ) ||
989 (((xdst.right - xdst.left) != (xsrc.right - xsrc.left)) && clip_horiz) ||
990 (Flags & WINEDDBLT_DDFX))
992 WARN("Out of screen rectangle in special case. Not handled right now.\n");
993 goto release;
996 if (clip_horiz)
998 if (xdst.left < 0) { xsrc.left -= xdst.left; xdst.left = 0; }
999 if (xdst.right > This->currentDesc.Width)
1001 xsrc.right -= (xdst.right - (int) This->currentDesc.Width);
1002 xdst.right = (int) This->currentDesc.Width;
1005 if (clip_vert)
1007 if (xdst.top < 0)
1009 xsrc.top -= xdst.top;
1010 xdst.top = 0;
1012 if (xdst.bottom > This->currentDesc.Height)
1014 xsrc.bottom -= (xdst.bottom - (int) This->currentDesc.Height);
1015 xdst.bottom = (int) This->currentDesc.Height;
1018 /* And check if after clipping something is still to be done... */
1019 if ((xdst.bottom <= 0) || (xdst.right <= 0) ||
1020 (xdst.top >= (int) This->currentDesc.Height) ||
1021 (xdst.left >= (int) This->currentDesc.Width) ||
1022 (xsrc.bottom <= 0) || (xsrc.right <= 0) ||
1023 (xsrc.top >= (int) Src->currentDesc.Height) ||
1024 (xsrc.left >= (int) Src->currentDesc.Width))
1026 TRACE("Nothing to be done after clipping !\n");
1027 goto release;
1032 bpp = This->bytesPerPixel;
1033 srcheight = xsrc.bottom - xsrc.top;
1034 srcwidth = xsrc.right - xsrc.left;
1035 dstheight = xdst.bottom - xdst.top;
1036 dstwidth = xdst.right - xdst.left;
1037 width = (xdst.right - xdst.left) * bpp;
1039 assert(width <= dlock.Pitch);
1041 dbuf = (BYTE*)dlock.pBits+(xdst.top*dlock.Pitch)+(xdst.left*bpp);
1043 if (Flags & WINEDDBLT_WAIT)
1045 Flags &= ~WINEDDBLT_WAIT;
1047 if (Flags & WINEDDBLT_ASYNC)
1049 static BOOL displayed = FALSE;
1050 if (!displayed)
1051 FIXME("Can't handle WINEDDBLT_ASYNC flag right now.\n");
1052 displayed = TRUE;
1053 Flags &= ~WINEDDBLT_ASYNC;
1055 if (Flags & WINEDDBLT_DONOTWAIT)
1057 /* WINEDDBLT_DONOTWAIT appeared in DX7 */
1058 static BOOL displayed = FALSE;
1059 if (!displayed)
1060 FIXME("Can't handle WINEDDBLT_DONOTWAIT flag right now.\n");
1061 displayed = TRUE;
1062 Flags &= ~WINEDDBLT_DONOTWAIT;
1065 /* First, all the 'source-less' blits */
1066 if (Flags & WINEDDBLT_COLORFILL)
1068 ret = _Blt_ColorFill(dbuf, dstwidth, dstheight, bpp,
1069 dlock.Pitch, DDBltFx->u5.dwFillColor);
1070 Flags &= ~WINEDDBLT_COLORFILL;
1073 if (Flags & WINEDDBLT_DEPTHFILL)
1075 FIXME("DDBLT_DEPTHFILL needs to be implemented!\n");
1077 if (Flags & WINEDDBLT_ROP)
1079 /* Catch some degenerate cases here */
1080 switch(DDBltFx->dwROP)
1082 case BLACKNESS:
1083 ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,dlock.Pitch,0);
1084 break;
1085 case 0xAA0029: /* No-op */
1086 break;
1087 case WHITENESS:
1088 ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,dlock.Pitch,~0);
1089 break;
1090 case SRCCOPY: /* well, we do that below ? */
1091 break;
1092 default:
1093 FIXME("Unsupported raster op: %08x Pattern: %p\n", DDBltFx->dwROP, DDBltFx->u5.lpDDSPattern);
1094 goto error;
1096 Flags &= ~WINEDDBLT_ROP;
1098 if (Flags & WINEDDBLT_DDROPS)
1100 FIXME("\tDdraw Raster Ops: %08x Pattern: %p\n", DDBltFx->dwDDROP, DDBltFx->u5.lpDDSPattern);
1102 /* Now the 'with source' blits */
1103 if (Src)
1105 LPBYTE sbase;
1106 int sx, xinc, sy, yinc;
1108 if (!dstwidth || !dstheight) /* hmm... stupid program ? */
1109 goto release;
1110 sbase = (BYTE*)slock.pBits+(xsrc.top*slock.Pitch)+xsrc.left*bpp;
1111 xinc = (srcwidth << 16) / dstwidth;
1112 yinc = (srcheight << 16) / dstheight;
1114 if (!Flags)
1116 /* No effects, we can cheat here */
1117 if (dstwidth == srcwidth)
1119 if (dstheight == srcheight)
1121 /* No stretching in either direction. This needs to be as
1122 * fast as possible */
1123 sbuf = sbase;
1125 /* check for overlapping surfaces */
1126 if (Src != This || xdst.top < xsrc.top ||
1127 xdst.right <= xsrc.left || xsrc.right <= xdst.left)
1129 /* no overlap, or dst above src, so copy from top downwards */
1130 for (y = 0; y < dstheight; y++)
1132 memcpy(dbuf, sbuf, width);
1133 sbuf += slock.Pitch;
1134 dbuf += dlock.Pitch;
1137 else if (xdst.top > xsrc.top) /* copy from bottom upwards */
1139 sbuf += (slock.Pitch*dstheight);
1140 dbuf += (dlock.Pitch*dstheight);
1141 for (y = 0; y < dstheight; y++)
1143 sbuf -= slock.Pitch;
1144 dbuf -= dlock.Pitch;
1145 memcpy(dbuf, sbuf, width);
1148 else /* src and dst overlapping on the same line, use memmove */
1150 for (y = 0; y < dstheight; y++)
1152 memmove(dbuf, sbuf, width);
1153 sbuf += slock.Pitch;
1154 dbuf += dlock.Pitch;
1157 } else {
1158 /* Stretching in Y direction only */
1159 for (y = sy = 0; y < dstheight; y++, sy += yinc) {
1160 sbuf = sbase + (sy >> 16) * slock.Pitch;
1161 memcpy(dbuf, sbuf, width);
1162 dbuf += dlock.Pitch;
1166 else
1168 /* Stretching in X direction */
1169 int last_sy = -1;
1170 for (y = sy = 0; y < dstheight; y++, sy += yinc)
1172 sbuf = sbase + (sy >> 16) * slock.Pitch;
1174 if ((sy >> 16) == (last_sy >> 16))
1176 /* this sourcerow is the same as last sourcerow -
1177 * copy already stretched row
1179 memcpy(dbuf, dbuf - dlock.Pitch, width);
1181 else
1183 #define STRETCH_ROW(type) { \
1184 type *s = (type *) sbuf, *d = (type *) dbuf; \
1185 for (x = sx = 0; x < dstwidth; x++, sx += xinc) \
1186 d[x] = s[sx >> 16]; \
1187 break; }
1189 switch(bpp)
1191 case 1: STRETCH_ROW(BYTE)
1192 case 2: STRETCH_ROW(WORD)
1193 case 4: STRETCH_ROW(DWORD)
1194 case 3:
1196 LPBYTE s,d = dbuf;
1197 for (x = sx = 0; x < dstwidth; x++, sx+= xinc)
1199 DWORD pixel;
1201 s = sbuf+3*(sx>>16);
1202 pixel = s[0]|(s[1]<<8)|(s[2]<<16);
1203 d[0] = (pixel )&0xff;
1204 d[1] = (pixel>> 8)&0xff;
1205 d[2] = (pixel>>16)&0xff;
1206 d+=3;
1208 break;
1210 default:
1211 FIXME("Stretched blit not implemented for bpp %d!\n", bpp*8);
1212 ret = WINED3DERR_NOTAVAILABLE;
1213 goto error;
1215 #undef STRETCH_ROW
1217 dbuf += dlock.Pitch;
1218 last_sy = sy;
1222 else
1224 LONG dstyinc = dlock.Pitch, dstxinc = bpp;
1225 DWORD keylow = 0xFFFFFFFF, keyhigh = 0, keymask = 0xFFFFFFFF;
1226 DWORD destkeylow = 0x0, destkeyhigh = 0xFFFFFFFF, destkeymask = 0xFFFFFFFF;
1227 if (Flags & (WINEDDBLT_KEYSRC | WINEDDBLT_KEYDEST | WINEDDBLT_KEYSRCOVERRIDE | WINEDDBLT_KEYDESTOVERRIDE))
1229 /* The color keying flags are checked for correctness in ddraw */
1230 if (Flags & WINEDDBLT_KEYSRC)
1232 keylow = Src->SrcBltCKey.dwColorSpaceLowValue;
1233 keyhigh = Src->SrcBltCKey.dwColorSpaceHighValue;
1235 else if (Flags & WINEDDBLT_KEYSRCOVERRIDE)
1237 keylow = DDBltFx->ddckSrcColorkey.dwColorSpaceLowValue;
1238 keyhigh = DDBltFx->ddckSrcColorkey.dwColorSpaceHighValue;
1241 if (Flags & WINEDDBLT_KEYDEST)
1243 /* Destination color keys are taken from the source surface ! */
1244 destkeylow = Src->DestBltCKey.dwColorSpaceLowValue;
1245 destkeyhigh = Src->DestBltCKey.dwColorSpaceHighValue;
1247 else if (Flags & WINEDDBLT_KEYDESTOVERRIDE)
1249 destkeylow = DDBltFx->ddckDestColorkey.dwColorSpaceLowValue;
1250 destkeyhigh = DDBltFx->ddckDestColorkey.dwColorSpaceHighValue;
1253 if(bpp == 1)
1255 keymask = 0xff;
1257 else
1259 keymask = sEntry->redMask |
1260 sEntry->greenMask |
1261 sEntry->blueMask;
1263 Flags &= ~(WINEDDBLT_KEYSRC | WINEDDBLT_KEYDEST | WINEDDBLT_KEYSRCOVERRIDE | WINEDDBLT_KEYDESTOVERRIDE);
1266 if (Flags & WINEDDBLT_DDFX)
1268 LPBYTE dTopLeft, dTopRight, dBottomLeft, dBottomRight, tmp;
1269 LONG tmpxy;
1270 dTopLeft = dbuf;
1271 dTopRight = dbuf+((dstwidth-1)*bpp);
1272 dBottomLeft = dTopLeft+((dstheight-1)*dlock.Pitch);
1273 dBottomRight = dBottomLeft+((dstwidth-1)*bpp);
1275 if (DDBltFx->dwDDFX & WINEDDBLTFX_ARITHSTRETCHY)
1277 /* I don't think we need to do anything about this flag */
1278 WARN("Flags=DDBLT_DDFX nothing done for WINEDDBLTFX_ARITHSTRETCHY\n");
1280 if (DDBltFx->dwDDFX & WINEDDBLTFX_MIRRORLEFTRIGHT)
1282 tmp = dTopRight;
1283 dTopRight = dTopLeft;
1284 dTopLeft = tmp;
1285 tmp = dBottomRight;
1286 dBottomRight = dBottomLeft;
1287 dBottomLeft = tmp;
1288 dstxinc = dstxinc *-1;
1290 if (DDBltFx->dwDDFX & WINEDDBLTFX_MIRRORUPDOWN)
1292 tmp = dTopLeft;
1293 dTopLeft = dBottomLeft;
1294 dBottomLeft = tmp;
1295 tmp = dTopRight;
1296 dTopRight = dBottomRight;
1297 dBottomRight = tmp;
1298 dstyinc = dstyinc *-1;
1300 if (DDBltFx->dwDDFX & WINEDDBLTFX_NOTEARING)
1302 /* I don't think we need to do anything about this flag */
1303 WARN("Flags=DDBLT_DDFX nothing done for WINEDDBLTFX_NOTEARING\n");
1305 if (DDBltFx->dwDDFX & WINEDDBLTFX_ROTATE180)
1307 tmp = dBottomRight;
1308 dBottomRight = dTopLeft;
1309 dTopLeft = tmp;
1310 tmp = dBottomLeft;
1311 dBottomLeft = dTopRight;
1312 dTopRight = tmp;
1313 dstxinc = dstxinc * -1;
1314 dstyinc = dstyinc * -1;
1316 if (DDBltFx->dwDDFX & WINEDDBLTFX_ROTATE270)
1318 tmp = dTopLeft;
1319 dTopLeft = dBottomLeft;
1320 dBottomLeft = dBottomRight;
1321 dBottomRight = dTopRight;
1322 dTopRight = tmp;
1323 tmpxy = dstxinc;
1324 dstxinc = dstyinc;
1325 dstyinc = tmpxy;
1326 dstxinc = dstxinc * -1;
1328 if (DDBltFx->dwDDFX & WINEDDBLTFX_ROTATE90)
1330 tmp = dTopLeft;
1331 dTopLeft = dTopRight;
1332 dTopRight = dBottomRight;
1333 dBottomRight = dBottomLeft;
1334 dBottomLeft = tmp;
1335 tmpxy = dstxinc;
1336 dstxinc = dstyinc;
1337 dstyinc = tmpxy;
1338 dstyinc = dstyinc * -1;
1340 if (DDBltFx->dwDDFX & WINEDDBLTFX_ZBUFFERBASEDEST)
1342 /* I don't think we need to do anything about this flag */
1343 WARN("Flags=WINEDDBLT_DDFX nothing done for WINEDDBLTFX_ZBUFFERBASEDEST\n");
1345 dbuf = dTopLeft;
1346 Flags &= ~(WINEDDBLT_DDFX);
1349 #define COPY_COLORKEY_FX(type) { \
1350 type *s, *d = (type *) dbuf, *dx, tmp; \
1351 for (y = sy = 0; y < dstheight; y++, sy += yinc) { \
1352 s = (type*)(sbase + (sy >> 16) * slock.Pitch); \
1353 dx = d; \
1354 for (x = sx = 0; x < dstwidth; x++, sx += xinc) { \
1355 tmp = s[sx >> 16]; \
1356 if (((tmp & keymask) < keylow || (tmp & keymask) > keyhigh) && \
1357 ((dx[0] & destkeymask) >= destkeylow && (dx[0] & destkeymask) <= destkeyhigh)) { \
1358 dx[0] = tmp; \
1360 dx = (type*)(((LPBYTE)dx)+dstxinc); \
1362 d = (type*)(((LPBYTE)d)+dstyinc); \
1364 break; }
1366 switch (bpp) {
1367 case 1: COPY_COLORKEY_FX(BYTE)
1368 case 2: COPY_COLORKEY_FX(WORD)
1369 case 4: COPY_COLORKEY_FX(DWORD)
1370 case 3:
1372 LPBYTE s,d = dbuf, dx;
1373 for (y = sy = 0; y < dstheight; y++, sy += yinc)
1375 sbuf = sbase + (sy >> 16) * slock.Pitch;
1376 dx = d;
1377 for (x = sx = 0; x < dstwidth; x++, sx+= xinc)
1379 DWORD pixel, dpixel = 0;
1380 s = sbuf+3*(sx>>16);
1381 pixel = s[0]|(s[1]<<8)|(s[2]<<16);
1382 dpixel = dx[0]|(dx[1]<<8)|(dx[2]<<16);
1383 if (((pixel & keymask) < keylow || (pixel & keymask) > keyhigh) &&
1384 ((dpixel & keymask) >= destkeylow || (dpixel & keymask) <= keyhigh))
1386 dx[0] = (pixel )&0xff;
1387 dx[1] = (pixel>> 8)&0xff;
1388 dx[2] = (pixel>>16)&0xff;
1390 dx+= dstxinc;
1392 d += dstyinc;
1394 break;
1396 default:
1397 FIXME("%s color-keyed blit not implemented for bpp %d!\n",
1398 (Flags & WINEDDBLT_KEYSRC) ? "Source" : "Destination", bpp*8);
1399 ret = WINED3DERR_NOTAVAILABLE;
1400 goto error;
1401 #undef COPY_COLORKEY_FX
1406 error:
1407 if (Flags && FIXME_ON(d3d_surface))
1409 FIXME("\tUnsupported flags: %08x\n", Flags);
1412 release:
1413 IWineD3DSurface_UnlockRect(iface);
1414 if (Src && Src != This) IWineD3DSurface_UnlockRect((IWineD3DSurface *) Src);
1415 /* Release the converted surface if any */
1416 if (Src && SrcSurface != (IWineD3DSurface *) Src) IWineD3DSurface_Release((IWineD3DSurface *) Src);
1417 return ret;
1420 /*****************************************************************************
1421 * IWineD3DSurface::BltFast, SW emulation version
1423 * This is the software implementation of BltFast, as used by GDI surfaces
1424 * and as a fallback for OpenGL surfaces. This code is taken from the old
1425 * DirectDraw code, and was originally written by TransGaming.
1427 * Params:
1428 * dstx:
1429 * dsty:
1430 * Source: Source surface to copy from
1431 * rsrc: Source rectangle
1432 * trans: Some Flags
1434 * Returns:
1435 * WINED3D_OK on success
1437 *****************************************************************************/
1438 HRESULT WINAPI
1439 IWineD3DBaseSurfaceImpl_BltFast(IWineD3DSurface *iface,
1440 DWORD dstx,
1441 DWORD dsty,
1442 IWineD3DSurface *Source,
1443 RECT *rsrc,
1444 DWORD trans)
1446 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *) iface;
1447 IWineD3DSurfaceImpl *Src = (IWineD3DSurfaceImpl *) Source;
1449 int bpp, w, h, x, y;
1450 WINED3DLOCKED_RECT dlock,slock;
1451 HRESULT ret = WINED3D_OK;
1452 RECT rsrc2;
1453 RECT lock_src, lock_dst, lock_union;
1454 BYTE *sbuf, *dbuf;
1455 const StaticPixelFormatDesc *sEntry, *dEntry;
1457 if (TRACE_ON(d3d_surface))
1459 TRACE("(%p)->(%d,%d,%p,%p,%08x)\n", This,dstx,dsty,Src,rsrc,trans);
1461 if (rsrc)
1463 TRACE("\tsrcrect: %dx%d-%dx%d\n",rsrc->left,rsrc->top,
1464 rsrc->right,rsrc->bottom);
1466 else
1468 TRACE(" srcrect: NULL\n");
1472 if ((This->Flags & SFLAG_LOCKED) ||
1473 ((Src != NULL) && (Src->Flags & SFLAG_LOCKED)))
1475 WARN(" Surface is busy, returning DDERR_SURFACEBUSY\n");
1476 return WINEDDERR_SURFACEBUSY;
1479 if (!rsrc)
1481 WARN("rsrc is NULL!\n");
1482 rsrc = &rsrc2;
1483 rsrc->left = 0;
1484 rsrc->top = 0;
1485 rsrc->right = Src->currentDesc.Width;
1486 rsrc->bottom = Src->currentDesc.Height;
1489 /* Check source rect for validity. Copied from normal Blt. Fixes Baldur's Gate.*/
1490 if ((rsrc->bottom > Src->currentDesc.Height) || (rsrc->bottom < 0) ||
1491 (rsrc->top > Src->currentDesc.Height) || (rsrc->top < 0) ||
1492 (rsrc->left > Src->currentDesc.Width) || (rsrc->left < 0) ||
1493 (rsrc->right > Src->currentDesc.Width) || (rsrc->right < 0) ||
1494 (rsrc->right < rsrc->left) || (rsrc->bottom < rsrc->top))
1496 WARN("Application gave us bad source rectangle for BltFast.\n");
1497 return WINEDDERR_INVALIDRECT;
1500 h = rsrc->bottom - rsrc->top;
1501 if (h > This->currentDesc.Height-dsty) h = This->currentDesc.Height-dsty;
1502 if (h > Src->currentDesc.Height-rsrc->top) h=Src->currentDesc.Height-rsrc->top;
1503 if (h <= 0) return WINEDDERR_INVALIDRECT;
1505 w = rsrc->right - rsrc->left;
1506 if (w > This->currentDesc.Width-dstx) w = This->currentDesc.Width-dstx;
1507 if (w > Src->currentDesc.Width-rsrc->left) w = Src->currentDesc.Width-rsrc->left;
1508 if (w <= 0) return WINEDDERR_INVALIDRECT;
1510 /* Now compute the locking rectangle... */
1511 lock_src.left = rsrc->left;
1512 lock_src.top = rsrc->top;
1513 lock_src.right = lock_src.left + w;
1514 lock_src.bottom = lock_src.top + h;
1516 lock_dst.left = dstx;
1517 lock_dst.top = dsty;
1518 lock_dst.right = dstx + w;
1519 lock_dst.bottom = dsty + h;
1521 bpp = This->bytesPerPixel;
1523 /* We need to lock the surfaces, or we won't get refreshes when done. */
1524 if (Src == This)
1526 int pitch;
1528 UnionRect(&lock_union, &lock_src, &lock_dst);
1530 /* Lock the union of the two rectangles */
1531 ret = IWineD3DSurface_LockRect(iface, &dlock, &lock_union, 0);
1532 if(ret != WINED3D_OK) goto error;
1534 pitch = dlock.Pitch;
1535 slock.Pitch = dlock.Pitch;
1537 /* Since slock was originally copied from this surface's description, we can just reuse it */
1538 assert(This->resource.allocatedMemory != NULL);
1539 sbuf = This->resource.allocatedMemory + lock_src.top * pitch + lock_src.left * bpp;
1540 dbuf = This->resource.allocatedMemory + lock_dst.top * pitch + lock_dst.left * bpp;
1541 sEntry = getFormatDescEntry(Src->resource.format, NULL, NULL);
1542 dEntry = sEntry;
1544 else
1546 ret = IWineD3DSurface_LockRect(Source, &slock, &lock_src, WINED3DLOCK_READONLY);
1547 if(ret != WINED3D_OK) goto error;
1548 ret = IWineD3DSurface_LockRect(iface, &dlock, &lock_dst, 0);
1549 if(ret != WINED3D_OK) goto error;
1551 sbuf = slock.pBits;
1552 dbuf = dlock.pBits;
1553 TRACE("Dst is at %p, Src is at %p\n", dbuf, sbuf);
1555 sEntry = getFormatDescEntry(Src->resource.format, NULL, NULL);
1556 dEntry = getFormatDescEntry(This->resource.format, NULL, NULL);
1559 /* Handle first the FOURCC surfaces... */
1560 if (sEntry->isFourcc && dEntry->isFourcc)
1562 TRACE("Fourcc -> Fourcc copy\n");
1563 if (trans)
1564 FIXME("trans arg not supported when a FOURCC surface is involved\n");
1565 if (dstx || dsty)
1566 FIXME("offset for destination surface is not supported\n");
1567 if (Src->resource.format != This->resource.format)
1569 FIXME("FOURCC->FOURCC copy only supported for the same type of surface\n");
1570 ret = WINED3DERR_WRONGTEXTUREFORMAT;
1571 goto error;
1573 /* FIXME: Watch out that the size is correct for FOURCC surfaces */
1574 memcpy(dbuf, sbuf, This->resource.size);
1575 goto error;
1577 if (sEntry->isFourcc && !dEntry->isFourcc)
1579 /* TODO: Use the libtxc_dxtn.so shared library to do
1580 * software decompression
1582 ERR("DXTC decompression not supported by now\n");
1583 goto error;
1586 if (trans & (WINEDDBLTFAST_SRCCOLORKEY | WINEDDBLTFAST_DESTCOLORKEY))
1588 DWORD keylow, keyhigh;
1589 TRACE("Color keyed copy\n");
1590 if (trans & WINEDDBLTFAST_SRCCOLORKEY)
1592 keylow = Src->SrcBltCKey.dwColorSpaceLowValue;
1593 keyhigh = Src->SrcBltCKey.dwColorSpaceHighValue;
1595 else
1597 /* I'm not sure if this is correct */
1598 FIXME("WINEDDBLTFAST_DESTCOLORKEY not fully supported yet.\n");
1599 keylow = This->DestBltCKey.dwColorSpaceLowValue;
1600 keyhigh = This->DestBltCKey.dwColorSpaceHighValue;
1603 #define COPYBOX_COLORKEY(type) { \
1604 type *d, *s, tmp; \
1605 s = (type *) sbuf; \
1606 d = (type *) dbuf; \
1607 for (y = 0; y < h; y++) { \
1608 for (x = 0; x < w; x++) { \
1609 tmp = s[x]; \
1610 if (tmp < keylow || tmp > keyhigh) d[x] = tmp; \
1612 s = (type *)((BYTE *)s + slock.Pitch); \
1613 d = (type *)((BYTE *)d + dlock.Pitch); \
1615 break; \
1618 switch (bpp) {
1619 case 1: COPYBOX_COLORKEY(BYTE)
1620 case 2: COPYBOX_COLORKEY(WORD)
1621 case 4: COPYBOX_COLORKEY(DWORD)
1622 case 3:
1624 BYTE *d, *s;
1625 DWORD tmp;
1626 s = sbuf;
1627 d = dbuf;
1628 for (y = 0; y < h; y++)
1630 for (x = 0; x < w * 3; x += 3)
1632 tmp = (DWORD)s[x] + ((DWORD)s[x + 1] << 8) + ((DWORD)s[x + 2] << 16);
1633 if (tmp < keylow || tmp > keyhigh)
1635 d[x + 0] = s[x + 0];
1636 d[x + 1] = s[x + 1];
1637 d[x + 2] = s[x + 2];
1640 s += slock.Pitch;
1641 d += dlock.Pitch;
1643 break;
1645 default:
1646 FIXME("Source color key blitting not supported for bpp %d\n",bpp*8);
1647 ret = WINED3DERR_NOTAVAILABLE;
1648 goto error;
1650 #undef COPYBOX_COLORKEY
1651 TRACE("Copy Done\n");
1653 else
1655 int width = w * bpp;
1656 INT sbufpitch, dbufpitch;
1658 TRACE("NO color key copy\n");
1659 /* Handle overlapping surfaces */
1660 if (sbuf < dbuf)
1662 sbuf += (h - 1) * slock.Pitch;
1663 dbuf += (h - 1) * dlock.Pitch;
1664 sbufpitch = -slock.Pitch;
1665 dbufpitch = -dlock.Pitch;
1667 else
1669 sbufpitch = slock.Pitch;
1670 dbufpitch = dlock.Pitch;
1672 for (y = 0; y < h; y++)
1674 /* This is pretty easy, a line for line memcpy */
1675 memmove(dbuf, sbuf, width);
1676 sbuf += sbufpitch;
1677 dbuf += dbufpitch;
1679 TRACE("Copy done\n");
1682 error:
1683 if (Src == This)
1685 IWineD3DSurface_UnlockRect(iface);
1687 else
1689 IWineD3DSurface_UnlockRect(iface);
1690 IWineD3DSurface_UnlockRect(Source);
1693 return ret;
1696 HRESULT WINAPI IWineD3DBaseSurfaceImpl_LockRect(IWineD3DSurface *iface, WINED3DLOCKED_RECT* pLockedRect, CONST RECT* pRect, DWORD Flags)
1698 IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
1700 TRACE("(%p) : rect@%p flags(%08x), output lockedRect@%p, memory@%p\n",
1701 This, pRect, Flags, pLockedRect, This->resource.allocatedMemory);
1703 pLockedRect->Pitch = IWineD3DSurface_GetPitch(iface);
1705 if (NULL == pRect)
1707 pLockedRect->pBits = This->resource.allocatedMemory;
1708 This->lockedRect.left = 0;
1709 This->lockedRect.top = 0;
1710 This->lockedRect.right = This->currentDesc.Width;
1711 This->lockedRect.bottom = This->currentDesc.Height;
1713 TRACE("Locked Rect (%p) = l %d, t %d, r %d, b %d\n",
1714 &This->lockedRect, This->lockedRect.left, This->lockedRect.top,
1715 This->lockedRect.right, This->lockedRect.bottom);
1717 else
1719 TRACE("Lock Rect (%p) = l %d, t %d, r %d, b %d\n",
1720 pRect, pRect->left, pRect->top, pRect->right, pRect->bottom);
1722 /* DXTn textures are based on compressed blocks of 4x4 pixels, each
1723 * 16 bytes large (8 bytes in case of DXT1). Because of that Pitch has
1724 * slightly different meaning compared to regular textures. For DXTn
1725 * textures Pitch is the size of a row of blocks, 4 high and "width"
1726 * long. The x offset is calculated differently as well, since moving 4
1727 * pixels to the right actually moves an entire 4x4 block to right, ie
1728 * 16 bytes (8 in case of DXT1). */
1729 if (This->resource.format == WINED3DFMT_DXT1)
1731 pLockedRect->pBits = This->resource.allocatedMemory + (pLockedRect->Pitch * pRect->top / 4) + (pRect->left * 2);
1733 else if (This->resource.format == WINED3DFMT_DXT2 || This->resource.format == WINED3DFMT_DXT3 ||
1734 This->resource.format == WINED3DFMT_DXT4 || This->resource.format == WINED3DFMT_DXT5)
1736 pLockedRect->pBits = This->resource.allocatedMemory + (pLockedRect->Pitch * pRect->top / 4) + (pRect->left * 4);
1738 else
1740 pLockedRect->pBits = This->resource.allocatedMemory +
1741 (pLockedRect->Pitch * pRect->top) +
1742 (pRect->left * This->bytesPerPixel);
1744 This->lockedRect.left = pRect->left;
1745 This->lockedRect.top = pRect->top;
1746 This->lockedRect.right = pRect->right;
1747 This->lockedRect.bottom = pRect->bottom;
1750 /* No dirtifying is needed for this surface implementation */
1751 TRACE("returning memory@%p, pitch(%d)\n", pLockedRect->pBits, pLockedRect->Pitch);
1753 return WINED3D_OK;
1756 void WINAPI IWineD3DBaseSurfaceImpl_BindTexture(IWineD3DSurface *iface) {
1757 ERR("Should not be called on base texture\n");
1758 return;