2 * Copyright (C) 2009-2010 Tony Wasserka
3 * Copyright (C) 2012 Józef Kucia
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "d3dx9_private.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(d3dx
);
32 HRESULT WINAPI
WICCreateImagingFactory_Proxy(UINT
, IWICImagingFactory
**);
34 /* Wine-specific WIC GUIDs */
35 DEFINE_GUID(GUID_WineContainerFormatTga
, 0x0c44fda1,0xa5c5,0x4298,0x96,0x85,0x47,0x3f,0xc1,0x7c,0xd3,0x22);
41 } wic_pixel_formats
[] = {
42 { &GUID_WICPixelFormat8bppIndexed
, D3DFMT_P8
},
43 { &GUID_WICPixelFormat1bppIndexed
, D3DFMT_P8
},
44 { &GUID_WICPixelFormat4bppIndexed
, D3DFMT_P8
},
45 { &GUID_WICPixelFormat8bppGray
, D3DFMT_L8
},
46 { &GUID_WICPixelFormat16bppBGR555
, D3DFMT_X1R5G5B5
},
47 { &GUID_WICPixelFormat16bppBGR565
, D3DFMT_R5G6B5
},
48 { &GUID_WICPixelFormat24bppBGR
, D3DFMT_R8G8B8
},
49 { &GUID_WICPixelFormat32bppBGR
, D3DFMT_X8R8G8B8
},
50 { &GUID_WICPixelFormat32bppBGRA
, D3DFMT_A8R8G8B8
}
53 static D3DFORMAT
wic_guid_to_d3dformat(const GUID
*guid
)
57 for (i
= 0; i
< ARRAY_SIZE(wic_pixel_formats
); i
++)
59 if (IsEqualGUID(wic_pixel_formats
[i
].wic_guid
, guid
))
60 return wic_pixel_formats
[i
].d3dformat
;
63 return D3DFMT_UNKNOWN
;
66 static const GUID
*d3dformat_to_wic_guid(D3DFORMAT format
)
70 for (i
= 0; i
< ARRAY_SIZE(wic_pixel_formats
); i
++)
72 if (wic_pixel_formats
[i
].d3dformat
== format
)
73 return wic_pixel_formats
[i
].wic_guid
;
79 /* dds_header.flags */
81 #define DDS_HEIGHT 0x2
84 #define DDS_PIXELFORMAT 0x1000
85 #define DDS_MIPMAPCOUNT 0x20000
86 #define DDS_LINEARSIZE 0x80000
87 #define DDS_DEPTH 0x800000
90 #define DDS_CAPS_COMPLEX 0x8
91 #define DDS_CAPS_TEXTURE 0x1000
92 #define DDS_CAPS_MIPMAP 0x400000
94 /* dds_header.caps2 */
95 #define DDS_CAPS2_CUBEMAP 0x200
96 #define DDS_CAPS2_CUBEMAP_POSITIVEX 0x400
97 #define DDS_CAPS2_CUBEMAP_NEGATIVEX 0x800
98 #define DDS_CAPS2_CUBEMAP_POSITIVEY 0x1000
99 #define DDS_CAPS2_CUBEMAP_NEGATIVEY 0x2000
100 #define DDS_CAPS2_CUBEMAP_POSITIVEZ 0x4000
101 #define DDS_CAPS2_CUBEMAP_NEGATIVEZ 0x8000
102 #define DDS_CAPS2_CUBEMAP_ALL_FACES ( DDS_CAPS2_CUBEMAP_POSITIVEX | DDS_CAPS2_CUBEMAP_NEGATIVEX \
103 | DDS_CAPS2_CUBEMAP_POSITIVEY | DDS_CAPS2_CUBEMAP_NEGATIVEY \
104 | DDS_CAPS2_CUBEMAP_POSITIVEZ | DDS_CAPS2_CUBEMAP_NEGATIVEZ )
105 #define DDS_CAPS2_VOLUME 0x200000
107 /* dds_pixel_format.flags */
108 #define DDS_PF_ALPHA 0x1
109 #define DDS_PF_ALPHA_ONLY 0x2
110 #define DDS_PF_FOURCC 0x4
111 #define DDS_PF_INDEXED 0x20
112 #define DDS_PF_RGB 0x40
113 #define DDS_PF_YUV 0x200
114 #define DDS_PF_LUMINANCE 0x20000
115 #define DDS_PF_BUMPLUMINANCE 0x40000
116 #define DDS_PF_BUMPDUDV 0x80000
118 struct dds_pixel_format
137 DWORD pitch_or_linear_size
;
141 struct dds_pixel_format pixel_format
;
149 static D3DFORMAT
dds_fourcc_to_d3dformat(DWORD fourcc
)
152 static const DWORD known_fourcc
[] = {
164 D3DFMT_A16B16G16R16F
,
167 D3DFMT_A32B32G32R32F
,
170 for (i
= 0; i
< ARRAY_SIZE(known_fourcc
); i
++)
172 if (known_fourcc
[i
] == fourcc
)
176 WARN("Unknown FourCC %#x\n", fourcc
);
177 return D3DFMT_UNKNOWN
;
180 static const struct {
187 } rgb_pixel_formats
[] = {
188 { 8, 0xe0, 0x1c, 0x03, 0, D3DFMT_R3G3B2
},
189 { 16, 0xf800, 0x07e0, 0x001f, 0x0000, D3DFMT_R5G6B5
},
190 { 16, 0x7c00, 0x03e0, 0x001f, 0x8000, D3DFMT_A1R5G5B5
},
191 { 16, 0x7c00, 0x03e0, 0x001f, 0x0000, D3DFMT_X1R5G5B5
},
192 { 16, 0x0f00, 0x00f0, 0x000f, 0xf000, D3DFMT_A4R4G4B4
},
193 { 16, 0x0f00, 0x00f0, 0x000f, 0x0000, D3DFMT_X4R4G4B4
},
194 { 16, 0x00e0, 0x001c, 0x0003, 0xff00, D3DFMT_A8R3G3B2
},
195 { 24, 0xff0000, 0x00ff00, 0x0000ff, 0x000000, D3DFMT_R8G8B8
},
196 { 32, 0x00ff0000, 0x0000ff00, 0x000000ff, 0xff000000, D3DFMT_A8R8G8B8
},
197 { 32, 0x00ff0000, 0x0000ff00, 0x000000ff, 0x00000000, D3DFMT_X8R8G8B8
},
198 { 32, 0x3ff00000, 0x000ffc00, 0x000003ff, 0xc0000000, D3DFMT_A2B10G10R10
},
199 { 32, 0x000003ff, 0x000ffc00, 0x3ff00000, 0xc0000000, D3DFMT_A2R10G10B10
},
200 { 32, 0x0000ffff, 0xffff0000, 0x00000000, 0x00000000, D3DFMT_G16R16
},
201 { 32, 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000, D3DFMT_A8B8G8R8
},
202 { 32, 0x000000ff, 0x0000ff00, 0x00ff0000, 0x00000000, D3DFMT_X8B8G8R8
},
205 HRESULT
lock_surface(IDirect3DSurface9
*surface
, const RECT
*surface_rect
, D3DLOCKED_RECT
*lock
,
206 IDirect3DSurface9
**temp_surface
, BOOL write
)
208 unsigned int width
, height
;
209 IDirect3DDevice9
*device
;
210 D3DSURFACE_DESC desc
;
214 lock_flag
= write
? 0 : D3DLOCK_READONLY
;
215 *temp_surface
= NULL
;
216 if (FAILED(hr
= IDirect3DSurface9_LockRect(surface
, lock
, surface_rect
, lock_flag
)))
218 IDirect3DSurface9_GetDevice(surface
, &device
);
219 IDirect3DSurface9_GetDesc(surface
, &desc
);
223 width
= surface_rect
->right
- surface_rect
->left
;
224 height
= surface_rect
->bottom
- surface_rect
->top
;
229 height
= desc
.Height
;
232 hr
= write
? IDirect3DDevice9_CreateOffscreenPlainSurface(device
, width
, height
,
233 desc
.Format
, D3DPOOL_SYSTEMMEM
, temp_surface
, NULL
)
234 : IDirect3DDevice9_CreateRenderTarget(device
, width
, height
,
235 desc
.Format
, D3DMULTISAMPLE_NONE
, 0, TRUE
, temp_surface
, NULL
);
238 WARN("Failed to create temporary surface, surface %p, format %#x,"
239 " usage %#x, pool %#x, write %#x, width %u, height %u.\n",
240 surface
, desc
.Format
, desc
.Usage
, desc
.Pool
, write
, width
, height
);
241 IDirect3DDevice9_Release(device
);
245 if (write
|| SUCCEEDED(hr
= IDirect3DDevice9_StretchRect(device
, surface
, surface_rect
,
246 *temp_surface
, NULL
, D3DTEXF_NONE
)))
247 hr
= IDirect3DSurface9_LockRect(*temp_surface
, lock
, NULL
, lock_flag
);
249 IDirect3DDevice9_Release(device
);
252 WARN("Failed to lock surface %p, write %#x, usage %#x, pool %#x.\n",
253 surface
, write
, desc
.Usage
, desc
.Pool
);
254 IDirect3DSurface9_Release(*temp_surface
);
255 *temp_surface
= NULL
;
258 TRACE("Created temporary surface %p.\n", surface
);
263 HRESULT
unlock_surface(IDirect3DSurface9
*surface
, const RECT
*surface_rect
,
264 IDirect3DSurface9
*temp_surface
, BOOL update
)
266 IDirect3DDevice9
*device
;
272 hr
= IDirect3DSurface9_UnlockRect(surface
);
276 hr
= IDirect3DSurface9_UnlockRect(temp_surface
);
281 surface_point
.x
= surface_rect
->left
;
282 surface_point
.y
= surface_rect
->top
;
289 IDirect3DSurface9_GetDevice(surface
, &device
);
290 if (FAILED(hr
= IDirect3DDevice9_UpdateSurface(device
, temp_surface
, NULL
, surface
, &surface_point
)))
291 WARN("Updating surface failed, hr %#x, surface %p, temp_surface %p.\n",
292 hr
, surface
, temp_surface
);
293 IDirect3DDevice9_Release(device
);
295 IDirect3DSurface9_Release(temp_surface
);
299 static D3DFORMAT
dds_rgb_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
303 for (i
= 0; i
< ARRAY_SIZE(rgb_pixel_formats
); i
++)
305 if (rgb_pixel_formats
[i
].bpp
== pixel_format
->bpp
306 && rgb_pixel_formats
[i
].rmask
== pixel_format
->rmask
307 && rgb_pixel_formats
[i
].gmask
== pixel_format
->gmask
308 && rgb_pixel_formats
[i
].bmask
== pixel_format
->bmask
)
310 if ((pixel_format
->flags
& DDS_PF_ALPHA
) && rgb_pixel_formats
[i
].amask
== pixel_format
->amask
)
311 return rgb_pixel_formats
[i
].format
;
312 if (rgb_pixel_formats
[i
].amask
== 0)
313 return rgb_pixel_formats
[i
].format
;
317 WARN("Unknown RGB pixel format (%#x, %#x, %#x, %#x)\n",
318 pixel_format
->rmask
, pixel_format
->gmask
, pixel_format
->bmask
, pixel_format
->amask
);
319 return D3DFMT_UNKNOWN
;
322 static D3DFORMAT
dds_luminance_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
324 if (pixel_format
->bpp
== 8)
326 if (pixel_format
->rmask
== 0xff)
328 if ((pixel_format
->flags
& DDS_PF_ALPHA
) && pixel_format
->rmask
== 0x0f && pixel_format
->amask
== 0xf0)
331 if (pixel_format
->bpp
== 16)
333 if (pixel_format
->rmask
== 0xffff)
335 if ((pixel_format
->flags
& DDS_PF_ALPHA
) && pixel_format
->rmask
== 0x00ff && pixel_format
->amask
== 0xff00)
339 WARN("Unknown luminance pixel format (bpp %u, l %#x, a %#x)\n",
340 pixel_format
->bpp
, pixel_format
->rmask
, pixel_format
->amask
);
341 return D3DFMT_UNKNOWN
;
344 static D3DFORMAT
dds_alpha_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
346 if (pixel_format
->bpp
== 8 && pixel_format
->amask
== 0xff)
349 WARN("Unknown Alpha pixel format (%u, %#x)\n", pixel_format
->bpp
, pixel_format
->rmask
);
350 return D3DFMT_UNKNOWN
;
353 static D3DFORMAT
dds_indexed_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
355 if (pixel_format
->bpp
== 8)
358 WARN("Unknown indexed pixel format (%u).\n", pixel_format
->bpp
);
359 return D3DFMT_UNKNOWN
;
362 static D3DFORMAT
dds_bump_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
364 if (pixel_format
->bpp
== 16 && pixel_format
->rmask
== 0x00ff && pixel_format
->gmask
== 0xff00)
366 if (pixel_format
->bpp
== 32 && pixel_format
->rmask
== 0x0000ffff && pixel_format
->gmask
== 0xffff0000)
367 return D3DFMT_V16U16
;
369 WARN("Unknown bump pixel format (%u, %#x, %#x, %#x, %#x)\n", pixel_format
->bpp
,
370 pixel_format
->rmask
, pixel_format
->gmask
, pixel_format
->bmask
, pixel_format
->amask
);
371 return D3DFMT_UNKNOWN
;
374 static D3DFORMAT
dds_bump_luminance_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
376 if (pixel_format
->bpp
== 32 && pixel_format
->rmask
== 0x000000ff && pixel_format
->gmask
== 0x0000ff00
377 && pixel_format
->bmask
== 0x00ff0000)
378 return D3DFMT_X8L8V8U8
;
380 WARN("Unknown bump pixel format (%u, %#x, %#x, %#x, %#x).\n", pixel_format
->bpp
,
381 pixel_format
->rmask
, pixel_format
->gmask
, pixel_format
->bmask
, pixel_format
->amask
);
382 return D3DFMT_UNKNOWN
;
385 static D3DFORMAT
dds_pixel_format_to_d3dformat(const struct dds_pixel_format
*pixel_format
)
387 TRACE("pixel_format: size %u, flags %#x, fourcc %#x, bpp %u.\n", pixel_format
->size
,
388 pixel_format
->flags
, pixel_format
->fourcc
, pixel_format
->bpp
);
389 TRACE("rmask %#x, gmask %#x, bmask %#x, amask %#x.\n", pixel_format
->rmask
, pixel_format
->gmask
,
390 pixel_format
->bmask
, pixel_format
->amask
);
392 if (pixel_format
->flags
& DDS_PF_FOURCC
)
393 return dds_fourcc_to_d3dformat(pixel_format
->fourcc
);
394 if (pixel_format
->flags
& DDS_PF_INDEXED
)
395 return dds_indexed_to_d3dformat(pixel_format
);
396 if (pixel_format
->flags
& DDS_PF_RGB
)
397 return dds_rgb_to_d3dformat(pixel_format
);
398 if (pixel_format
->flags
& DDS_PF_LUMINANCE
)
399 return dds_luminance_to_d3dformat(pixel_format
);
400 if (pixel_format
->flags
& DDS_PF_ALPHA_ONLY
)
401 return dds_alpha_to_d3dformat(pixel_format
);
402 if (pixel_format
->flags
& DDS_PF_BUMPDUDV
)
403 return dds_bump_to_d3dformat(pixel_format
);
404 if (pixel_format
->flags
& DDS_PF_BUMPLUMINANCE
)
405 return dds_bump_luminance_to_d3dformat(pixel_format
);
407 WARN("Unknown pixel format (flags %#x, fourcc %#x, bpp %u, r %#x, g %#x, b %#x, a %#x)\n",
408 pixel_format
->flags
, pixel_format
->fourcc
, pixel_format
->bpp
,
409 pixel_format
->rmask
, pixel_format
->gmask
, pixel_format
->bmask
, pixel_format
->amask
);
410 return D3DFMT_UNKNOWN
;
413 static HRESULT
d3dformat_to_dds_pixel_format(struct dds_pixel_format
*pixel_format
, D3DFORMAT d3dformat
)
417 memset(pixel_format
, 0, sizeof(*pixel_format
));
419 pixel_format
->size
= sizeof(*pixel_format
);
421 for (i
= 0; i
< ARRAY_SIZE(rgb_pixel_formats
); i
++)
423 if (rgb_pixel_formats
[i
].format
== d3dformat
)
425 pixel_format
->flags
|= DDS_PF_RGB
;
426 pixel_format
->bpp
= rgb_pixel_formats
[i
].bpp
;
427 pixel_format
->rmask
= rgb_pixel_formats
[i
].rmask
;
428 pixel_format
->gmask
= rgb_pixel_formats
[i
].gmask
;
429 pixel_format
->bmask
= rgb_pixel_formats
[i
].bmask
;
430 pixel_format
->amask
= rgb_pixel_formats
[i
].amask
;
431 if (pixel_format
->amask
) pixel_format
->flags
|= DDS_PF_ALPHA
;
436 WARN("Unknown pixel format %#x\n", d3dformat
);
440 static HRESULT
calculate_dds_surface_size(D3DFORMAT format
, UINT width
, UINT height
,
441 UINT
*pitch
, UINT
*size
)
443 const struct pixel_format_desc
*format_desc
= get_format_info(format
);
444 if (format_desc
->type
== FORMAT_UNKNOWN
)
447 if (format_desc
->block_width
!= 1 || format_desc
->block_height
!= 1)
449 *pitch
= format_desc
->block_byte_count
450 * max(1, (width
+ format_desc
->block_width
- 1) / format_desc
->block_width
);
452 * max(1, (height
+ format_desc
->block_height
- 1) / format_desc
->block_height
);
456 *pitch
= width
* format_desc
->bytes_per_pixel
;
457 *size
= *pitch
* height
;
463 static UINT
calculate_dds_file_size(D3DFORMAT format
, UINT width
, UINT height
, UINT depth
,
464 UINT miplevels
, UINT faces
)
466 UINT i
, file_size
= 0;
468 for (i
= 0; i
< miplevels
; i
++)
470 UINT pitch
, size
= 0;
471 calculate_dds_surface_size(format
, width
, height
, &pitch
, &size
);
474 width
= max(1, width
/ 2);
475 height
= max(1, height
/ 2);
476 depth
= max(1, depth
/ 2);
480 file_size
+= sizeof(struct dds_header
);
484 /************************************************************
485 * get_image_info_from_dds
487 * Fills a D3DXIMAGE_INFO structure with information
488 * about a DDS file stored in the memory.
491 * buffer [I] pointer to DDS data
492 * length [I] size of DDS data
493 * info [O] pointer to D3DXIMAGE_INFO structure
497 * Failure: D3DXERR_INVALIDDATA
500 static HRESULT
get_image_info_from_dds(const void *buffer
, UINT length
, D3DXIMAGE_INFO
*info
)
503 UINT expected_length
;
504 const struct dds_header
*header
= buffer
;
506 if (length
< sizeof(*header
) || !info
)
507 return D3DXERR_INVALIDDATA
;
509 if (header
->pixel_format
.size
!= sizeof(header
->pixel_format
))
510 return D3DXERR_INVALIDDATA
;
512 info
->Width
= header
->width
;
513 info
->Height
= header
->height
;
515 info
->MipLevels
= header
->miplevels
? header
->miplevels
: 1;
517 info
->Format
= dds_pixel_format_to_d3dformat(&header
->pixel_format
);
518 if (info
->Format
== D3DFMT_UNKNOWN
)
519 return D3DXERR_INVALIDDATA
;
521 TRACE("Pixel format is %#x\n", info
->Format
);
523 if (header
->caps2
& DDS_CAPS2_VOLUME
)
525 info
->Depth
= header
->depth
;
526 info
->ResourceType
= D3DRTYPE_VOLUMETEXTURE
;
528 else if (header
->caps2
& DDS_CAPS2_CUBEMAP
)
532 for (face
= DDS_CAPS2_CUBEMAP_POSITIVEX
; face
<= DDS_CAPS2_CUBEMAP_NEGATIVEZ
; face
<<= 1)
534 if (header
->caps2
& face
)
537 info
->ResourceType
= D3DRTYPE_CUBETEXTURE
;
541 info
->ResourceType
= D3DRTYPE_TEXTURE
;
544 expected_length
= calculate_dds_file_size(info
->Format
, info
->Width
, info
->Height
, info
->Depth
,
545 info
->MipLevels
, faces
);
546 if (length
< expected_length
)
548 WARN("File is too short %u, expected at least %u bytes\n", length
, expected_length
);
549 return D3DXERR_INVALIDDATA
;
552 info
->ImageFileFormat
= D3DXIFF_DDS
;
556 static HRESULT
load_surface_from_dds(IDirect3DSurface9
*dst_surface
, const PALETTEENTRY
*dst_palette
,
557 const RECT
*dst_rect
, const void *src_data
, const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
,
558 const D3DXIMAGE_INFO
*src_info
)
562 const struct dds_header
*header
= src_data
;
563 const BYTE
*pixels
= (BYTE
*)(header
+ 1);
565 if (src_info
->ResourceType
!= D3DRTYPE_TEXTURE
)
566 return D3DXERR_INVALIDDATA
;
568 if (FAILED(calculate_dds_surface_size(src_info
->Format
, src_info
->Width
, src_info
->Height
, &src_pitch
, &size
)))
571 return D3DXLoadSurfaceFromMemory(dst_surface
, dst_palette
, dst_rect
, pixels
, src_info
->Format
,
572 src_pitch
, NULL
, src_rect
, filter
, color_key
);
575 static HRESULT
save_dds_surface_to_memory(ID3DXBuffer
**dst_buffer
, IDirect3DSurface9
*src_surface
, const RECT
*src_rect
)
578 UINT dst_pitch
, surface_size
, file_size
;
579 D3DSURFACE_DESC src_desc
;
580 D3DLOCKED_RECT locked_rect
;
582 struct dds_header
*header
;
584 struct volume volume
;
585 const struct pixel_format_desc
*pixel_format
;
586 IDirect3DSurface9
*temp_surface
;
590 FIXME("Saving a part of a surface to a DDS file is not implemented yet\n");
594 hr
= IDirect3DSurface9_GetDesc(src_surface
, &src_desc
);
595 if (FAILED(hr
)) return hr
;
597 pixel_format
= get_format_info(src_desc
.Format
);
598 if (pixel_format
->type
== FORMAT_UNKNOWN
) return E_NOTIMPL
;
600 file_size
= calculate_dds_file_size(src_desc
.Format
, src_desc
.Width
, src_desc
.Height
, 1, 1, 1);
602 hr
= calculate_dds_surface_size(src_desc
.Format
, src_desc
.Width
, src_desc
.Height
, &dst_pitch
, &surface_size
);
603 if (FAILED(hr
)) return hr
;
605 hr
= D3DXCreateBuffer(file_size
, &buffer
);
606 if (FAILED(hr
)) return hr
;
608 header
= ID3DXBuffer_GetBufferPointer(buffer
);
609 pixels
= (BYTE
*)(header
+ 1);
611 memset(header
, 0, sizeof(*header
));
612 header
->signature
= MAKEFOURCC('D','D','S',' ');
613 /* The signature is not really part of the DDS header */
614 header
->size
= sizeof(*header
) - FIELD_OFFSET(struct dds_header
, size
);
615 header
->flags
= DDS_CAPS
| DDS_HEIGHT
| DDS_WIDTH
| DDS_PIXELFORMAT
;
616 header
->height
= src_desc
.Height
;
617 header
->width
= src_desc
.Width
;
618 header
->caps
= DDS_CAPS_TEXTURE
;
619 hr
= d3dformat_to_dds_pixel_format(&header
->pixel_format
, src_desc
.Format
);
622 ID3DXBuffer_Release(buffer
);
626 hr
= lock_surface(src_surface
, NULL
, &locked_rect
, &temp_surface
, FALSE
);
629 ID3DXBuffer_Release(buffer
);
633 volume
.width
= src_desc
.Width
;
634 volume
.height
= src_desc
.Height
;
636 copy_pixels(locked_rect
.pBits
, locked_rect
.Pitch
, 0, pixels
, dst_pitch
, 0,
637 &volume
, pixel_format
);
639 unlock_surface(src_surface
, NULL
, temp_surface
, FALSE
);
641 *dst_buffer
= buffer
;
645 HRESULT
load_volume_from_dds(IDirect3DVolume9
*dst_volume
, const PALETTEENTRY
*dst_palette
,
646 const D3DBOX
*dst_box
, const void *src_data
, const D3DBOX
*src_box
, DWORD filter
, D3DCOLOR color_key
,
647 const D3DXIMAGE_INFO
*src_info
)
649 UINT row_pitch
, slice_pitch
;
650 const struct dds_header
*header
= src_data
;
651 const BYTE
*pixels
= (BYTE
*)(header
+ 1);
653 if (src_info
->ResourceType
!= D3DRTYPE_VOLUMETEXTURE
)
654 return D3DXERR_INVALIDDATA
;
656 if (FAILED(calculate_dds_surface_size(src_info
->Format
, src_info
->Width
, src_info
->Height
, &row_pitch
, &slice_pitch
)))
659 return D3DXLoadVolumeFromMemory(dst_volume
, dst_palette
, dst_box
, pixels
, src_info
->Format
,
660 row_pitch
, slice_pitch
, NULL
, src_box
, filter
, color_key
);
663 HRESULT
load_texture_from_dds(IDirect3DTexture9
*texture
, const void *src_data
, const PALETTEENTRY
*palette
,
664 DWORD filter
, D3DCOLOR color_key
, const D3DXIMAGE_INFO
*src_info
, unsigned int skip_levels
,
665 unsigned int *loaded_miplevels
)
674 IDirect3DSurface9
*surface
;
675 const struct dds_header
*header
= src_data
;
676 const BYTE
*pixels
= (BYTE
*)(header
+ 1);
678 /* Loading a cube texture as a simple texture is also supported
679 * (only first face texture is taken). Same with volume textures. */
680 if ((src_info
->ResourceType
!= D3DRTYPE_TEXTURE
)
681 && (src_info
->ResourceType
!= D3DRTYPE_CUBETEXTURE
)
682 && (src_info
->ResourceType
!= D3DRTYPE_VOLUMETEXTURE
))
684 WARN("Trying to load a %u resource as a 2D texture, returning failure.\n", src_info
->ResourceType
);
685 return D3DXERR_INVALIDDATA
;
688 width
= src_info
->Width
;
689 height
= src_info
->Height
;
690 mip_levels
= min(src_info
->MipLevels
, IDirect3DTexture9_GetLevelCount(texture
));
691 if (src_info
->ResourceType
== D3DRTYPE_VOLUMETEXTURE
)
693 for (mip_level
= 0; mip_level
< mip_levels
+ skip_levels
; ++mip_level
)
695 hr
= calculate_dds_surface_size(src_info
->Format
, width
, height
, &src_pitch
, &mip_level_size
);
696 if (FAILED(hr
)) return hr
;
698 if (mip_level
>= skip_levels
)
700 SetRect(&src_rect
, 0, 0, width
, height
);
702 IDirect3DTexture9_GetSurfaceLevel(texture
, mip_level
- skip_levels
, &surface
);
703 hr
= D3DXLoadSurfaceFromMemory(surface
, palette
, NULL
, pixels
, src_info
->Format
, src_pitch
,
704 NULL
, &src_rect
, filter
, color_key
);
705 IDirect3DSurface9_Release(surface
);
710 pixels
+= mip_level_size
;
711 width
= max(1, width
/ 2);
712 height
= max(1, height
/ 2);
715 *loaded_miplevels
= mip_levels
- skip_levels
;
720 HRESULT
load_cube_texture_from_dds(IDirect3DCubeTexture9
*cube_texture
, const void *src_data
,
721 const PALETTEENTRY
*palette
, DWORD filter
, DWORD color_key
, const D3DXIMAGE_INFO
*src_info
)
731 IDirect3DSurface9
*surface
;
732 const struct dds_header
*header
= src_data
;
733 const BYTE
*pixels
= (BYTE
*)(header
+ 1);
735 if (src_info
->ResourceType
!= D3DRTYPE_CUBETEXTURE
)
736 return D3DXERR_INVALIDDATA
;
738 if ((header
->caps2
& DDS_CAPS2_CUBEMAP_ALL_FACES
) != DDS_CAPS2_CUBEMAP_ALL_FACES
)
740 WARN("Only full cubemaps are supported\n");
741 return D3DXERR_INVALIDDATA
;
744 mip_levels
= min(src_info
->MipLevels
, IDirect3DCubeTexture9_GetLevelCount(cube_texture
));
745 for (face
= D3DCUBEMAP_FACE_POSITIVE_X
; face
<= D3DCUBEMAP_FACE_NEGATIVE_Z
; face
++)
747 size
= src_info
->Width
;
748 for (mip_level
= 0; mip_level
< src_info
->MipLevels
; mip_level
++)
750 hr
= calculate_dds_surface_size(src_info
->Format
, size
, size
, &src_pitch
, &mip_level_size
);
751 if (FAILED(hr
)) return hr
;
753 /* if texture has fewer mip levels than DDS file, skip excessive mip levels */
754 if (mip_level
< mip_levels
)
756 SetRect(&src_rect
, 0, 0, size
, size
);
758 IDirect3DCubeTexture9_GetCubeMapSurface(cube_texture
, face
, mip_level
, &surface
);
759 hr
= D3DXLoadSurfaceFromMemory(surface
, palette
, NULL
, pixels
, src_info
->Format
, src_pitch
,
760 NULL
, &src_rect
, filter
, color_key
);
761 IDirect3DSurface9_Release(surface
);
762 if (FAILED(hr
)) return hr
;
765 pixels
+= mip_level_size
;
766 size
= max(1, size
/ 2);
773 HRESULT
load_volume_texture_from_dds(IDirect3DVolumeTexture9
*volume_texture
, const void *src_data
,
774 const PALETTEENTRY
*palette
, DWORD filter
, DWORD color_key
, const D3DXIMAGE_INFO
*src_info
)
779 UINT src_slice_pitch
;
782 UINT width
, height
, depth
;
783 IDirect3DVolume9
*volume
;
784 const struct dds_header
*header
= src_data
;
785 const BYTE
*pixels
= (BYTE
*)(header
+ 1);
787 if (src_info
->ResourceType
!= D3DRTYPE_VOLUMETEXTURE
)
788 return D3DXERR_INVALIDDATA
;
790 width
= src_info
->Width
;
791 height
= src_info
->Height
;
792 depth
= src_info
->Depth
;
793 mip_levels
= min(src_info
->MipLevels
, IDirect3DVolumeTexture9_GetLevelCount(volume_texture
));
795 for (mip_level
= 0; mip_level
< mip_levels
; mip_level
++)
797 hr
= calculate_dds_surface_size(src_info
->Format
, width
, height
, &src_row_pitch
, &src_slice_pitch
);
798 if (FAILED(hr
)) return hr
;
800 hr
= IDirect3DVolumeTexture9_GetVolumeLevel(volume_texture
, mip_level
, &volume
);
801 if (FAILED(hr
)) return hr
;
805 src_box
.Right
= width
;
806 src_box
.Bottom
= height
;
808 src_box
.Back
= depth
;
810 hr
= D3DXLoadVolumeFromMemory(volume
, palette
, NULL
, pixels
, src_info
->Format
,
811 src_row_pitch
, src_slice_pitch
, NULL
, &src_box
, filter
, color_key
);
813 IDirect3DVolume9_Release(volume
);
814 if (FAILED(hr
)) return hr
;
816 pixels
+= depth
* src_slice_pitch
;
817 width
= max(1, width
/ 2);
818 height
= max(1, height
/ 2);
819 depth
= max(1, depth
/ 2);
825 static BOOL
convert_dib_to_bmp(const void **data
, unsigned int *size
)
830 BITMAPFILEHEADER
*header
;
834 if ((*size
< 4) || (*size
< (header_size
= *(ULONG
*)*data
)))
837 if ((header_size
== sizeof(BITMAPINFOHEADER
)) ||
838 (header_size
== sizeof(BITMAPV4HEADER
)) ||
839 (header_size
== sizeof(BITMAPV5HEADER
)) ||
840 (header_size
== 64 /* sizeof(BITMAPCOREHEADER2) */))
842 /* All structures begin with the same memory layout as BITMAPINFOHEADER */
843 BITMAPINFOHEADER
*info_header
= (BITMAPINFOHEADER
*)*data
;
844 count
= info_header
->biClrUsed
;
846 if (!count
&& info_header
->biBitCount
<= 8)
847 count
= 1 << info_header
->biBitCount
;
849 offset
= sizeof(BITMAPFILEHEADER
) + header_size
+ sizeof(RGBQUAD
) * count
;
851 /* For BITMAPINFOHEADER with BI_BITFIELDS compression, there are 3 additional color masks after header */
852 if ((info_header
->biSize
== sizeof(BITMAPINFOHEADER
)) && (info_header
->biCompression
== BI_BITFIELDS
))
853 offset
+= 3 * sizeof(DWORD
);
855 else if (header_size
== sizeof(BITMAPCOREHEADER
))
857 BITMAPCOREHEADER
*core_header
= (BITMAPCOREHEADER
*)*data
;
859 if (core_header
->bcBitCount
<= 8)
860 count
= 1 << core_header
->bcBitCount
;
862 offset
= sizeof(BITMAPFILEHEADER
) + header_size
+ sizeof(RGBTRIPLE
) * count
;
869 TRACE("Converting DIB file to BMP\n");
871 new_size
= *size
+ sizeof(BITMAPFILEHEADER
);
872 new_data
= HeapAlloc(GetProcessHeap(), 0, new_size
);
873 CopyMemory(new_data
+ sizeof(BITMAPFILEHEADER
), *data
, *size
);
876 header
= (BITMAPFILEHEADER
*)new_data
;
877 header
->bfType
= 0x4d42; /* BM */
878 header
->bfSize
= new_size
;
879 header
->bfReserved1
= 0;
880 header
->bfReserved2
= 0;
881 header
->bfOffBits
= offset
;
883 /* Update input data */
890 /************************************************************
891 * D3DXGetImageInfoFromFileInMemory
893 * Fills a D3DXIMAGE_INFO structure with info about an image
896 * data [I] pointer to the image file data
897 * datasize [I] size of the passed data
898 * info [O] pointer to the destination structure
901 * Success: D3D_OK, if info is not NULL and data and datasize make up a valid image file or
902 * if info is NULL and data and datasize are not NULL
903 * Failure: D3DXERR_INVALIDDATA, if data is no valid image file and datasize and info are not NULL
904 * D3DERR_INVALIDCALL, if data is NULL or
908 * datasize may be bigger than the actual file size
911 HRESULT WINAPI
D3DXGetImageInfoFromFileInMemory(const void *data
, UINT datasize
, D3DXIMAGE_INFO
*info
)
913 IWICImagingFactory
*factory
;
914 IWICBitmapDecoder
*decoder
= NULL
;
919 TRACE("(%p, %d, %p)\n", data
, datasize
, info
);
921 if (!data
|| !datasize
)
922 return D3DERR_INVALIDCALL
;
927 if ((datasize
>= 4) && !strncmp(data
, "DDS ", 4)) {
928 TRACE("File type is DDS\n");
929 return get_image_info_from_dds(data
, datasize
, info
);
932 /* In case of DIB file, convert it to BMP */
933 dib
= convert_dib_to_bmp(&data
, &datasize
);
935 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
938 IWICImagingFactory_CreateStream(factory
, &stream
);
939 IWICStream_InitializeFromMemory(stream
, (BYTE
*)data
, datasize
);
940 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, (IStream
*)stream
, NULL
, 0, &decoder
);
941 IWICStream_Release(stream
);
942 IWICImagingFactory_Release(factory
);
946 if ((datasize
>= 2) && (!strncmp(data
, "P3", 2) || !strncmp(data
, "P6", 2)))
947 FIXME("File type PPM is not supported yet\n");
948 else if ((datasize
>= 10) && !strncmp(data
, "#?RADIANCE", 10))
949 FIXME("File type HDR is not supported yet\n");
950 else if ((datasize
>= 2) && (!strncmp(data
, "PF", 2) || !strncmp(data
, "Pf", 2)))
951 FIXME("File type PFM is not supported yet\n");
955 GUID container_format
;
958 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &container_format
);
960 if (IsEqualGUID(&container_format
, &GUID_ContainerFormatBmp
)) {
962 TRACE("File type is DIB\n");
963 info
->ImageFileFormat
= D3DXIFF_DIB
;
965 TRACE("File type is BMP\n");
966 info
->ImageFileFormat
= D3DXIFF_BMP
;
968 } else if (IsEqualGUID(&container_format
, &GUID_ContainerFormatPng
)) {
969 TRACE("File type is PNG\n");
970 info
->ImageFileFormat
= D3DXIFF_PNG
;
971 } else if(IsEqualGUID(&container_format
, &GUID_ContainerFormatJpeg
)) {
972 TRACE("File type is JPG\n");
973 info
->ImageFileFormat
= D3DXIFF_JPG
;
974 } else if(IsEqualGUID(&container_format
, &GUID_WineContainerFormatTga
)) {
975 TRACE("File type is TGA\n");
976 info
->ImageFileFormat
= D3DXIFF_TGA
;
978 WARN("Unsupported image file format %s\n", debugstr_guid(&container_format
));
979 hr
= D3DXERR_INVALIDDATA
;
984 hr
= IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
985 if (SUCCEEDED(hr
) && !frame_count
)
986 hr
= D3DXERR_INVALIDDATA
;
989 IWICBitmapFrameDecode
*frame
= NULL
;
991 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
994 hr
= IWICBitmapFrameDecode_GetSize(frame
, &info
->Width
, &info
->Height
);
997 WICPixelFormatGUID pixel_format
;
999 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &pixel_format
);
1000 if (SUCCEEDED(hr
)) {
1001 info
->Format
= wic_guid_to_d3dformat(&pixel_format
);
1002 if (info
->Format
== D3DFMT_UNKNOWN
) {
1003 WARN("Unsupported pixel format %s\n", debugstr_guid(&pixel_format
));
1004 hr
= D3DXERR_INVALIDDATA
;
1010 IWICBitmapFrameDecode_Release(frame
);
1013 info
->MipLevels
= 1;
1014 info
->ResourceType
= D3DRTYPE_TEXTURE
;
1019 IWICBitmapDecoder_Release(decoder
);
1022 HeapFree(GetProcessHeap(), 0, (void*)data
);
1025 TRACE("Invalid or unsupported image file\n");
1026 return D3DXERR_INVALIDDATA
;
1032 /************************************************************
1033 * D3DXGetImageInfoFromFile
1036 * Success: D3D_OK, if we successfully load a valid image file or
1037 * if we successfully load a file which is no valid image and info is NULL
1038 * Failure: D3DXERR_INVALIDDATA, if we fail to load file or
1039 * if file is not a valid image file and info is not NULL
1040 * D3DERR_INVALIDCALL, if file is NULL
1043 HRESULT WINAPI
D3DXGetImageInfoFromFileA(const char *file
, D3DXIMAGE_INFO
*info
)
1049 TRACE("file %s, info %p.\n", debugstr_a(file
), info
);
1051 if( !file
) return D3DERR_INVALIDCALL
;
1053 strlength
= MultiByteToWideChar(CP_ACP
, 0, file
, -1, NULL
, 0);
1054 widename
= HeapAlloc(GetProcessHeap(), 0, strlength
* sizeof(*widename
));
1055 MultiByteToWideChar(CP_ACP
, 0, file
, -1, widename
, strlength
);
1057 hr
= D3DXGetImageInfoFromFileW(widename
, info
);
1058 HeapFree(GetProcessHeap(), 0, widename
);
1063 HRESULT WINAPI
D3DXGetImageInfoFromFileW(const WCHAR
*file
, D3DXIMAGE_INFO
*info
)
1069 TRACE("file %s, info %p.\n", debugstr_w(file
), info
);
1072 return D3DERR_INVALIDCALL
;
1074 if (FAILED(map_view_of_file(file
, &buffer
, &size
)))
1075 return D3DXERR_INVALIDDATA
;
1077 hr
= D3DXGetImageInfoFromFileInMemory(buffer
, size
, info
);
1078 UnmapViewOfFile(buffer
);
1083 /************************************************************
1084 * D3DXGetImageInfoFromResource
1087 * Success: D3D_OK, if resource is a valid image file
1088 * Failure: D3DXERR_INVALIDDATA, if resource is no valid image file or NULL or
1089 * if we fail to load resource
1092 HRESULT WINAPI
D3DXGetImageInfoFromResourceA(HMODULE module
, const char *resource
, D3DXIMAGE_INFO
*info
)
1098 TRACE("module %p, resource %s, info %p.\n", module
, debugstr_a(resource
), info
);
1100 if (!(resinfo
= FindResourceA(module
, resource
, (const char *)RT_RCDATA
))
1101 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1102 && !(resinfo
= FindResourceA(module
, resource
, (const char *)RT_BITMAP
)))
1103 return D3DXERR_INVALIDDATA
;
1105 if (FAILED(load_resource_into_memory(module
, resinfo
, &buffer
, &size
)))
1106 return D3DXERR_INVALIDDATA
;
1108 return D3DXGetImageInfoFromFileInMemory(buffer
, size
, info
);
1111 HRESULT WINAPI
D3DXGetImageInfoFromResourceW(HMODULE module
, const WCHAR
*resource
, D3DXIMAGE_INFO
*info
)
1117 TRACE("module %p, resource %s, info %p.\n", module
, debugstr_w(resource
), info
);
1119 if (!(resinfo
= FindResourceW(module
, resource
, (const WCHAR
*)RT_RCDATA
))
1120 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1121 && !(resinfo
= FindResourceW(module
, resource
, (const WCHAR
*)RT_BITMAP
)))
1122 return D3DXERR_INVALIDDATA
;
1124 if (FAILED(load_resource_into_memory(module
, resinfo
, &buffer
, &size
)))
1125 return D3DXERR_INVALIDDATA
;
1127 return D3DXGetImageInfoFromFileInMemory(buffer
, size
, info
);
1130 /************************************************************
1131 * D3DXLoadSurfaceFromFileInMemory
1133 * Loads data from a given buffer into a surface and fills a given
1134 * D3DXIMAGE_INFO structure with info about the source data.
1137 * pDestSurface [I] pointer to the surface
1138 * pDestPalette [I] palette to use
1139 * pDestRect [I] to be filled area of the surface
1140 * pSrcData [I] pointer to the source data
1141 * SrcDataSize [I] size of the source data in bytes
1142 * pSrcRect [I] area of the source data to load
1143 * dwFilter [I] filter to apply on stretching
1144 * Colorkey [I] colorkey
1145 * pSrcInfo [O] pointer to a D3DXIMAGE_INFO structure
1149 * Failure: D3DERR_INVALIDCALL, if pDestSurface, pSrcData or SrcDataSize is NULL
1150 * D3DXERR_INVALIDDATA, if pSrcData is no valid image file
1153 HRESULT WINAPI
D3DXLoadSurfaceFromFileInMemory(IDirect3DSurface9
*pDestSurface
,
1154 const PALETTEENTRY
*pDestPalette
, const RECT
*pDestRect
, const void *pSrcData
, UINT SrcDataSize
,
1155 const RECT
*pSrcRect
, DWORD dwFilter
, D3DCOLOR Colorkey
, D3DXIMAGE_INFO
*pSrcInfo
)
1157 D3DXIMAGE_INFO imginfo
;
1160 IWICImagingFactory
*factory
= NULL
;
1161 IWICBitmapDecoder
*decoder
;
1162 IWICBitmapFrameDecode
*bitmapframe
;
1165 const struct pixel_format_desc
*formatdesc
;
1169 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_data %p, src_data_size %u, "
1170 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1171 pDestSurface
, pDestPalette
, wine_dbgstr_rect(pDestRect
), pSrcData
, SrcDataSize
,
1172 wine_dbgstr_rect(pSrcRect
), dwFilter
, Colorkey
, pSrcInfo
);
1174 if (!pDestSurface
|| !pSrcData
|| !SrcDataSize
)
1175 return D3DERR_INVALIDCALL
;
1177 hr
= D3DXGetImageInfoFromFileInMemory(pSrcData
, SrcDataSize
, &imginfo
);
1184 wicrect
.X
= pSrcRect
->left
;
1185 wicrect
.Y
= pSrcRect
->top
;
1186 wicrect
.Width
= pSrcRect
->right
- pSrcRect
->left
;
1187 wicrect
.Height
= pSrcRect
->bottom
- pSrcRect
->top
;
1193 wicrect
.Width
= imginfo
.Width
;
1194 wicrect
.Height
= imginfo
.Height
;
1197 SetRect(&rect
, wicrect
.X
, wicrect
.Y
, wicrect
.X
+ wicrect
.Width
, wicrect
.Y
+ wicrect
.Height
);
1199 if (imginfo
.ImageFileFormat
== D3DXIFF_DDS
)
1201 hr
= load_surface_from_dds(pDestSurface
, pDestPalette
, pDestRect
, pSrcData
, &rect
,
1202 dwFilter
, Colorkey
, &imginfo
);
1203 if (SUCCEEDED(hr
) && pSrcInfo
)
1204 *pSrcInfo
= imginfo
;
1208 if (imginfo
.ImageFileFormat
== D3DXIFF_DIB
)
1209 convert_dib_to_bmp(&pSrcData
, &SrcDataSize
);
1211 if (FAILED(WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
)))
1214 if (FAILED(IWICImagingFactory_CreateStream(factory
, &stream
)))
1216 IWICImagingFactory_Release(factory
);
1221 IWICStream_InitializeFromMemory(stream
, (BYTE
*)pSrcData
, SrcDataSize
);
1223 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, (IStream
*)stream
, NULL
, 0, &decoder
);
1225 IWICStream_Release(stream
);
1230 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &bitmapframe
);
1235 formatdesc
= get_format_info(imginfo
.Format
);
1237 if (formatdesc
->type
== FORMAT_UNKNOWN
)
1239 FIXME("Unsupported pixel format\n");
1240 hr
= D3DXERR_INVALIDDATA
;
1246 PALETTEENTRY
*palette
= NULL
;
1247 WICColor
*colors
= NULL
;
1249 pitch
= formatdesc
->bytes_per_pixel
* wicrect
.Width
;
1250 buffer
= HeapAlloc(GetProcessHeap(), 0, pitch
* wicrect
.Height
);
1252 hr
= IWICBitmapFrameDecode_CopyPixels(bitmapframe
, &wicrect
, pitch
,
1253 pitch
* wicrect
.Height
, buffer
);
1255 if (SUCCEEDED(hr
) && (formatdesc
->type
== FORMAT_INDEX
))
1257 IWICPalette
*wic_palette
= NULL
;
1260 hr
= IWICImagingFactory_CreatePalette(factory
, &wic_palette
);
1262 hr
= IWICBitmapFrameDecode_CopyPalette(bitmapframe
, wic_palette
);
1264 hr
= IWICPalette_GetColorCount(wic_palette
, &nb_colors
);
1267 colors
= HeapAlloc(GetProcessHeap(), 0, nb_colors
* sizeof(colors
[0]));
1268 palette
= HeapAlloc(GetProcessHeap(), 0, nb_colors
* sizeof(palette
[0]));
1269 if (!colors
|| !palette
)
1273 hr
= IWICPalette_GetColors(wic_palette
, nb_colors
, colors
, &nb_colors
);
1278 /* Convert colors from WICColor (ARGB) to PALETTEENTRY (ABGR) */
1279 for (i
= 0; i
< nb_colors
; i
++)
1281 palette
[i
].peRed
= (colors
[i
] >> 16) & 0xff;
1282 palette
[i
].peGreen
= (colors
[i
] >> 8) & 0xff;
1283 palette
[i
].peBlue
= colors
[i
] & 0xff;
1284 palette
[i
].peFlags
= (colors
[i
] >> 24) & 0xff; /* peFlags is the alpha component in DX8 and higher */
1288 IWICPalette_Release(wic_palette
);
1293 hr
= D3DXLoadSurfaceFromMemory(pDestSurface
, pDestPalette
, pDestRect
,
1294 buffer
, imginfo
.Format
, pitch
,
1295 palette
, &rect
, dwFilter
, Colorkey
);
1298 HeapFree(GetProcessHeap(), 0, colors
);
1299 HeapFree(GetProcessHeap(), 0, palette
);
1300 HeapFree(GetProcessHeap(), 0, buffer
);
1303 IWICBitmapFrameDecode_Release(bitmapframe
);
1306 IWICBitmapDecoder_Release(decoder
);
1310 IWICImagingFactory_Release(factory
);
1312 if (imginfo
.ImageFileFormat
== D3DXIFF_DIB
)
1313 HeapFree(GetProcessHeap(), 0, (void*)pSrcData
);
1316 return D3DXERR_INVALIDDATA
;
1319 *pSrcInfo
= imginfo
;
1324 HRESULT WINAPI
D3DXLoadSurfaceFromFileA(IDirect3DSurface9
*dst_surface
,
1325 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, const char *src_file
,
1326 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1332 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_file %s, "
1333 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1334 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), debugstr_a(src_file
),
1335 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1337 if (!src_file
|| !dst_surface
)
1338 return D3DERR_INVALIDCALL
;
1340 strlength
= MultiByteToWideChar(CP_ACP
, 0, src_file
, -1, NULL
, 0);
1341 src_file_w
= HeapAlloc(GetProcessHeap(), 0, strlength
* sizeof(*src_file_w
));
1342 MultiByteToWideChar(CP_ACP
, 0, src_file
, -1, src_file_w
, strlength
);
1344 hr
= D3DXLoadSurfaceFromFileW(dst_surface
, dst_palette
, dst_rect
,
1345 src_file_w
, src_rect
, filter
, color_key
, src_info
);
1346 HeapFree(GetProcessHeap(), 0, src_file_w
);
1351 HRESULT WINAPI
D3DXLoadSurfaceFromFileW(IDirect3DSurface9
*dst_surface
,
1352 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, const WCHAR
*src_file
,
1353 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1359 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_file %s, "
1360 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1361 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), debugstr_w(src_file
),
1362 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1364 if (!src_file
|| !dst_surface
)
1365 return D3DERR_INVALIDCALL
;
1367 if (FAILED(map_view_of_file(src_file
, &data
, &data_size
)))
1368 return D3DXERR_INVALIDDATA
;
1370 hr
= D3DXLoadSurfaceFromFileInMemory(dst_surface
, dst_palette
, dst_rect
,
1371 data
, data_size
, src_rect
, filter
, color_key
, src_info
);
1372 UnmapViewOfFile(data
);
1377 HRESULT WINAPI
D3DXLoadSurfaceFromResourceA(IDirect3DSurface9
*dst_surface
,
1378 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, HMODULE src_module
, const char *resource
,
1379 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1385 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_module %p, resource %s, "
1386 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1387 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_module
, debugstr_a(resource
),
1388 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1391 return D3DERR_INVALIDCALL
;
1393 if (!(resinfo
= FindResourceA(src_module
, resource
, (const char *)RT_RCDATA
))
1394 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1395 && !(resinfo
= FindResourceA(src_module
, resource
, (const char *)RT_BITMAP
)))
1396 return D3DXERR_INVALIDDATA
;
1398 if (FAILED(load_resource_into_memory(src_module
, resinfo
, &data
, &data_size
)))
1399 return D3DXERR_INVALIDDATA
;
1401 return D3DXLoadSurfaceFromFileInMemory(dst_surface
, dst_palette
, dst_rect
,
1402 data
, data_size
, src_rect
, filter
, color_key
, src_info
);
1405 HRESULT WINAPI
D3DXLoadSurfaceFromResourceW(IDirect3DSurface9
*dst_surface
,
1406 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, HMODULE src_module
, const WCHAR
*resource
,
1407 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1413 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_module %p, resource %s, "
1414 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1415 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_module
, debugstr_w(resource
),
1416 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1419 return D3DERR_INVALIDCALL
;
1421 if (!(resinfo
= FindResourceW(src_module
, resource
, (const WCHAR
*)RT_RCDATA
))
1422 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1423 && !(resinfo
= FindResourceW(src_module
, resource
, (const WCHAR
*)RT_BITMAP
)))
1424 return D3DXERR_INVALIDDATA
;
1426 if (FAILED(load_resource_into_memory(src_module
, resinfo
, &data
, &data_size
)))
1427 return D3DXERR_INVALIDDATA
;
1429 return D3DXLoadSurfaceFromFileInMemory(dst_surface
, dst_palette
, dst_rect
,
1430 data
, data_size
, src_rect
, filter
, color_key
, src_info
);
1434 /************************************************************
1435 * helper functions for D3DXLoadSurfaceFromMemory
1437 struct argb_conversion_info
1439 const struct pixel_format_desc
*srcformat
;
1440 const struct pixel_format_desc
*destformat
;
1441 DWORD srcshift
[4], destshift
[4];
1442 DWORD srcmask
[4], destmask
[4];
1443 BOOL process_channel
[4];
1447 static void init_argb_conversion_info(const struct pixel_format_desc
*srcformat
, const struct pixel_format_desc
*destformat
, struct argb_conversion_info
*info
)
1450 ZeroMemory(info
->process_channel
, 4 * sizeof(BOOL
));
1451 info
->channelmask
= 0;
1453 info
->srcformat
= srcformat
;
1454 info
->destformat
= destformat
;
1456 for(i
= 0;i
< 4;i
++) {
1457 /* srcshift is used to extract the _relevant_ components */
1458 info
->srcshift
[i
] = srcformat
->shift
[i
] + max( srcformat
->bits
[i
] - destformat
->bits
[i
], 0);
1460 /* destshift is used to move the components to the correct position */
1461 info
->destshift
[i
] = destformat
->shift
[i
] + max(destformat
->bits
[i
] - srcformat
->bits
[i
], 0);
1463 info
->srcmask
[i
] = ((1 << srcformat
->bits
[i
]) - 1) << srcformat
->shift
[i
];
1464 info
->destmask
[i
] = ((1 << destformat
->bits
[i
]) - 1) << destformat
->shift
[i
];
1466 /* channelmask specifies bits which aren't used in the source format but in the destination one */
1467 if(destformat
->bits
[i
]) {
1468 if(srcformat
->bits
[i
]) info
->process_channel
[i
] = TRUE
;
1469 else info
->channelmask
|= info
->destmask
[i
];
1474 /************************************************************
1475 * get_relevant_argb_components
1477 * Extracts the relevant components from the source color and
1478 * drops the less significant bits if they aren't used by the destination format.
1480 static void get_relevant_argb_components(const struct argb_conversion_info
*info
, const BYTE
*col
, DWORD
*out
)
1483 unsigned int component
, mask
;
1485 for (i
= 0; i
< 4; ++i
)
1487 if (!info
->process_channel
[i
])
1491 mask
= info
->srcmask
[i
];
1492 for (j
= 0; j
< 4 && mask
; ++j
)
1494 if (info
->srcshift
[i
] < j
* 8)
1495 component
|= (col
[j
] & mask
) << (j
* 8 - info
->srcshift
[i
]);
1497 component
|= (col
[j
] & mask
) >> (info
->srcshift
[i
] - j
* 8);
1504 /************************************************************
1507 * Recombines the output of get_relevant_argb_components and converts
1508 * it to the destination format.
1510 static DWORD
make_argb_color(const struct argb_conversion_info
*info
, const DWORD
*in
)
1515 for(i
= 0;i
< 4;i
++) {
1516 if(info
->process_channel
[i
]) {
1517 /* necessary to make sure that e.g. an X4R4G4B4 white maps to an R8G8B8 white instead of 0xf0f0f0 */
1519 for(shift
= info
->destshift
[i
]; shift
> info
->destformat
->shift
[i
]; shift
-= info
->srcformat
->bits
[i
]) val
|= in
[i
] << shift
;
1520 val
|= (in
[i
] >> (info
->destformat
->shift
[i
] - shift
)) << info
->destformat
->shift
[i
];
1523 val
|= info
->channelmask
; /* new channels are set to their maximal value */
1527 /* It doesn't work for components bigger than 32 bits (or somewhat smaller but unaligned). */
1528 static void format_to_vec4(const struct pixel_format_desc
*format
, const BYTE
*src
, struct vec4
*dst
)
1533 for (c
= 0; c
< 4; ++c
)
1535 static const unsigned int component_offsets
[4] = {3, 0, 1, 2};
1536 float *dst_component
= (float *)dst
+ component_offsets
[c
];
1538 if (format
->bits
[c
])
1540 mask
= ~0u >> (32 - format
->bits
[c
]);
1542 memcpy(&tmp
, src
+ format
->shift
[c
] / 8,
1543 min(sizeof(DWORD
), (format
->shift
[c
] % 8 + format
->bits
[c
] + 7) / 8));
1545 if (format
->type
== FORMAT_ARGBF16
)
1546 *dst_component
= float_16_to_32(tmp
);
1547 else if (format
->type
== FORMAT_ARGBF
)
1548 *dst_component
= *(float *)&tmp
;
1550 *dst_component
= (float)((tmp
>> format
->shift
[c
] % 8) & mask
) / mask
;
1553 *dst_component
= 1.0f
;
1557 /* It doesn't work for components bigger than 32 bits. */
1558 static void format_from_vec4(const struct pixel_format_desc
*format
, const struct vec4
*src
, BYTE
*dst
)
1563 memset(dst
, 0, format
->bytes_per_pixel
);
1565 for (c
= 0; c
< 4; ++c
)
1567 static const unsigned int component_offsets
[4] = {3, 0, 1, 2};
1568 const float src_component
= *((const float *)src
+ component_offsets
[c
]);
1570 if (!format
->bits
[c
])
1573 mask32
= ~0u >> (32 - format
->bits
[c
]);
1575 if (format
->type
== FORMAT_ARGBF16
)
1576 v
= float_32_to_16(src_component
);
1577 else if (format
->type
== FORMAT_ARGBF
)
1578 v
= *(DWORD
*)&src_component
;
1580 v
= (DWORD
)(src_component
* ((1 << format
->bits
[c
]) - 1) + 0.5f
);
1582 for (i
= format
->shift
[c
] / 8 * 8; i
< format
->shift
[c
] + format
->bits
[c
]; i
+= 8)
1586 if (format
->shift
[c
] > i
)
1588 mask
= mask32
<< (format
->shift
[c
] - i
);
1589 byte
= (v
<< (format
->shift
[c
] - i
)) & mask
;
1593 mask
= mask32
>> (i
- format
->shift
[c
]);
1594 byte
= (v
>> (i
- format
->shift
[c
])) & mask
;
1601 /************************************************************
1604 * Copies the source buffer to the destination buffer.
1605 * Works for any pixel format.
1606 * The source and the destination must be block-aligned.
1608 void copy_pixels(const BYTE
*src
, UINT src_row_pitch
, UINT src_slice_pitch
,
1609 BYTE
*dst
, UINT dst_row_pitch
, UINT dst_slice_pitch
, const struct volume
*size
,
1610 const struct pixel_format_desc
*format
)
1614 const BYTE
*src_addr
;
1615 UINT row_block_count
= (size
->width
+ format
->block_width
- 1) / format
->block_width
;
1616 UINT row_count
= (size
->height
+ format
->block_height
- 1) / format
->block_height
;
1618 for (slice
= 0; slice
< size
->depth
; slice
++)
1620 src_addr
= src
+ slice
* src_slice_pitch
;
1621 dst_addr
= dst
+ slice
* dst_slice_pitch
;
1623 for (row
= 0; row
< row_count
; row
++)
1625 memcpy(dst_addr
, src_addr
, row_block_count
* format
->block_byte_count
);
1626 src_addr
+= src_row_pitch
;
1627 dst_addr
+= dst_row_pitch
;
1632 /************************************************************
1633 * convert_argb_pixels
1635 * Copies the source buffer to the destination buffer, performing
1636 * any necessary format conversion and color keying.
1637 * Pixels outsize the source rect are blacked out.
1639 void convert_argb_pixels(const BYTE
*src
, UINT src_row_pitch
, UINT src_slice_pitch
, const struct volume
*src_size
,
1640 const struct pixel_format_desc
*src_format
, BYTE
*dst
, UINT dst_row_pitch
, UINT dst_slice_pitch
,
1641 const struct volume
*dst_size
, const struct pixel_format_desc
*dst_format
, D3DCOLOR color_key
,
1642 const PALETTEENTRY
*palette
)
1644 struct argb_conversion_info conv_info
, ck_conv_info
;
1645 const struct pixel_format_desc
*ck_format
= NULL
;
1647 UINT min_width
, min_height
, min_depth
;
1650 TRACE("src %p, src_row_pitch %u, src_slice_pitch %u, src_size %p, src_format %p, dst %p, "
1651 "dst_row_pitch %u, dst_slice_pitch %u, dst_size %p, dst_format %p, color_key 0x%08x, palette %p.\n",
1652 src
, src_row_pitch
, src_slice_pitch
, src_size
, src_format
, dst
, dst_row_pitch
, dst_slice_pitch
, dst_size
,
1653 dst_format
, color_key
, palette
);
1655 ZeroMemory(channels
, sizeof(channels
));
1656 init_argb_conversion_info(src_format
, dst_format
, &conv_info
);
1658 min_width
= min(src_size
->width
, dst_size
->width
);
1659 min_height
= min(src_size
->height
, dst_size
->height
);
1660 min_depth
= min(src_size
->depth
, dst_size
->depth
);
1664 /* Color keys are always represented in D3DFMT_A8R8G8B8 format. */
1665 ck_format
= get_format_info(D3DFMT_A8R8G8B8
);
1666 init_argb_conversion_info(src_format
, ck_format
, &ck_conv_info
);
1669 for (z
= 0; z
< min_depth
; z
++) {
1670 const BYTE
*src_slice_ptr
= src
+ z
* src_slice_pitch
;
1671 BYTE
*dst_slice_ptr
= dst
+ z
* dst_slice_pitch
;
1673 for (y
= 0; y
< min_height
; y
++) {
1674 const BYTE
*src_ptr
= src_slice_ptr
+ y
* src_row_pitch
;
1675 BYTE
*dst_ptr
= dst_slice_ptr
+ y
* dst_row_pitch
;
1677 for (x
= 0; x
< min_width
; x
++) {
1678 if (!src_format
->to_rgba
&& !dst_format
->from_rgba
1679 && src_format
->type
== dst_format
->type
1680 && src_format
->bytes_per_pixel
<= 4 && dst_format
->bytes_per_pixel
<= 4)
1684 get_relevant_argb_components(&conv_info
, src_ptr
, channels
);
1685 val
= make_argb_color(&conv_info
, channels
);
1691 get_relevant_argb_components(&ck_conv_info
, src_ptr
, channels
);
1692 ck_pixel
= make_argb_color(&ck_conv_info
, channels
);
1693 if (ck_pixel
== color_key
)
1694 val
&= ~conv_info
.destmask
[0];
1696 memcpy(dst_ptr
, &val
, dst_format
->bytes_per_pixel
);
1700 struct vec4 color
, tmp
;
1702 format_to_vec4(src_format
, src_ptr
, &color
);
1703 if (src_format
->to_rgba
)
1704 src_format
->to_rgba(&color
, &tmp
, palette
);
1712 format_from_vec4(ck_format
, &tmp
, (BYTE
*)&ck_pixel
);
1713 if (ck_pixel
== color_key
)
1717 if (dst_format
->from_rgba
)
1718 dst_format
->from_rgba(&tmp
, &color
);
1722 format_from_vec4(dst_format
, &color
, dst_ptr
);
1725 src_ptr
+= src_format
->bytes_per_pixel
;
1726 dst_ptr
+= dst_format
->bytes_per_pixel
;
1729 if (src_size
->width
< dst_size
->width
) /* black out remaining pixels */
1730 memset(dst_ptr
, 0, dst_format
->bytes_per_pixel
* (dst_size
->width
- src_size
->width
));
1733 if (src_size
->height
< dst_size
->height
) /* black out remaining pixels */
1734 memset(dst
+ src_size
->height
* dst_row_pitch
, 0, dst_row_pitch
* (dst_size
->height
- src_size
->height
));
1736 if (src_size
->depth
< dst_size
->depth
) /* black out remaining pixels */
1737 memset(dst
+ src_size
->depth
* dst_slice_pitch
, 0, dst_slice_pitch
* (dst_size
->depth
- src_size
->depth
));
1740 /************************************************************
1741 * point_filter_argb_pixels
1743 * Copies the source buffer to the destination buffer, performing
1744 * any necessary format conversion, color keying and stretching
1745 * using a point filter.
1747 void point_filter_argb_pixels(const BYTE
*src
, UINT src_row_pitch
, UINT src_slice_pitch
, const struct volume
*src_size
,
1748 const struct pixel_format_desc
*src_format
, BYTE
*dst
, UINT dst_row_pitch
, UINT dst_slice_pitch
,
1749 const struct volume
*dst_size
, const struct pixel_format_desc
*dst_format
, D3DCOLOR color_key
,
1750 const PALETTEENTRY
*palette
)
1752 struct argb_conversion_info conv_info
, ck_conv_info
;
1753 const struct pixel_format_desc
*ck_format
= NULL
;
1757 TRACE("src %p, src_row_pitch %u, src_slice_pitch %u, src_size %p, src_format %p, dst %p, "
1758 "dst_row_pitch %u, dst_slice_pitch %u, dst_size %p, dst_format %p, color_key 0x%08x, palette %p.\n",
1759 src
, src_row_pitch
, src_slice_pitch
, src_size
, src_format
, dst
, dst_row_pitch
, dst_slice_pitch
, dst_size
,
1760 dst_format
, color_key
, palette
);
1762 ZeroMemory(channels
, sizeof(channels
));
1763 init_argb_conversion_info(src_format
, dst_format
, &conv_info
);
1767 /* Color keys are always represented in D3DFMT_A8R8G8B8 format. */
1768 ck_format
= get_format_info(D3DFMT_A8R8G8B8
);
1769 init_argb_conversion_info(src_format
, ck_format
, &ck_conv_info
);
1772 for (z
= 0; z
< dst_size
->depth
; z
++)
1774 BYTE
*dst_slice_ptr
= dst
+ z
* dst_slice_pitch
;
1775 const BYTE
*src_slice_ptr
= src
+ src_slice_pitch
* (z
* src_size
->depth
/ dst_size
->depth
);
1777 for (y
= 0; y
< dst_size
->height
; y
++)
1779 BYTE
*dst_ptr
= dst_slice_ptr
+ y
* dst_row_pitch
;
1780 const BYTE
*src_row_ptr
= src_slice_ptr
+ src_row_pitch
* (y
* src_size
->height
/ dst_size
->height
);
1782 for (x
= 0; x
< dst_size
->width
; x
++)
1784 const BYTE
*src_ptr
= src_row_ptr
+ (x
* src_size
->width
/ dst_size
->width
) * src_format
->bytes_per_pixel
;
1786 if (!src_format
->to_rgba
&& !dst_format
->from_rgba
1787 && src_format
->type
== dst_format
->type
1788 && src_format
->bytes_per_pixel
<= 4 && dst_format
->bytes_per_pixel
<= 4)
1792 get_relevant_argb_components(&conv_info
, src_ptr
, channels
);
1793 val
= make_argb_color(&conv_info
, channels
);
1799 get_relevant_argb_components(&ck_conv_info
, src_ptr
, channels
);
1800 ck_pixel
= make_argb_color(&ck_conv_info
, channels
);
1801 if (ck_pixel
== color_key
)
1802 val
&= ~conv_info
.destmask
[0];
1804 memcpy(dst_ptr
, &val
, dst_format
->bytes_per_pixel
);
1808 struct vec4 color
, tmp
;
1810 format_to_vec4(src_format
, src_ptr
, &color
);
1811 if (src_format
->to_rgba
)
1812 src_format
->to_rgba(&color
, &tmp
, palette
);
1820 format_from_vec4(ck_format
, &tmp
, (BYTE
*)&ck_pixel
);
1821 if (ck_pixel
== color_key
)
1825 if (dst_format
->from_rgba
)
1826 dst_format
->from_rgba(&tmp
, &color
);
1830 format_from_vec4(dst_format
, &color
, dst_ptr
);
1833 dst_ptr
+= dst_format
->bytes_per_pixel
;
1839 /************************************************************
1840 * D3DXLoadSurfaceFromMemory
1842 * Loads data from a given memory chunk into a surface,
1843 * applying any of the specified filters.
1846 * pDestSurface [I] pointer to the surface
1847 * pDestPalette [I] palette to use
1848 * pDestRect [I] to be filled area of the surface
1849 * pSrcMemory [I] pointer to the source data
1850 * SrcFormat [I] format of the source pixel data
1851 * SrcPitch [I] number of bytes in a row
1852 * pSrcPalette [I] palette used in the source image
1853 * pSrcRect [I] area of the source data to load
1854 * dwFilter [I] filter to apply on stretching
1855 * Colorkey [I] colorkey
1858 * Success: D3D_OK, if we successfully load the pixel data into our surface or
1859 * if pSrcMemory is NULL but the other parameters are valid
1860 * Failure: D3DERR_INVALIDCALL, if pDestSurface, SrcPitch or pSrcRect is NULL or
1861 * if SrcFormat is an invalid format (other than D3DFMT_UNKNOWN) or
1862 * if DestRect is invalid
1863 * D3DXERR_INVALIDDATA, if we fail to lock pDestSurface
1864 * E_FAIL, if SrcFormat is D3DFMT_UNKNOWN or the dimensions of pSrcRect are invalid
1867 * pSrcRect specifies the dimensions of the source data;
1868 * negative values for pSrcRect are allowed as we're only looking at the width and height anyway.
1871 HRESULT WINAPI
D3DXLoadSurfaceFromMemory(IDirect3DSurface9
*dst_surface
,
1872 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, const void *src_memory
,
1873 D3DFORMAT src_format
, UINT src_pitch
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
,
1874 DWORD filter
, D3DCOLOR color_key
)
1876 const struct pixel_format_desc
*srcformatdesc
, *destformatdesc
;
1877 struct volume src_size
, dst_size
, dst_size_aligned
;
1878 RECT dst_rect_temp
, dst_rect_aligned
;
1879 IDirect3DSurface9
*surface
;
1880 D3DSURFACE_DESC surfdesc
;
1881 D3DLOCKED_RECT lockrect
;
1884 TRACE("(%p, %p, %s, %p, %#x, %u, %p, %s, %#x, 0x%08x)\n",
1885 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_memory
, src_format
,
1886 src_pitch
, src_palette
, wine_dbgstr_rect(src_rect
), filter
, color_key
);
1888 if (!dst_surface
|| !src_memory
|| !src_rect
)
1890 WARN("Invalid argument specified.\n");
1891 return D3DERR_INVALIDCALL
;
1893 if (src_format
== D3DFMT_UNKNOWN
1894 || src_rect
->left
>= src_rect
->right
1895 || src_rect
->top
>= src_rect
->bottom
)
1897 WARN("Invalid src_format or src_rect.\n");
1901 srcformatdesc
= get_format_info(src_format
);
1902 if (srcformatdesc
->type
== FORMAT_UNKNOWN
)
1904 FIXME("Unsupported format %#x.\n", src_format
);
1908 src_size
.width
= src_rect
->right
- src_rect
->left
;
1909 src_size
.height
= src_rect
->bottom
- src_rect
->top
;
1912 IDirect3DSurface9_GetDesc(dst_surface
, &surfdesc
);
1913 destformatdesc
= get_format_info(surfdesc
.Format
);
1916 dst_rect
= &dst_rect_temp
;
1917 dst_rect_temp
.left
= 0;
1918 dst_rect_temp
.top
= 0;
1919 dst_rect_temp
.right
= surfdesc
.Width
;
1920 dst_rect_temp
.bottom
= surfdesc
.Height
;
1924 if (dst_rect
->left
> dst_rect
->right
|| dst_rect
->right
> surfdesc
.Width
1925 || dst_rect
->top
> dst_rect
->bottom
|| dst_rect
->bottom
> surfdesc
.Height
1926 || dst_rect
->left
< 0 || dst_rect
->top
< 0)
1928 WARN("Invalid dst_rect specified.\n");
1929 return D3DERR_INVALIDCALL
;
1931 if (dst_rect
->left
== dst_rect
->right
|| dst_rect
->top
== dst_rect
->bottom
)
1933 WARN("Empty dst_rect specified.\n");
1938 dst_rect_aligned
= *dst_rect
;
1939 if (dst_rect_aligned
.left
& (destformatdesc
->block_width
- 1))
1940 dst_rect_aligned
.left
= dst_rect_aligned
.left
& ~(destformatdesc
->block_width
- 1);
1941 if (dst_rect_aligned
.top
& (destformatdesc
->block_height
- 1))
1942 dst_rect_aligned
.top
= dst_rect_aligned
.top
& ~(destformatdesc
->block_height
- 1);
1943 if (dst_rect_aligned
.right
& (destformatdesc
->block_width
- 1) && dst_rect_aligned
.right
!= surfdesc
.Width
)
1944 dst_rect_aligned
.right
= min((dst_rect_aligned
.right
+ destformatdesc
->block_width
- 1)
1945 & ~(destformatdesc
->block_width
- 1), surfdesc
.Width
);
1946 if (dst_rect_aligned
.bottom
& (destformatdesc
->block_height
- 1) && dst_rect_aligned
.bottom
!= surfdesc
.Height
)
1947 dst_rect_aligned
.bottom
= min((dst_rect_aligned
.bottom
+ destformatdesc
->block_height
- 1)
1948 & ~(destformatdesc
->block_height
- 1), surfdesc
.Height
);
1950 dst_size
.width
= dst_rect
->right
- dst_rect
->left
;
1951 dst_size
.height
= dst_rect
->bottom
- dst_rect
->top
;
1953 dst_size_aligned
.width
= dst_rect_aligned
.right
- dst_rect_aligned
.left
;
1954 dst_size_aligned
.height
= dst_rect_aligned
.bottom
- dst_rect_aligned
.top
;
1955 dst_size_aligned
.depth
= 1;
1957 if (filter
== D3DX_DEFAULT
)
1958 filter
= D3DX_FILTER_TRIANGLE
| D3DX_FILTER_DITHER
;
1960 if (FAILED(hr
= lock_surface(dst_surface
, &dst_rect_aligned
, &lockrect
, &surface
, TRUE
)))
1963 src_memory
= (BYTE
*)src_memory
+ src_rect
->top
/ srcformatdesc
->block_height
* src_pitch
1964 + src_rect
->left
/ srcformatdesc
->block_width
* srcformatdesc
->block_byte_count
;
1966 if (src_format
== surfdesc
.Format
1967 && dst_size
.width
== src_size
.width
1968 && dst_size
.height
== src_size
.height
1970 && !(src_rect
->left
& (srcformatdesc
->block_width
- 1))
1971 && !(src_rect
->top
& (srcformatdesc
->block_height
- 1))
1972 && !(dst_rect
->left
& (destformatdesc
->block_width
- 1))
1973 && !(dst_rect
->top
& (destformatdesc
->block_height
- 1)))
1975 TRACE("Simple copy.\n");
1976 copy_pixels(src_memory
, src_pitch
, 0, lockrect
.pBits
, lockrect
.Pitch
, 0,
1977 &src_size
, srcformatdesc
);
1979 else /* Stretching or format conversion. */
1981 const struct pixel_format_desc
*dst_format
;
1982 DWORD
*src_uncompressed
= NULL
;
1983 BYTE
*dst_uncompressed
= NULL
;
1984 unsigned int dst_pitch
;
1987 if (!is_conversion_from_supported(srcformatdesc
)
1988 || !is_conversion_to_supported(destformatdesc
))
1990 FIXME("Unsupported format conversion %#x -> %#x.\n", src_format
, surfdesc
.Format
);
1991 unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, FALSE
);
1995 if (srcformatdesc
->type
== FORMAT_DXT
)
1997 void (*fetch_dxt_texel
)(int srcRowStride
, const BYTE
*pixdata
,
1998 int i
, int j
, void *texel
);
2001 src_pitch
= src_pitch
* srcformatdesc
->block_width
/ srcformatdesc
->block_byte_count
;
2003 src_uncompressed
= heap_alloc(src_size
.width
* src_size
.height
* sizeof(DWORD
));
2004 if (!src_uncompressed
)
2006 unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, FALSE
);
2007 return E_OUTOFMEMORY
;
2013 fetch_dxt_texel
= fetch_2d_texel_rgba_dxt1
;
2017 fetch_dxt_texel
= fetch_2d_texel_rgba_dxt3
;
2021 fetch_dxt_texel
= fetch_2d_texel_rgba_dxt5
;
2024 FIXME("Unexpected compressed texture format %u.\n", src_format
);
2025 fetch_dxt_texel
= NULL
;
2028 TRACE("Uncompressing DXTn surface.\n");
2029 for (y
= 0; y
< src_size
.height
; ++y
)
2031 DWORD
*ptr
= &src_uncompressed
[y
* src_size
.width
];
2032 for (x
= 0; x
< src_size
.width
; ++x
)
2034 fetch_dxt_texel(src_pitch
, src_memory
, x
+ src_rect
->left
, y
+ src_rect
->top
, ptr
);
2038 src_memory
= src_uncompressed
;
2039 src_pitch
= src_size
.width
* sizeof(DWORD
);
2040 srcformatdesc
= get_format_info(D3DFMT_A8B8G8R8
);
2043 if (destformatdesc
->type
== FORMAT_DXT
)
2045 BOOL dst_misaligned
= dst_rect
->left
!= dst_rect_aligned
.left
2046 || dst_rect
->top
!= dst_rect_aligned
.top
2047 || dst_rect
->right
!= dst_rect_aligned
.right
2048 || dst_rect
->bottom
!= dst_rect_aligned
.bottom
;
2050 dst_uncompressed
= HeapAlloc(GetProcessHeap(), dst_misaligned
? HEAP_ZERO_MEMORY
: 0,
2051 dst_size_aligned
.width
* dst_size_aligned
.height
* sizeof(DWORD
));
2052 if (!dst_uncompressed
)
2054 heap_free(src_uncompressed
);
2055 unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, FALSE
);
2056 return E_OUTOFMEMORY
;
2058 dst_pitch
= dst_size_aligned
.width
* sizeof(DWORD
);
2059 dst_format
= get_format_info(D3DFMT_A8B8G8R8
);
2060 dst_mem
= dst_uncompressed
+ (dst_rect
->top
- dst_rect_aligned
.top
) * dst_pitch
2061 + (dst_rect
->left
- dst_rect_aligned
.left
) * sizeof(DWORD
);
2065 dst_mem
= lockrect
.pBits
;
2066 dst_pitch
= lockrect
.Pitch
;
2067 dst_format
= destformatdesc
;
2070 if ((filter
& 0xf) == D3DX_FILTER_NONE
)
2072 convert_argb_pixels(src_memory
, src_pitch
, 0, &src_size
, srcformatdesc
,
2073 dst_mem
, dst_pitch
, 0, &dst_size
, dst_format
, color_key
, src_palette
);
2075 else /* if ((filter & 0xf) == D3DX_FILTER_POINT) */
2077 if ((filter
& 0xf) != D3DX_FILTER_POINT
)
2078 FIXME("Unhandled filter %#x.\n", filter
);
2080 /* Always apply a point filter until D3DX_FILTER_LINEAR,
2081 * D3DX_FILTER_TRIANGLE and D3DX_FILTER_BOX are implemented. */
2082 point_filter_argb_pixels(src_memory
, src_pitch
, 0, &src_size
, srcformatdesc
,
2083 dst_mem
, dst_pitch
, 0, &dst_size
, dst_format
, color_key
, src_palette
);
2086 heap_free(src_uncompressed
);
2088 if (dst_uncompressed
)
2090 GLenum gl_format
= 0;
2092 TRACE("Compressing DXTn surface.\n");
2093 switch(surfdesc
.Format
)
2096 gl_format
= GL_COMPRESSED_RGBA_S3TC_DXT1_EXT
;
2100 gl_format
= GL_COMPRESSED_RGBA_S3TC_DXT3_EXT
;
2104 gl_format
= GL_COMPRESSED_RGBA_S3TC_DXT5_EXT
;
2107 ERR("Unexpected destination compressed format %u.\n", surfdesc
.Format
);
2109 tx_compress_dxtn(4, dst_size_aligned
.width
, dst_size_aligned
.height
,
2110 dst_uncompressed
, gl_format
, lockrect
.pBits
,
2111 lockrect
.Pitch
* destformatdesc
->block_width
/ destformatdesc
->block_byte_count
);
2112 heap_free(dst_uncompressed
);
2116 return unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, TRUE
);
2119 /************************************************************
2120 * D3DXLoadSurfaceFromSurface
2122 * Copies the contents from one surface to another, performing any required
2123 * format conversion, resizing or filtering.
2126 * pDestSurface [I] pointer to the destination surface
2127 * pDestPalette [I] palette to use
2128 * pDestRect [I] to be filled area of the surface
2129 * pSrcSurface [I] pointer to the source surface
2130 * pSrcPalette [I] palette used for the source surface
2131 * pSrcRect [I] area of the source data to load
2132 * dwFilter [I] filter to apply on resizing
2133 * Colorkey [I] any ARGB value or 0 to disable color-keying
2137 * Failure: D3DERR_INVALIDCALL, if pDestSurface or pSrcSurface is NULL
2138 * D3DXERR_INVALIDDATA, if one of the surfaces is not lockable
2141 HRESULT WINAPI
D3DXLoadSurfaceFromSurface(IDirect3DSurface9
*dst_surface
,
2142 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, IDirect3DSurface9
*src_surface
,
2143 const PALETTEENTRY
*src_palette
, const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
)
2145 const struct pixel_format_desc
*src_format_desc
, *dst_format_desc
;
2146 D3DSURFACE_DESC src_desc
, dst_desc
;
2147 struct volume src_size
, dst_size
;
2148 IDirect3DSurface9
*temp_surface
;
2149 D3DTEXTUREFILTERTYPE d3d_filter
;
2150 IDirect3DDevice9
*device
;
2151 D3DLOCKED_RECT lock
;
2156 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_surface %p, "
2157 "src_palette %p, src_rect %s, filter %#x, color_key 0x%08x.\n",
2158 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_surface
,
2159 src_palette
, wine_dbgstr_rect(src_rect
), filter
, color_key
);
2161 if (!dst_surface
|| !src_surface
)
2162 return D3DERR_INVALIDCALL
;
2164 IDirect3DSurface9_GetDesc(src_surface
, &src_desc
);
2165 src_format_desc
= get_format_info(src_desc
.Format
);
2168 SetRect(&s
, 0, 0, src_desc
.Width
, src_desc
.Height
);
2171 else if (src_rect
->left
== src_rect
->right
|| src_rect
->top
== src_rect
->bottom
)
2173 WARN("Empty src_rect specified.\n");
2174 return filter
== D3DX_FILTER_NONE
? D3D_OK
: E_FAIL
;
2176 else if (src_rect
->left
> src_rect
->right
|| src_rect
->right
> src_desc
.Width
2177 || src_rect
->left
< 0 || src_rect
->left
> src_desc
.Width
2178 || src_rect
->top
> src_rect
->bottom
|| src_rect
->bottom
> src_desc
.Height
2179 || src_rect
->top
< 0 || src_rect
->top
> src_desc
.Height
)
2181 WARN("Invalid src_rect specified.\n");
2182 return D3DERR_INVALIDCALL
;
2185 src_size
.width
= src_rect
->right
- src_rect
->left
;
2186 src_size
.height
= src_rect
->bottom
- src_rect
->top
;
2189 IDirect3DSurface9_GetDesc(dst_surface
, &dst_desc
);
2190 dst_format_desc
= get_format_info(dst_desc
.Format
);
2193 SetRect(&dst_rect_temp
, 0, 0, dst_desc
.Width
, dst_desc
.Height
);
2194 dst_rect
= &dst_rect_temp
;
2196 else if (dst_rect
->left
== dst_rect
->right
|| dst_rect
->top
== dst_rect
->bottom
)
2198 WARN("Empty dst_rect specified.\n");
2199 return filter
== D3DX_FILTER_NONE
? D3D_OK
: E_FAIL
;
2201 else if (dst_rect
->left
> dst_rect
->right
|| dst_rect
->right
> dst_desc
.Width
2202 || dst_rect
->left
< 0 || dst_rect
->left
> dst_desc
.Width
2203 || dst_rect
->top
> dst_rect
->bottom
|| dst_rect
->bottom
> dst_desc
.Height
2204 || dst_rect
->top
< 0 || dst_rect
->top
> dst_desc
.Height
)
2206 WARN("Invalid dst_rect specified.\n");
2207 return D3DERR_INVALIDCALL
;
2210 dst_size
.width
= dst_rect
->right
- dst_rect
->left
;
2211 dst_size
.height
= dst_rect
->bottom
- dst_rect
->top
;
2214 if (!dst_palette
&& !src_palette
&& !color_key
)
2216 if (src_desc
.Format
== dst_desc
.Format
2217 && dst_size
.width
== src_size
.width
2218 && dst_size
.height
== src_size
.height
2220 && !(src_rect
->left
& (src_format_desc
->block_width
- 1))
2221 && !(src_rect
->top
& (src_format_desc
->block_height
- 1))
2222 && !(dst_rect
->left
& (dst_format_desc
->block_width
- 1))
2223 && !(dst_rect
->top
& (dst_format_desc
->block_height
- 1)))
2225 d3d_filter
= D3DTEXF_NONE
;
2231 case D3DX_FILTER_NONE
:
2232 d3d_filter
= D3DTEXF_NONE
;
2235 case D3DX_FILTER_POINT
:
2236 d3d_filter
= D3DTEXF_POINT
;
2239 case D3DX_FILTER_LINEAR
:
2240 d3d_filter
= D3DTEXF_LINEAR
;
2244 d3d_filter
= D3DTEXF_FORCE_DWORD
;
2249 if (d3d_filter
!= D3DTEXF_FORCE_DWORD
)
2251 IDirect3DSurface9_GetDevice(src_surface
, &device
);
2252 hr
= IDirect3DDevice9_StretchRect(device
, src_surface
, src_rect
, dst_surface
, dst_rect
, d3d_filter
);
2253 IDirect3DDevice9_Release(device
);
2259 if (FAILED(lock_surface(src_surface
, NULL
, &lock
, &temp_surface
, FALSE
)))
2260 return D3DXERR_INVALIDDATA
;
2262 hr
= D3DXLoadSurfaceFromMemory(dst_surface
, dst_palette
, dst_rect
, lock
.pBits
,
2263 src_desc
.Format
, lock
.Pitch
, src_palette
, src_rect
, filter
, color_key
);
2265 if (FAILED(unlock_surface(src_surface
, NULL
, temp_surface
, FALSE
)))
2266 return D3DXERR_INVALIDDATA
;
2272 HRESULT WINAPI
D3DXSaveSurfaceToFileA(const char *dst_filename
, D3DXIMAGE_FILEFORMAT file_format
,
2273 IDirect3DSurface9
*src_surface
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
)
2278 ID3DXBuffer
*buffer
;
2280 TRACE("(%s, %#x, %p, %p, %s): relay\n",
2281 wine_dbgstr_a(dst_filename
), file_format
, src_surface
, src_palette
, wine_dbgstr_rect(src_rect
));
2283 if (!dst_filename
) return D3DERR_INVALIDCALL
;
2285 len
= MultiByteToWideChar(CP_ACP
, 0, dst_filename
, -1, NULL
, 0);
2286 filename
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
2287 if (!filename
) return E_OUTOFMEMORY
;
2288 MultiByteToWideChar(CP_ACP
, 0, dst_filename
, -1, filename
, len
);
2290 hr
= D3DXSaveSurfaceToFileInMemory(&buffer
, file_format
, src_surface
, src_palette
, src_rect
);
2293 hr
= write_buffer_to_file(filename
, buffer
);
2294 ID3DXBuffer_Release(buffer
);
2297 HeapFree(GetProcessHeap(), 0, filename
);
2301 HRESULT WINAPI
D3DXSaveSurfaceToFileW(const WCHAR
*dst_filename
, D3DXIMAGE_FILEFORMAT file_format
,
2302 IDirect3DSurface9
*src_surface
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
)
2305 ID3DXBuffer
*buffer
;
2307 TRACE("(%s, %#x, %p, %p, %s): relay\n",
2308 wine_dbgstr_w(dst_filename
), file_format
, src_surface
, src_palette
, wine_dbgstr_rect(src_rect
));
2310 if (!dst_filename
) return D3DERR_INVALIDCALL
;
2312 hr
= D3DXSaveSurfaceToFileInMemory(&buffer
, file_format
, src_surface
, src_palette
, src_rect
);
2315 hr
= write_buffer_to_file(dst_filename
, buffer
);
2316 ID3DXBuffer_Release(buffer
);
2322 HRESULT WINAPI
D3DXSaveSurfaceToFileInMemory(ID3DXBuffer
**dst_buffer
, D3DXIMAGE_FILEFORMAT file_format
,
2323 IDirect3DSurface9
*src_surface
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
)
2325 IWICBitmapEncoder
*encoder
= NULL
;
2326 IWICBitmapFrameEncode
*frame
= NULL
;
2327 IPropertyBag2
*encoder_options
= NULL
;
2328 IStream
*stream
= NULL
;
2330 const GUID
*container_format
;
2331 const GUID
*pixel_format_guid
;
2332 WICPixelFormatGUID wic_pixel_format
;
2333 IWICImagingFactory
*factory
;
2334 D3DFORMAT d3d_pixel_format
;
2335 D3DSURFACE_DESC src_surface_desc
;
2336 IDirect3DSurface9
*temp_surface
;
2337 D3DLOCKED_RECT locked_rect
;
2339 STATSTG stream_stats
;
2340 HGLOBAL stream_hglobal
;
2341 ID3DXBuffer
*buffer
;
2344 TRACE("dst_buffer %p, file_format %#x, src_surface %p, src_palette %p, src_rect %s.\n",
2345 dst_buffer
, file_format
, src_surface
, src_palette
, wine_dbgstr_rect(src_rect
));
2347 if (!dst_buffer
|| !src_surface
) return D3DERR_INVALIDCALL
;
2351 FIXME("Saving surfaces with palettized pixel formats is not implemented yet\n");
2352 return D3DERR_INVALIDCALL
;
2355 switch (file_format
)
2359 container_format
= &GUID_ContainerFormatBmp
;
2362 container_format
= &GUID_ContainerFormatPng
;
2365 container_format
= &GUID_ContainerFormatJpeg
;
2368 return save_dds_surface_to_memory(dst_buffer
, src_surface
, src_rect
);
2373 FIXME("File format %#x is not supported yet\n", file_format
);
2376 return D3DERR_INVALIDCALL
;
2379 IDirect3DSurface9_GetDesc(src_surface
, &src_surface_desc
);
2382 if (src_rect
->left
== src_rect
->right
|| src_rect
->top
== src_rect
->bottom
)
2384 WARN("Invalid rectangle with 0 area\n");
2385 return D3DXCreateBuffer(64, dst_buffer
);
2387 if (src_rect
->left
< 0 || src_rect
->top
< 0)
2388 return D3DERR_INVALIDCALL
;
2389 if (src_rect
->left
> src_rect
->right
|| src_rect
->top
> src_rect
->bottom
)
2390 return D3DERR_INVALIDCALL
;
2391 if (src_rect
->right
> src_surface_desc
.Width
|| src_rect
->bottom
> src_surface_desc
.Height
)
2392 return D3DERR_INVALIDCALL
;
2394 width
= src_rect
->right
- src_rect
->left
;
2395 height
= src_rect
->bottom
- src_rect
->top
;
2399 width
= src_surface_desc
.Width
;
2400 height
= src_surface_desc
.Height
;
2403 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
2404 if (FAILED(hr
)) goto cleanup_err
;
2406 hr
= IWICImagingFactory_CreateEncoder(factory
, container_format
, NULL
, &encoder
);
2407 IWICImagingFactory_Release(factory
);
2408 if (FAILED(hr
)) goto cleanup_err
;
2410 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &stream
);
2411 if (FAILED(hr
)) goto cleanup_err
;
2413 hr
= IWICBitmapEncoder_Initialize(encoder
, stream
, WICBitmapEncoderNoCache
);
2414 if (FAILED(hr
)) goto cleanup_err
;
2416 hr
= IWICBitmapEncoder_CreateNewFrame(encoder
, &frame
, &encoder_options
);
2417 if (FAILED(hr
)) goto cleanup_err
;
2419 hr
= IWICBitmapFrameEncode_Initialize(frame
, encoder_options
);
2420 if (FAILED(hr
)) goto cleanup_err
;
2422 hr
= IWICBitmapFrameEncode_SetSize(frame
, width
, height
);
2423 if (FAILED(hr
)) goto cleanup_err
;
2425 pixel_format_guid
= d3dformat_to_wic_guid(src_surface_desc
.Format
);
2426 if (!pixel_format_guid
)
2428 FIXME("Pixel format %#x is not supported yet\n", src_surface_desc
.Format
);
2433 memcpy(&wic_pixel_format
, pixel_format_guid
, sizeof(GUID
));
2434 hr
= IWICBitmapFrameEncode_SetPixelFormat(frame
, &wic_pixel_format
);
2435 d3d_pixel_format
= wic_guid_to_d3dformat(&wic_pixel_format
);
2436 if (SUCCEEDED(hr
) && d3d_pixel_format
!= D3DFMT_UNKNOWN
)
2438 TRACE("Using pixel format %s %#x\n", debugstr_guid(&wic_pixel_format
), d3d_pixel_format
);
2439 if (src_surface_desc
.Format
== d3d_pixel_format
) /* Simple copy */
2441 if (FAILED(hr
= lock_surface(src_surface
, src_rect
, &locked_rect
, &temp_surface
, FALSE
)))
2444 IWICBitmapFrameEncode_WritePixels(frame
, height
,
2445 locked_rect
.Pitch
, height
* locked_rect
.Pitch
, locked_rect
.pBits
);
2446 unlock_surface(src_surface
, src_rect
, temp_surface
, FALSE
);
2448 else /* Pixel format conversion */
2450 const struct pixel_format_desc
*src_format_desc
, *dst_format_desc
;
2455 src_format_desc
= get_format_info(src_surface_desc
.Format
);
2456 dst_format_desc
= get_format_info(d3d_pixel_format
);
2457 if (!is_conversion_from_supported(src_format_desc
)
2458 || !is_conversion_to_supported(dst_format_desc
))
2460 FIXME("Unsupported format conversion %#x -> %#x.\n",
2461 src_surface_desc
.Format
, d3d_pixel_format
);
2467 size
.height
= height
;
2469 dst_pitch
= width
* dst_format_desc
->bytes_per_pixel
;
2470 dst_data
= HeapAlloc(GetProcessHeap(), 0, dst_pitch
* height
);
2476 if (FAILED(hr
= lock_surface(src_surface
, src_rect
, &locked_rect
, &temp_surface
, FALSE
)))
2478 HeapFree(GetProcessHeap(), 0, dst_data
);
2481 convert_argb_pixels(locked_rect
.pBits
, locked_rect
.Pitch
, 0, &size
, src_format_desc
,
2482 dst_data
, dst_pitch
, 0, &size
, dst_format_desc
, 0, NULL
);
2483 unlock_surface(src_surface
, src_rect
, temp_surface
, FALSE
);
2485 IWICBitmapFrameEncode_WritePixels(frame
, height
, dst_pitch
, dst_pitch
* height
, dst_data
);
2486 HeapFree(GetProcessHeap(), 0, dst_data
);
2489 hr
= IWICBitmapFrameEncode_Commit(frame
);
2490 if (SUCCEEDED(hr
)) hr
= IWICBitmapEncoder_Commit(encoder
);
2492 else WARN("Unsupported pixel format %#x\n", src_surface_desc
.Format
);
2494 /* copy data from stream to ID3DXBuffer */
2495 hr
= IStream_Stat(stream
, &stream_stats
, STATFLAG_NONAME
);
2496 if (FAILED(hr
)) goto cleanup_err
;
2498 if (stream_stats
.cbSize
.u
.HighPart
!= 0)
2500 hr
= D3DXERR_INVALIDDATA
;
2503 size
= stream_stats
.cbSize
.u
.LowPart
;
2505 /* Remove BMP header for DIB */
2506 if (file_format
== D3DXIFF_DIB
)
2507 size
-= sizeof(BITMAPFILEHEADER
);
2509 hr
= D3DXCreateBuffer(size
, &buffer
);
2510 if (FAILED(hr
)) goto cleanup
;
2512 hr
= GetHGlobalFromStream(stream
, &stream_hglobal
);
2515 void *buffer_pointer
= ID3DXBuffer_GetBufferPointer(buffer
);
2516 void *stream_data
= GlobalLock(stream_hglobal
);
2517 /* Remove BMP header for DIB */
2518 if (file_format
== D3DXIFF_DIB
)
2519 stream_data
= (void*)((BYTE
*)stream_data
+ sizeof(BITMAPFILEHEADER
));
2520 memcpy(buffer_pointer
, stream_data
, size
);
2521 GlobalUnlock(stream_hglobal
);
2522 *dst_buffer
= buffer
;
2524 else ID3DXBuffer_Release(buffer
);
2527 if (FAILED(hr
) && hr
!= E_OUTOFMEMORY
)
2528 hr
= D3DERR_INVALIDCALL
;
2531 if (stream
) IStream_Release(stream
);
2533 if (frame
) IWICBitmapFrameEncode_Release(frame
);
2534 if (encoder_options
) IPropertyBag2_Release(encoder_options
);
2536 if (encoder
) IWICBitmapEncoder_Release(encoder
);