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 /* windowscodecs always returns xRGB, but we should return ARGB if and only if
891 * at least one pixel has a non-zero alpha component. */
892 static BOOL
image_is_argb(IWICBitmapFrameDecode
*frame
, const D3DXIMAGE_INFO
*info
)
894 unsigned int size
, i
;
898 if (info
->Format
!= D3DFMT_X8R8G8B8
|| info
->ImageFileFormat
!= D3DXIFF_BMP
)
901 size
= info
->Width
* info
->Height
* 4;
902 if (!(buffer
= malloc(size
)))
905 if (FAILED(hr
= IWICBitmapFrameDecode_CopyPixels(frame
, NULL
, info
->Width
* 4, size
, buffer
)))
907 ERR("Failed to copy pixels, hr %#x.\n", hr
);
912 for (i
= 0; i
< info
->Width
* info
->Height
; ++i
)
914 if (buffer
[i
* 4 + 3])
925 /************************************************************
926 * D3DXGetImageInfoFromFileInMemory
928 * Fills a D3DXIMAGE_INFO structure with info about an image
931 * data [I] pointer to the image file data
932 * datasize [I] size of the passed data
933 * info [O] pointer to the destination structure
936 * Success: D3D_OK, if info is not NULL and data and datasize make up a valid image file or
937 * if info is NULL and data and datasize are not NULL
938 * Failure: D3DXERR_INVALIDDATA, if data is no valid image file and datasize and info are not NULL
939 * D3DERR_INVALIDCALL, if data is NULL or
943 * datasize may be bigger than the actual file size
946 HRESULT WINAPI
D3DXGetImageInfoFromFileInMemory(const void *data
, UINT datasize
, D3DXIMAGE_INFO
*info
)
948 IWICImagingFactory
*factory
;
949 IWICBitmapDecoder
*decoder
= NULL
;
954 TRACE("(%p, %d, %p)\n", data
, datasize
, info
);
956 if (!data
|| !datasize
)
957 return D3DERR_INVALIDCALL
;
962 if ((datasize
>= 4) && !strncmp(data
, "DDS ", 4)) {
963 TRACE("File type is DDS\n");
964 return get_image_info_from_dds(data
, datasize
, info
);
967 /* In case of DIB file, convert it to BMP */
968 dib
= convert_dib_to_bmp(&data
, &datasize
);
970 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
973 IWICImagingFactory_CreateStream(factory
, &stream
);
974 IWICStream_InitializeFromMemory(stream
, (BYTE
*)data
, datasize
);
975 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, (IStream
*)stream
, NULL
, 0, &decoder
);
976 IWICStream_Release(stream
);
977 IWICImagingFactory_Release(factory
);
981 if ((datasize
>= 2) && (!strncmp(data
, "P3", 2) || !strncmp(data
, "P6", 2)))
982 FIXME("File type PPM is not supported yet\n");
983 else if ((datasize
>= 10) && !strncmp(data
, "#?RADIANCE", 10))
984 FIXME("File type HDR is not supported yet\n");
985 else if ((datasize
>= 2) && (!strncmp(data
, "PF", 2) || !strncmp(data
, "Pf", 2)))
986 FIXME("File type PFM is not supported yet\n");
990 GUID container_format
;
993 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &container_format
);
995 if (IsEqualGUID(&container_format
, &GUID_ContainerFormatBmp
)) {
997 TRACE("File type is DIB\n");
998 info
->ImageFileFormat
= D3DXIFF_DIB
;
1000 TRACE("File type is BMP\n");
1001 info
->ImageFileFormat
= D3DXIFF_BMP
;
1003 } else if (IsEqualGUID(&container_format
, &GUID_ContainerFormatPng
)) {
1004 TRACE("File type is PNG\n");
1005 info
->ImageFileFormat
= D3DXIFF_PNG
;
1006 } else if(IsEqualGUID(&container_format
, &GUID_ContainerFormatJpeg
)) {
1007 TRACE("File type is JPG\n");
1008 info
->ImageFileFormat
= D3DXIFF_JPG
;
1009 } else if(IsEqualGUID(&container_format
, &GUID_WineContainerFormatTga
)) {
1010 TRACE("File type is TGA\n");
1011 info
->ImageFileFormat
= D3DXIFF_TGA
;
1013 WARN("Unsupported image file format %s\n", debugstr_guid(&container_format
));
1014 hr
= D3DXERR_INVALIDDATA
;
1019 hr
= IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
1020 if (SUCCEEDED(hr
) && !frame_count
)
1021 hr
= D3DXERR_INVALIDDATA
;
1023 if (SUCCEEDED(hr
)) {
1024 IWICBitmapFrameDecode
*frame
= NULL
;
1026 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
1029 hr
= IWICBitmapFrameDecode_GetSize(frame
, &info
->Width
, &info
->Height
);
1031 if (SUCCEEDED(hr
)) {
1032 WICPixelFormatGUID pixel_format
;
1034 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &pixel_format
);
1035 if (SUCCEEDED(hr
)) {
1036 info
->Format
= wic_guid_to_d3dformat(&pixel_format
);
1037 if (info
->Format
== D3DFMT_UNKNOWN
) {
1038 WARN("Unsupported pixel format %s\n", debugstr_guid(&pixel_format
));
1039 hr
= D3DXERR_INVALIDDATA
;
1044 if (SUCCEEDED(hr
) && image_is_argb(frame
, info
))
1045 info
->Format
= D3DFMT_A8R8G8B8
;
1048 IWICBitmapFrameDecode_Release(frame
);
1051 info
->MipLevels
= 1;
1052 info
->ResourceType
= D3DRTYPE_TEXTURE
;
1057 IWICBitmapDecoder_Release(decoder
);
1060 HeapFree(GetProcessHeap(), 0, (void*)data
);
1063 TRACE("Invalid or unsupported image file\n");
1064 return D3DXERR_INVALIDDATA
;
1070 /************************************************************
1071 * D3DXGetImageInfoFromFile
1074 * Success: D3D_OK, if we successfully load a valid image file or
1075 * if we successfully load a file which is no valid image and info is NULL
1076 * Failure: D3DXERR_INVALIDDATA, if we fail to load file or
1077 * if file is not a valid image file and info is not NULL
1078 * D3DERR_INVALIDCALL, if file is NULL
1081 HRESULT WINAPI
D3DXGetImageInfoFromFileA(const char *file
, D3DXIMAGE_INFO
*info
)
1087 TRACE("file %s, info %p.\n", debugstr_a(file
), info
);
1089 if( !file
) return D3DERR_INVALIDCALL
;
1091 strlength
= MultiByteToWideChar(CP_ACP
, 0, file
, -1, NULL
, 0);
1092 widename
= HeapAlloc(GetProcessHeap(), 0, strlength
* sizeof(*widename
));
1093 MultiByteToWideChar(CP_ACP
, 0, file
, -1, widename
, strlength
);
1095 hr
= D3DXGetImageInfoFromFileW(widename
, info
);
1096 HeapFree(GetProcessHeap(), 0, widename
);
1101 HRESULT WINAPI
D3DXGetImageInfoFromFileW(const WCHAR
*file
, D3DXIMAGE_INFO
*info
)
1107 TRACE("file %s, info %p.\n", debugstr_w(file
), info
);
1110 return D3DERR_INVALIDCALL
;
1112 if (FAILED(map_view_of_file(file
, &buffer
, &size
)))
1113 return D3DXERR_INVALIDDATA
;
1115 hr
= D3DXGetImageInfoFromFileInMemory(buffer
, size
, info
);
1116 UnmapViewOfFile(buffer
);
1121 /************************************************************
1122 * D3DXGetImageInfoFromResource
1125 * Success: D3D_OK, if resource is a valid image file
1126 * Failure: D3DXERR_INVALIDDATA, if resource is no valid image file or NULL or
1127 * if we fail to load resource
1130 HRESULT WINAPI
D3DXGetImageInfoFromResourceA(HMODULE module
, const char *resource
, D3DXIMAGE_INFO
*info
)
1136 TRACE("module %p, resource %s, info %p.\n", module
, debugstr_a(resource
), info
);
1138 if (!(resinfo
= FindResourceA(module
, resource
, (const char *)RT_RCDATA
))
1139 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1140 && !(resinfo
= FindResourceA(module
, resource
, (const char *)RT_BITMAP
)))
1141 return D3DXERR_INVALIDDATA
;
1143 if (FAILED(load_resource_into_memory(module
, resinfo
, &buffer
, &size
)))
1144 return D3DXERR_INVALIDDATA
;
1146 return D3DXGetImageInfoFromFileInMemory(buffer
, size
, info
);
1149 HRESULT WINAPI
D3DXGetImageInfoFromResourceW(HMODULE module
, const WCHAR
*resource
, D3DXIMAGE_INFO
*info
)
1155 TRACE("module %p, resource %s, info %p.\n", module
, debugstr_w(resource
), info
);
1157 if (!(resinfo
= FindResourceW(module
, resource
, (const WCHAR
*)RT_RCDATA
))
1158 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1159 && !(resinfo
= FindResourceW(module
, resource
, (const WCHAR
*)RT_BITMAP
)))
1160 return D3DXERR_INVALIDDATA
;
1162 if (FAILED(load_resource_into_memory(module
, resinfo
, &buffer
, &size
)))
1163 return D3DXERR_INVALIDDATA
;
1165 return D3DXGetImageInfoFromFileInMemory(buffer
, size
, info
);
1168 /************************************************************
1169 * D3DXLoadSurfaceFromFileInMemory
1171 * Loads data from a given buffer into a surface and fills a given
1172 * D3DXIMAGE_INFO structure with info about the source data.
1175 * pDestSurface [I] pointer to the surface
1176 * pDestPalette [I] palette to use
1177 * pDestRect [I] to be filled area of the surface
1178 * pSrcData [I] pointer to the source data
1179 * SrcDataSize [I] size of the source data in bytes
1180 * pSrcRect [I] area of the source data to load
1181 * dwFilter [I] filter to apply on stretching
1182 * Colorkey [I] colorkey
1183 * pSrcInfo [O] pointer to a D3DXIMAGE_INFO structure
1187 * Failure: D3DERR_INVALIDCALL, if pDestSurface, pSrcData or SrcDataSize is NULL
1188 * D3DXERR_INVALIDDATA, if pSrcData is no valid image file
1191 HRESULT WINAPI
D3DXLoadSurfaceFromFileInMemory(IDirect3DSurface9
*pDestSurface
,
1192 const PALETTEENTRY
*pDestPalette
, const RECT
*pDestRect
, const void *pSrcData
, UINT SrcDataSize
,
1193 const RECT
*pSrcRect
, DWORD dwFilter
, D3DCOLOR Colorkey
, D3DXIMAGE_INFO
*pSrcInfo
)
1195 D3DXIMAGE_INFO imginfo
;
1198 IWICImagingFactory
*factory
= NULL
;
1199 IWICBitmapDecoder
*decoder
;
1200 IWICBitmapFrameDecode
*bitmapframe
;
1203 const struct pixel_format_desc
*formatdesc
;
1207 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_data %p, src_data_size %u, "
1208 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1209 pDestSurface
, pDestPalette
, wine_dbgstr_rect(pDestRect
), pSrcData
, SrcDataSize
,
1210 wine_dbgstr_rect(pSrcRect
), dwFilter
, Colorkey
, pSrcInfo
);
1212 if (!pDestSurface
|| !pSrcData
|| !SrcDataSize
)
1213 return D3DERR_INVALIDCALL
;
1215 hr
= D3DXGetImageInfoFromFileInMemory(pSrcData
, SrcDataSize
, &imginfo
);
1222 wicrect
.X
= pSrcRect
->left
;
1223 wicrect
.Y
= pSrcRect
->top
;
1224 wicrect
.Width
= pSrcRect
->right
- pSrcRect
->left
;
1225 wicrect
.Height
= pSrcRect
->bottom
- pSrcRect
->top
;
1231 wicrect
.Width
= imginfo
.Width
;
1232 wicrect
.Height
= imginfo
.Height
;
1235 SetRect(&rect
, wicrect
.X
, wicrect
.Y
, wicrect
.X
+ wicrect
.Width
, wicrect
.Y
+ wicrect
.Height
);
1237 if (imginfo
.ImageFileFormat
== D3DXIFF_DDS
)
1239 hr
= load_surface_from_dds(pDestSurface
, pDestPalette
, pDestRect
, pSrcData
, &rect
,
1240 dwFilter
, Colorkey
, &imginfo
);
1241 if (SUCCEEDED(hr
) && pSrcInfo
)
1242 *pSrcInfo
= imginfo
;
1246 if (imginfo
.ImageFileFormat
== D3DXIFF_DIB
)
1247 convert_dib_to_bmp(&pSrcData
, &SrcDataSize
);
1249 if (FAILED(WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
)))
1252 if (FAILED(IWICImagingFactory_CreateStream(factory
, &stream
)))
1254 IWICImagingFactory_Release(factory
);
1259 IWICStream_InitializeFromMemory(stream
, (BYTE
*)pSrcData
, SrcDataSize
);
1261 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, (IStream
*)stream
, NULL
, 0, &decoder
);
1263 IWICStream_Release(stream
);
1268 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &bitmapframe
);
1273 formatdesc
= get_format_info(imginfo
.Format
);
1275 if (formatdesc
->type
== FORMAT_UNKNOWN
)
1277 FIXME("Unsupported pixel format\n");
1278 hr
= D3DXERR_INVALIDDATA
;
1284 PALETTEENTRY
*palette
= NULL
;
1285 WICColor
*colors
= NULL
;
1287 pitch
= formatdesc
->bytes_per_pixel
* wicrect
.Width
;
1288 buffer
= HeapAlloc(GetProcessHeap(), 0, pitch
* wicrect
.Height
);
1290 hr
= IWICBitmapFrameDecode_CopyPixels(bitmapframe
, &wicrect
, pitch
,
1291 pitch
* wicrect
.Height
, buffer
);
1293 if (SUCCEEDED(hr
) && (formatdesc
->type
== FORMAT_INDEX
))
1295 IWICPalette
*wic_palette
= NULL
;
1298 hr
= IWICImagingFactory_CreatePalette(factory
, &wic_palette
);
1300 hr
= IWICBitmapFrameDecode_CopyPalette(bitmapframe
, wic_palette
);
1302 hr
= IWICPalette_GetColorCount(wic_palette
, &nb_colors
);
1305 colors
= HeapAlloc(GetProcessHeap(), 0, nb_colors
* sizeof(colors
[0]));
1306 palette
= HeapAlloc(GetProcessHeap(), 0, nb_colors
* sizeof(palette
[0]));
1307 if (!colors
|| !palette
)
1311 hr
= IWICPalette_GetColors(wic_palette
, nb_colors
, colors
, &nb_colors
);
1316 /* Convert colors from WICColor (ARGB) to PALETTEENTRY (ABGR) */
1317 for (i
= 0; i
< nb_colors
; i
++)
1319 palette
[i
].peRed
= (colors
[i
] >> 16) & 0xff;
1320 palette
[i
].peGreen
= (colors
[i
] >> 8) & 0xff;
1321 palette
[i
].peBlue
= colors
[i
] & 0xff;
1322 palette
[i
].peFlags
= (colors
[i
] >> 24) & 0xff; /* peFlags is the alpha component in DX8 and higher */
1326 IWICPalette_Release(wic_palette
);
1331 hr
= D3DXLoadSurfaceFromMemory(pDestSurface
, pDestPalette
, pDestRect
,
1332 buffer
, imginfo
.Format
, pitch
,
1333 palette
, &rect
, dwFilter
, Colorkey
);
1336 HeapFree(GetProcessHeap(), 0, colors
);
1337 HeapFree(GetProcessHeap(), 0, palette
);
1338 HeapFree(GetProcessHeap(), 0, buffer
);
1341 IWICBitmapFrameDecode_Release(bitmapframe
);
1344 IWICBitmapDecoder_Release(decoder
);
1348 IWICImagingFactory_Release(factory
);
1350 if (imginfo
.ImageFileFormat
== D3DXIFF_DIB
)
1351 HeapFree(GetProcessHeap(), 0, (void*)pSrcData
);
1354 return D3DXERR_INVALIDDATA
;
1357 *pSrcInfo
= imginfo
;
1362 HRESULT WINAPI
D3DXLoadSurfaceFromFileA(IDirect3DSurface9
*dst_surface
,
1363 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, const char *src_file
,
1364 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1370 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_file %s, "
1371 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1372 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), debugstr_a(src_file
),
1373 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1375 if (!src_file
|| !dst_surface
)
1376 return D3DERR_INVALIDCALL
;
1378 strlength
= MultiByteToWideChar(CP_ACP
, 0, src_file
, -1, NULL
, 0);
1379 src_file_w
= HeapAlloc(GetProcessHeap(), 0, strlength
* sizeof(*src_file_w
));
1380 MultiByteToWideChar(CP_ACP
, 0, src_file
, -1, src_file_w
, strlength
);
1382 hr
= D3DXLoadSurfaceFromFileW(dst_surface
, dst_palette
, dst_rect
,
1383 src_file_w
, src_rect
, filter
, color_key
, src_info
);
1384 HeapFree(GetProcessHeap(), 0, src_file_w
);
1389 HRESULT WINAPI
D3DXLoadSurfaceFromFileW(IDirect3DSurface9
*dst_surface
,
1390 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, const WCHAR
*src_file
,
1391 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1397 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_file %s, "
1398 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1399 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), debugstr_w(src_file
),
1400 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1402 if (!src_file
|| !dst_surface
)
1403 return D3DERR_INVALIDCALL
;
1405 if (FAILED(map_view_of_file(src_file
, &data
, &data_size
)))
1406 return D3DXERR_INVALIDDATA
;
1408 hr
= D3DXLoadSurfaceFromFileInMemory(dst_surface
, dst_palette
, dst_rect
,
1409 data
, data_size
, src_rect
, filter
, color_key
, src_info
);
1410 UnmapViewOfFile(data
);
1415 HRESULT WINAPI
D3DXLoadSurfaceFromResourceA(IDirect3DSurface9
*dst_surface
,
1416 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, HMODULE src_module
, const char *resource
,
1417 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1423 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_module %p, resource %s, "
1424 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1425 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_module
, debugstr_a(resource
),
1426 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1429 return D3DERR_INVALIDCALL
;
1431 if (!(resinfo
= FindResourceA(src_module
, resource
, (const char *)RT_RCDATA
))
1432 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1433 && !(resinfo
= FindResourceA(src_module
, resource
, (const char *)RT_BITMAP
)))
1434 return D3DXERR_INVALIDDATA
;
1436 if (FAILED(load_resource_into_memory(src_module
, resinfo
, &data
, &data_size
)))
1437 return D3DXERR_INVALIDDATA
;
1439 return D3DXLoadSurfaceFromFileInMemory(dst_surface
, dst_palette
, dst_rect
,
1440 data
, data_size
, src_rect
, filter
, color_key
, src_info
);
1443 HRESULT WINAPI
D3DXLoadSurfaceFromResourceW(IDirect3DSurface9
*dst_surface
,
1444 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, HMODULE src_module
, const WCHAR
*resource
,
1445 const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
, D3DXIMAGE_INFO
*src_info
)
1451 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_module %p, resource %s, "
1452 "src_rect %s, filter %#x, color_key 0x%08x, src_info %p.\n",
1453 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_module
, debugstr_w(resource
),
1454 wine_dbgstr_rect(src_rect
), filter
, color_key
, src_info
);
1457 return D3DERR_INVALIDCALL
;
1459 if (!(resinfo
= FindResourceW(src_module
, resource
, (const WCHAR
*)RT_RCDATA
))
1460 /* Try loading the resource as bitmap data (which is in DIB format D3DXIFF_DIB) */
1461 && !(resinfo
= FindResourceW(src_module
, resource
, (const WCHAR
*)RT_BITMAP
)))
1462 return D3DXERR_INVALIDDATA
;
1464 if (FAILED(load_resource_into_memory(src_module
, resinfo
, &data
, &data_size
)))
1465 return D3DXERR_INVALIDDATA
;
1467 return D3DXLoadSurfaceFromFileInMemory(dst_surface
, dst_palette
, dst_rect
,
1468 data
, data_size
, src_rect
, filter
, color_key
, src_info
);
1472 /************************************************************
1473 * helper functions for D3DXLoadSurfaceFromMemory
1475 struct argb_conversion_info
1477 const struct pixel_format_desc
*srcformat
;
1478 const struct pixel_format_desc
*destformat
;
1479 DWORD srcshift
[4], destshift
[4];
1480 DWORD srcmask
[4], destmask
[4];
1481 BOOL process_channel
[4];
1485 static void init_argb_conversion_info(const struct pixel_format_desc
*srcformat
, const struct pixel_format_desc
*destformat
, struct argb_conversion_info
*info
)
1488 ZeroMemory(info
->process_channel
, 4 * sizeof(BOOL
));
1489 info
->channelmask
= 0;
1491 info
->srcformat
= srcformat
;
1492 info
->destformat
= destformat
;
1494 for(i
= 0;i
< 4;i
++) {
1495 /* srcshift is used to extract the _relevant_ components */
1496 info
->srcshift
[i
] = srcformat
->shift
[i
] + max( srcformat
->bits
[i
] - destformat
->bits
[i
], 0);
1498 /* destshift is used to move the components to the correct position */
1499 info
->destshift
[i
] = destformat
->shift
[i
] + max(destformat
->bits
[i
] - srcformat
->bits
[i
], 0);
1501 info
->srcmask
[i
] = ((1 << srcformat
->bits
[i
]) - 1) << srcformat
->shift
[i
];
1502 info
->destmask
[i
] = ((1 << destformat
->bits
[i
]) - 1) << destformat
->shift
[i
];
1504 /* channelmask specifies bits which aren't used in the source format but in the destination one */
1505 if(destformat
->bits
[i
]) {
1506 if(srcformat
->bits
[i
]) info
->process_channel
[i
] = TRUE
;
1507 else info
->channelmask
|= info
->destmask
[i
];
1512 /************************************************************
1513 * get_relevant_argb_components
1515 * Extracts the relevant components from the source color and
1516 * drops the less significant bits if they aren't used by the destination format.
1518 static void get_relevant_argb_components(const struct argb_conversion_info
*info
, const BYTE
*col
, DWORD
*out
)
1521 unsigned int component
, mask
;
1523 for (i
= 0; i
< 4; ++i
)
1525 if (!info
->process_channel
[i
])
1529 mask
= info
->srcmask
[i
];
1530 for (j
= 0; j
< 4 && mask
; ++j
)
1532 if (info
->srcshift
[i
] < j
* 8)
1533 component
|= (col
[j
] & mask
) << (j
* 8 - info
->srcshift
[i
]);
1535 component
|= (col
[j
] & mask
) >> (info
->srcshift
[i
] - j
* 8);
1542 /************************************************************
1545 * Recombines the output of get_relevant_argb_components and converts
1546 * it to the destination format.
1548 static DWORD
make_argb_color(const struct argb_conversion_info
*info
, const DWORD
*in
)
1553 for(i
= 0;i
< 4;i
++) {
1554 if(info
->process_channel
[i
]) {
1555 /* necessary to make sure that e.g. an X4R4G4B4 white maps to an R8G8B8 white instead of 0xf0f0f0 */
1557 for(shift
= info
->destshift
[i
]; shift
> info
->destformat
->shift
[i
]; shift
-= info
->srcformat
->bits
[i
]) val
|= in
[i
] << shift
;
1558 val
|= (in
[i
] >> (info
->destformat
->shift
[i
] - shift
)) << info
->destformat
->shift
[i
];
1561 val
|= info
->channelmask
; /* new channels are set to their maximal value */
1565 /* It doesn't work for components bigger than 32 bits (or somewhat smaller but unaligned). */
1566 static void format_to_vec4(const struct pixel_format_desc
*format
, const BYTE
*src
, struct vec4
*dst
)
1571 for (c
= 0; c
< 4; ++c
)
1573 static const unsigned int component_offsets
[4] = {3, 0, 1, 2};
1574 float *dst_component
= (float *)dst
+ component_offsets
[c
];
1576 if (format
->bits
[c
])
1578 mask
= ~0u >> (32 - format
->bits
[c
]);
1580 memcpy(&tmp
, src
+ format
->shift
[c
] / 8,
1581 min(sizeof(DWORD
), (format
->shift
[c
] % 8 + format
->bits
[c
] + 7) / 8));
1583 if (format
->type
== FORMAT_ARGBF16
)
1584 *dst_component
= float_16_to_32(tmp
);
1585 else if (format
->type
== FORMAT_ARGBF
)
1586 *dst_component
= *(float *)&tmp
;
1588 *dst_component
= (float)((tmp
>> format
->shift
[c
] % 8) & mask
) / mask
;
1591 *dst_component
= 1.0f
;
1595 /* It doesn't work for components bigger than 32 bits. */
1596 static void format_from_vec4(const struct pixel_format_desc
*format
, const struct vec4
*src
, BYTE
*dst
)
1601 memset(dst
, 0, format
->bytes_per_pixel
);
1603 for (c
= 0; c
< 4; ++c
)
1605 static const unsigned int component_offsets
[4] = {3, 0, 1, 2};
1606 const float src_component
= *((const float *)src
+ component_offsets
[c
]);
1608 if (!format
->bits
[c
])
1611 mask32
= ~0u >> (32 - format
->bits
[c
]);
1613 if (format
->type
== FORMAT_ARGBF16
)
1614 v
= float_32_to_16(src_component
);
1615 else if (format
->type
== FORMAT_ARGBF
)
1616 v
= *(DWORD
*)&src_component
;
1618 v
= (DWORD
)(src_component
* ((1 << format
->bits
[c
]) - 1) + 0.5f
);
1620 for (i
= format
->shift
[c
] / 8 * 8; i
< format
->shift
[c
] + format
->bits
[c
]; i
+= 8)
1624 if (format
->shift
[c
] > i
)
1626 mask
= mask32
<< (format
->shift
[c
] - i
);
1627 byte
= (v
<< (format
->shift
[c
] - i
)) & mask
;
1631 mask
= mask32
>> (i
- format
->shift
[c
]);
1632 byte
= (v
>> (i
- format
->shift
[c
])) & mask
;
1639 /************************************************************
1642 * Copies the source buffer to the destination buffer.
1643 * Works for any pixel format.
1644 * The source and the destination must be block-aligned.
1646 void copy_pixels(const BYTE
*src
, UINT src_row_pitch
, UINT src_slice_pitch
,
1647 BYTE
*dst
, UINT dst_row_pitch
, UINT dst_slice_pitch
, const struct volume
*size
,
1648 const struct pixel_format_desc
*format
)
1652 const BYTE
*src_addr
;
1653 UINT row_block_count
= (size
->width
+ format
->block_width
- 1) / format
->block_width
;
1654 UINT row_count
= (size
->height
+ format
->block_height
- 1) / format
->block_height
;
1656 for (slice
= 0; slice
< size
->depth
; slice
++)
1658 src_addr
= src
+ slice
* src_slice_pitch
;
1659 dst_addr
= dst
+ slice
* dst_slice_pitch
;
1661 for (row
= 0; row
< row_count
; row
++)
1663 memcpy(dst_addr
, src_addr
, row_block_count
* format
->block_byte_count
);
1664 src_addr
+= src_row_pitch
;
1665 dst_addr
+= dst_row_pitch
;
1670 /************************************************************
1671 * convert_argb_pixels
1673 * Copies the source buffer to the destination buffer, performing
1674 * any necessary format conversion and color keying.
1675 * Pixels outsize the source rect are blacked out.
1677 void convert_argb_pixels(const BYTE
*src
, UINT src_row_pitch
, UINT src_slice_pitch
, const struct volume
*src_size
,
1678 const struct pixel_format_desc
*src_format
, BYTE
*dst
, UINT dst_row_pitch
, UINT dst_slice_pitch
,
1679 const struct volume
*dst_size
, const struct pixel_format_desc
*dst_format
, D3DCOLOR color_key
,
1680 const PALETTEENTRY
*palette
)
1682 struct argb_conversion_info conv_info
, ck_conv_info
;
1683 const struct pixel_format_desc
*ck_format
= NULL
;
1685 UINT min_width
, min_height
, min_depth
;
1688 TRACE("src %p, src_row_pitch %u, src_slice_pitch %u, src_size %p, src_format %p, dst %p, "
1689 "dst_row_pitch %u, dst_slice_pitch %u, dst_size %p, dst_format %p, color_key 0x%08x, palette %p.\n",
1690 src
, src_row_pitch
, src_slice_pitch
, src_size
, src_format
, dst
, dst_row_pitch
, dst_slice_pitch
, dst_size
,
1691 dst_format
, color_key
, palette
);
1693 ZeroMemory(channels
, sizeof(channels
));
1694 init_argb_conversion_info(src_format
, dst_format
, &conv_info
);
1696 min_width
= min(src_size
->width
, dst_size
->width
);
1697 min_height
= min(src_size
->height
, dst_size
->height
);
1698 min_depth
= min(src_size
->depth
, dst_size
->depth
);
1702 /* Color keys are always represented in D3DFMT_A8R8G8B8 format. */
1703 ck_format
= get_format_info(D3DFMT_A8R8G8B8
);
1704 init_argb_conversion_info(src_format
, ck_format
, &ck_conv_info
);
1707 for (z
= 0; z
< min_depth
; z
++) {
1708 const BYTE
*src_slice_ptr
= src
+ z
* src_slice_pitch
;
1709 BYTE
*dst_slice_ptr
= dst
+ z
* dst_slice_pitch
;
1711 for (y
= 0; y
< min_height
; y
++) {
1712 const BYTE
*src_ptr
= src_slice_ptr
+ y
* src_row_pitch
;
1713 BYTE
*dst_ptr
= dst_slice_ptr
+ y
* dst_row_pitch
;
1715 for (x
= 0; x
< min_width
; x
++) {
1716 if (!src_format
->to_rgba
&& !dst_format
->from_rgba
1717 && src_format
->type
== dst_format
->type
1718 && src_format
->bytes_per_pixel
<= 4 && dst_format
->bytes_per_pixel
<= 4)
1722 get_relevant_argb_components(&conv_info
, src_ptr
, channels
);
1723 val
= make_argb_color(&conv_info
, channels
);
1729 get_relevant_argb_components(&ck_conv_info
, src_ptr
, channels
);
1730 ck_pixel
= make_argb_color(&ck_conv_info
, channels
);
1731 if (ck_pixel
== color_key
)
1732 val
&= ~conv_info
.destmask
[0];
1734 memcpy(dst_ptr
, &val
, dst_format
->bytes_per_pixel
);
1738 struct vec4 color
, tmp
;
1740 format_to_vec4(src_format
, src_ptr
, &color
);
1741 if (src_format
->to_rgba
)
1742 src_format
->to_rgba(&color
, &tmp
, palette
);
1750 format_from_vec4(ck_format
, &tmp
, (BYTE
*)&ck_pixel
);
1751 if (ck_pixel
== color_key
)
1755 if (dst_format
->from_rgba
)
1756 dst_format
->from_rgba(&tmp
, &color
);
1760 format_from_vec4(dst_format
, &color
, dst_ptr
);
1763 src_ptr
+= src_format
->bytes_per_pixel
;
1764 dst_ptr
+= dst_format
->bytes_per_pixel
;
1767 if (src_size
->width
< dst_size
->width
) /* black out remaining pixels */
1768 memset(dst_ptr
, 0, dst_format
->bytes_per_pixel
* (dst_size
->width
- src_size
->width
));
1771 if (src_size
->height
< dst_size
->height
) /* black out remaining pixels */
1772 memset(dst
+ src_size
->height
* dst_row_pitch
, 0, dst_row_pitch
* (dst_size
->height
- src_size
->height
));
1774 if (src_size
->depth
< dst_size
->depth
) /* black out remaining pixels */
1775 memset(dst
+ src_size
->depth
* dst_slice_pitch
, 0, dst_slice_pitch
* (dst_size
->depth
- src_size
->depth
));
1778 /************************************************************
1779 * point_filter_argb_pixels
1781 * Copies the source buffer to the destination buffer, performing
1782 * any necessary format conversion, color keying and stretching
1783 * using a point filter.
1785 void point_filter_argb_pixels(const BYTE
*src
, UINT src_row_pitch
, UINT src_slice_pitch
, const struct volume
*src_size
,
1786 const struct pixel_format_desc
*src_format
, BYTE
*dst
, UINT dst_row_pitch
, UINT dst_slice_pitch
,
1787 const struct volume
*dst_size
, const struct pixel_format_desc
*dst_format
, D3DCOLOR color_key
,
1788 const PALETTEENTRY
*palette
)
1790 struct argb_conversion_info conv_info
, ck_conv_info
;
1791 const struct pixel_format_desc
*ck_format
= NULL
;
1795 TRACE("src %p, src_row_pitch %u, src_slice_pitch %u, src_size %p, src_format %p, dst %p, "
1796 "dst_row_pitch %u, dst_slice_pitch %u, dst_size %p, dst_format %p, color_key 0x%08x, palette %p.\n",
1797 src
, src_row_pitch
, src_slice_pitch
, src_size
, src_format
, dst
, dst_row_pitch
, dst_slice_pitch
, dst_size
,
1798 dst_format
, color_key
, palette
);
1800 ZeroMemory(channels
, sizeof(channels
));
1801 init_argb_conversion_info(src_format
, dst_format
, &conv_info
);
1805 /* Color keys are always represented in D3DFMT_A8R8G8B8 format. */
1806 ck_format
= get_format_info(D3DFMT_A8R8G8B8
);
1807 init_argb_conversion_info(src_format
, ck_format
, &ck_conv_info
);
1810 for (z
= 0; z
< dst_size
->depth
; z
++)
1812 BYTE
*dst_slice_ptr
= dst
+ z
* dst_slice_pitch
;
1813 const BYTE
*src_slice_ptr
= src
+ src_slice_pitch
* (z
* src_size
->depth
/ dst_size
->depth
);
1815 for (y
= 0; y
< dst_size
->height
; y
++)
1817 BYTE
*dst_ptr
= dst_slice_ptr
+ y
* dst_row_pitch
;
1818 const BYTE
*src_row_ptr
= src_slice_ptr
+ src_row_pitch
* (y
* src_size
->height
/ dst_size
->height
);
1820 for (x
= 0; x
< dst_size
->width
; x
++)
1822 const BYTE
*src_ptr
= src_row_ptr
+ (x
* src_size
->width
/ dst_size
->width
) * src_format
->bytes_per_pixel
;
1824 if (!src_format
->to_rgba
&& !dst_format
->from_rgba
1825 && src_format
->type
== dst_format
->type
1826 && src_format
->bytes_per_pixel
<= 4 && dst_format
->bytes_per_pixel
<= 4)
1830 get_relevant_argb_components(&conv_info
, src_ptr
, channels
);
1831 val
= make_argb_color(&conv_info
, channels
);
1837 get_relevant_argb_components(&ck_conv_info
, src_ptr
, channels
);
1838 ck_pixel
= make_argb_color(&ck_conv_info
, channels
);
1839 if (ck_pixel
== color_key
)
1840 val
&= ~conv_info
.destmask
[0];
1842 memcpy(dst_ptr
, &val
, dst_format
->bytes_per_pixel
);
1846 struct vec4 color
, tmp
;
1848 format_to_vec4(src_format
, src_ptr
, &color
);
1849 if (src_format
->to_rgba
)
1850 src_format
->to_rgba(&color
, &tmp
, palette
);
1858 format_from_vec4(ck_format
, &tmp
, (BYTE
*)&ck_pixel
);
1859 if (ck_pixel
== color_key
)
1863 if (dst_format
->from_rgba
)
1864 dst_format
->from_rgba(&tmp
, &color
);
1868 format_from_vec4(dst_format
, &color
, dst_ptr
);
1871 dst_ptr
+= dst_format
->bytes_per_pixel
;
1877 /************************************************************
1878 * D3DXLoadSurfaceFromMemory
1880 * Loads data from a given memory chunk into a surface,
1881 * applying any of the specified filters.
1884 * pDestSurface [I] pointer to the surface
1885 * pDestPalette [I] palette to use
1886 * pDestRect [I] to be filled area of the surface
1887 * pSrcMemory [I] pointer to the source data
1888 * SrcFormat [I] format of the source pixel data
1889 * SrcPitch [I] number of bytes in a row
1890 * pSrcPalette [I] palette used in the source image
1891 * pSrcRect [I] area of the source data to load
1892 * dwFilter [I] filter to apply on stretching
1893 * Colorkey [I] colorkey
1896 * Success: D3D_OK, if we successfully load the pixel data into our surface or
1897 * if pSrcMemory is NULL but the other parameters are valid
1898 * Failure: D3DERR_INVALIDCALL, if pDestSurface, SrcPitch or pSrcRect is NULL or
1899 * if SrcFormat is an invalid format (other than D3DFMT_UNKNOWN) or
1900 * if DestRect is invalid
1901 * D3DXERR_INVALIDDATA, if we fail to lock pDestSurface
1902 * E_FAIL, if SrcFormat is D3DFMT_UNKNOWN or the dimensions of pSrcRect are invalid
1905 * pSrcRect specifies the dimensions of the source data;
1906 * negative values for pSrcRect are allowed as we're only looking at the width and height anyway.
1909 HRESULT WINAPI
D3DXLoadSurfaceFromMemory(IDirect3DSurface9
*dst_surface
,
1910 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, const void *src_memory
,
1911 D3DFORMAT src_format
, UINT src_pitch
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
,
1912 DWORD filter
, D3DCOLOR color_key
)
1914 const struct pixel_format_desc
*srcformatdesc
, *destformatdesc
;
1915 struct volume src_size
, dst_size
, dst_size_aligned
;
1916 RECT dst_rect_temp
, dst_rect_aligned
;
1917 IDirect3DSurface9
*surface
;
1918 D3DSURFACE_DESC surfdesc
;
1919 D3DLOCKED_RECT lockrect
;
1922 TRACE("(%p, %p, %s, %p, %#x, %u, %p, %s, %#x, 0x%08x)\n",
1923 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_memory
, src_format
,
1924 src_pitch
, src_palette
, wine_dbgstr_rect(src_rect
), filter
, color_key
);
1926 if (!dst_surface
|| !src_memory
|| !src_rect
)
1928 WARN("Invalid argument specified.\n");
1929 return D3DERR_INVALIDCALL
;
1931 if (src_format
== D3DFMT_UNKNOWN
1932 || src_rect
->left
>= src_rect
->right
1933 || src_rect
->top
>= src_rect
->bottom
)
1935 WARN("Invalid src_format or src_rect.\n");
1939 srcformatdesc
= get_format_info(src_format
);
1940 if (srcformatdesc
->type
== FORMAT_UNKNOWN
)
1942 FIXME("Unsupported format %#x.\n", src_format
);
1946 src_size
.width
= src_rect
->right
- src_rect
->left
;
1947 src_size
.height
= src_rect
->bottom
- src_rect
->top
;
1950 IDirect3DSurface9_GetDesc(dst_surface
, &surfdesc
);
1951 destformatdesc
= get_format_info(surfdesc
.Format
);
1954 dst_rect
= &dst_rect_temp
;
1955 dst_rect_temp
.left
= 0;
1956 dst_rect_temp
.top
= 0;
1957 dst_rect_temp
.right
= surfdesc
.Width
;
1958 dst_rect_temp
.bottom
= surfdesc
.Height
;
1962 if (dst_rect
->left
> dst_rect
->right
|| dst_rect
->right
> surfdesc
.Width
1963 || dst_rect
->top
> dst_rect
->bottom
|| dst_rect
->bottom
> surfdesc
.Height
1964 || dst_rect
->left
< 0 || dst_rect
->top
< 0)
1966 WARN("Invalid dst_rect specified.\n");
1967 return D3DERR_INVALIDCALL
;
1969 if (dst_rect
->left
== dst_rect
->right
|| dst_rect
->top
== dst_rect
->bottom
)
1971 WARN("Empty dst_rect specified.\n");
1976 dst_rect_aligned
= *dst_rect
;
1977 if (dst_rect_aligned
.left
& (destformatdesc
->block_width
- 1))
1978 dst_rect_aligned
.left
= dst_rect_aligned
.left
& ~(destformatdesc
->block_width
- 1);
1979 if (dst_rect_aligned
.top
& (destformatdesc
->block_height
- 1))
1980 dst_rect_aligned
.top
= dst_rect_aligned
.top
& ~(destformatdesc
->block_height
- 1);
1981 if (dst_rect_aligned
.right
& (destformatdesc
->block_width
- 1) && dst_rect_aligned
.right
!= surfdesc
.Width
)
1982 dst_rect_aligned
.right
= min((dst_rect_aligned
.right
+ destformatdesc
->block_width
- 1)
1983 & ~(destformatdesc
->block_width
- 1), surfdesc
.Width
);
1984 if (dst_rect_aligned
.bottom
& (destformatdesc
->block_height
- 1) && dst_rect_aligned
.bottom
!= surfdesc
.Height
)
1985 dst_rect_aligned
.bottom
= min((dst_rect_aligned
.bottom
+ destformatdesc
->block_height
- 1)
1986 & ~(destformatdesc
->block_height
- 1), surfdesc
.Height
);
1988 dst_size
.width
= dst_rect
->right
- dst_rect
->left
;
1989 dst_size
.height
= dst_rect
->bottom
- dst_rect
->top
;
1991 dst_size_aligned
.width
= dst_rect_aligned
.right
- dst_rect_aligned
.left
;
1992 dst_size_aligned
.height
= dst_rect_aligned
.bottom
- dst_rect_aligned
.top
;
1993 dst_size_aligned
.depth
= 1;
1995 if (filter
== D3DX_DEFAULT
)
1996 filter
= D3DX_FILTER_TRIANGLE
| D3DX_FILTER_DITHER
;
1998 if (FAILED(hr
= lock_surface(dst_surface
, &dst_rect_aligned
, &lockrect
, &surface
, TRUE
)))
2001 src_memory
= (BYTE
*)src_memory
+ src_rect
->top
/ srcformatdesc
->block_height
* src_pitch
2002 + src_rect
->left
/ srcformatdesc
->block_width
* srcformatdesc
->block_byte_count
;
2004 if (src_format
== surfdesc
.Format
2005 && dst_size
.width
== src_size
.width
2006 && dst_size
.height
== src_size
.height
2008 && !(src_rect
->left
& (srcformatdesc
->block_width
- 1))
2009 && !(src_rect
->top
& (srcformatdesc
->block_height
- 1))
2010 && !(dst_rect
->left
& (destformatdesc
->block_width
- 1))
2011 && !(dst_rect
->top
& (destformatdesc
->block_height
- 1)))
2013 TRACE("Simple copy.\n");
2014 copy_pixels(src_memory
, src_pitch
, 0, lockrect
.pBits
, lockrect
.Pitch
, 0,
2015 &src_size
, srcformatdesc
);
2017 else /* Stretching or format conversion. */
2019 const struct pixel_format_desc
*dst_format
;
2020 DWORD
*src_uncompressed
= NULL
;
2021 BYTE
*dst_uncompressed
= NULL
;
2022 unsigned int dst_pitch
;
2025 if (!is_conversion_from_supported(srcformatdesc
)
2026 || !is_conversion_to_supported(destformatdesc
))
2028 FIXME("Unsupported format conversion %#x -> %#x.\n", src_format
, surfdesc
.Format
);
2029 unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, FALSE
);
2033 if (srcformatdesc
->type
== FORMAT_DXT
)
2035 void (*fetch_dxt_texel
)(int srcRowStride
, const BYTE
*pixdata
,
2036 int i
, int j
, void *texel
);
2039 src_pitch
= src_pitch
* srcformatdesc
->block_width
/ srcformatdesc
->block_byte_count
;
2041 src_uncompressed
= heap_alloc(src_size
.width
* src_size
.height
* sizeof(DWORD
));
2042 if (!src_uncompressed
)
2044 unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, FALSE
);
2045 return E_OUTOFMEMORY
;
2051 fetch_dxt_texel
= fetch_2d_texel_rgba_dxt1
;
2055 fetch_dxt_texel
= fetch_2d_texel_rgba_dxt3
;
2059 fetch_dxt_texel
= fetch_2d_texel_rgba_dxt5
;
2062 FIXME("Unexpected compressed texture format %u.\n", src_format
);
2063 fetch_dxt_texel
= NULL
;
2066 TRACE("Uncompressing DXTn surface.\n");
2067 for (y
= 0; y
< src_size
.height
; ++y
)
2069 DWORD
*ptr
= &src_uncompressed
[y
* src_size
.width
];
2070 for (x
= 0; x
< src_size
.width
; ++x
)
2072 fetch_dxt_texel(src_pitch
, src_memory
, x
+ src_rect
->left
, y
+ src_rect
->top
, ptr
);
2076 src_memory
= src_uncompressed
;
2077 src_pitch
= src_size
.width
* sizeof(DWORD
);
2078 srcformatdesc
= get_format_info(D3DFMT_A8B8G8R8
);
2081 if (destformatdesc
->type
== FORMAT_DXT
)
2083 BOOL dst_misaligned
= dst_rect
->left
!= dst_rect_aligned
.left
2084 || dst_rect
->top
!= dst_rect_aligned
.top
2085 || dst_rect
->right
!= dst_rect_aligned
.right
2086 || dst_rect
->bottom
!= dst_rect_aligned
.bottom
;
2088 dst_uncompressed
= HeapAlloc(GetProcessHeap(), dst_misaligned
? HEAP_ZERO_MEMORY
: 0,
2089 dst_size_aligned
.width
* dst_size_aligned
.height
* sizeof(DWORD
));
2090 if (!dst_uncompressed
)
2092 heap_free(src_uncompressed
);
2093 unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, FALSE
);
2094 return E_OUTOFMEMORY
;
2096 dst_pitch
= dst_size_aligned
.width
* sizeof(DWORD
);
2097 dst_format
= get_format_info(D3DFMT_A8B8G8R8
);
2098 dst_mem
= dst_uncompressed
+ (dst_rect
->top
- dst_rect_aligned
.top
) * dst_pitch
2099 + (dst_rect
->left
- dst_rect_aligned
.left
) * sizeof(DWORD
);
2103 dst_mem
= lockrect
.pBits
;
2104 dst_pitch
= lockrect
.Pitch
;
2105 dst_format
= destformatdesc
;
2108 if ((filter
& 0xf) == D3DX_FILTER_NONE
)
2110 convert_argb_pixels(src_memory
, src_pitch
, 0, &src_size
, srcformatdesc
,
2111 dst_mem
, dst_pitch
, 0, &dst_size
, dst_format
, color_key
, src_palette
);
2113 else /* if ((filter & 0xf) == D3DX_FILTER_POINT) */
2115 if ((filter
& 0xf) != D3DX_FILTER_POINT
)
2116 FIXME("Unhandled filter %#x.\n", filter
);
2118 /* Always apply a point filter until D3DX_FILTER_LINEAR,
2119 * D3DX_FILTER_TRIANGLE and D3DX_FILTER_BOX are implemented. */
2120 point_filter_argb_pixels(src_memory
, src_pitch
, 0, &src_size
, srcformatdesc
,
2121 dst_mem
, dst_pitch
, 0, &dst_size
, dst_format
, color_key
, src_palette
);
2124 heap_free(src_uncompressed
);
2126 if (dst_uncompressed
)
2128 GLenum gl_format
= 0;
2130 TRACE("Compressing DXTn surface.\n");
2131 switch(surfdesc
.Format
)
2134 gl_format
= GL_COMPRESSED_RGBA_S3TC_DXT1_EXT
;
2138 gl_format
= GL_COMPRESSED_RGBA_S3TC_DXT3_EXT
;
2142 gl_format
= GL_COMPRESSED_RGBA_S3TC_DXT5_EXT
;
2145 ERR("Unexpected destination compressed format %u.\n", surfdesc
.Format
);
2147 tx_compress_dxtn(4, dst_size_aligned
.width
, dst_size_aligned
.height
,
2148 dst_uncompressed
, gl_format
, lockrect
.pBits
,
2149 lockrect
.Pitch
* destformatdesc
->block_width
/ destformatdesc
->block_byte_count
);
2150 heap_free(dst_uncompressed
);
2154 return unlock_surface(dst_surface
, &dst_rect_aligned
, surface
, TRUE
);
2157 /************************************************************
2158 * D3DXLoadSurfaceFromSurface
2160 * Copies the contents from one surface to another, performing any required
2161 * format conversion, resizing or filtering.
2164 * pDestSurface [I] pointer to the destination surface
2165 * pDestPalette [I] palette to use
2166 * pDestRect [I] to be filled area of the surface
2167 * pSrcSurface [I] pointer to the source surface
2168 * pSrcPalette [I] palette used for the source surface
2169 * pSrcRect [I] area of the source data to load
2170 * dwFilter [I] filter to apply on resizing
2171 * Colorkey [I] any ARGB value or 0 to disable color-keying
2175 * Failure: D3DERR_INVALIDCALL, if pDestSurface or pSrcSurface is NULL
2176 * D3DXERR_INVALIDDATA, if one of the surfaces is not lockable
2179 HRESULT WINAPI
D3DXLoadSurfaceFromSurface(IDirect3DSurface9
*dst_surface
,
2180 const PALETTEENTRY
*dst_palette
, const RECT
*dst_rect
, IDirect3DSurface9
*src_surface
,
2181 const PALETTEENTRY
*src_palette
, const RECT
*src_rect
, DWORD filter
, D3DCOLOR color_key
)
2183 const struct pixel_format_desc
*src_format_desc
, *dst_format_desc
;
2184 D3DSURFACE_DESC src_desc
, dst_desc
;
2185 struct volume src_size
, dst_size
;
2186 IDirect3DSurface9
*temp_surface
;
2187 D3DTEXTUREFILTERTYPE d3d_filter
;
2188 IDirect3DDevice9
*device
;
2189 D3DLOCKED_RECT lock
;
2194 TRACE("dst_surface %p, dst_palette %p, dst_rect %s, src_surface %p, "
2195 "src_palette %p, src_rect %s, filter %#x, color_key 0x%08x.\n",
2196 dst_surface
, dst_palette
, wine_dbgstr_rect(dst_rect
), src_surface
,
2197 src_palette
, wine_dbgstr_rect(src_rect
), filter
, color_key
);
2199 if (!dst_surface
|| !src_surface
)
2200 return D3DERR_INVALIDCALL
;
2202 IDirect3DSurface9_GetDesc(src_surface
, &src_desc
);
2203 src_format_desc
= get_format_info(src_desc
.Format
);
2206 SetRect(&s
, 0, 0, src_desc
.Width
, src_desc
.Height
);
2209 else if (src_rect
->left
== src_rect
->right
|| src_rect
->top
== src_rect
->bottom
)
2211 WARN("Empty src_rect specified.\n");
2212 return filter
== D3DX_FILTER_NONE
? D3D_OK
: E_FAIL
;
2214 else if (src_rect
->left
> src_rect
->right
|| src_rect
->right
> src_desc
.Width
2215 || src_rect
->left
< 0 || src_rect
->left
> src_desc
.Width
2216 || src_rect
->top
> src_rect
->bottom
|| src_rect
->bottom
> src_desc
.Height
2217 || src_rect
->top
< 0 || src_rect
->top
> src_desc
.Height
)
2219 WARN("Invalid src_rect specified.\n");
2220 return D3DERR_INVALIDCALL
;
2223 src_size
.width
= src_rect
->right
- src_rect
->left
;
2224 src_size
.height
= src_rect
->bottom
- src_rect
->top
;
2227 IDirect3DSurface9_GetDesc(dst_surface
, &dst_desc
);
2228 dst_format_desc
= get_format_info(dst_desc
.Format
);
2231 SetRect(&dst_rect_temp
, 0, 0, dst_desc
.Width
, dst_desc
.Height
);
2232 dst_rect
= &dst_rect_temp
;
2234 else if (dst_rect
->left
== dst_rect
->right
|| dst_rect
->top
== dst_rect
->bottom
)
2236 WARN("Empty dst_rect specified.\n");
2237 return filter
== D3DX_FILTER_NONE
? D3D_OK
: E_FAIL
;
2239 else if (dst_rect
->left
> dst_rect
->right
|| dst_rect
->right
> dst_desc
.Width
2240 || dst_rect
->left
< 0 || dst_rect
->left
> dst_desc
.Width
2241 || dst_rect
->top
> dst_rect
->bottom
|| dst_rect
->bottom
> dst_desc
.Height
2242 || dst_rect
->top
< 0 || dst_rect
->top
> dst_desc
.Height
)
2244 WARN("Invalid dst_rect specified.\n");
2245 return D3DERR_INVALIDCALL
;
2248 dst_size
.width
= dst_rect
->right
- dst_rect
->left
;
2249 dst_size
.height
= dst_rect
->bottom
- dst_rect
->top
;
2252 if (!dst_palette
&& !src_palette
&& !color_key
)
2254 if (src_desc
.Format
== dst_desc
.Format
2255 && dst_size
.width
== src_size
.width
2256 && dst_size
.height
== src_size
.height
2258 && !(src_rect
->left
& (src_format_desc
->block_width
- 1))
2259 && !(src_rect
->top
& (src_format_desc
->block_height
- 1))
2260 && !(dst_rect
->left
& (dst_format_desc
->block_width
- 1))
2261 && !(dst_rect
->top
& (dst_format_desc
->block_height
- 1)))
2263 d3d_filter
= D3DTEXF_NONE
;
2269 case D3DX_FILTER_NONE
:
2270 d3d_filter
= D3DTEXF_NONE
;
2273 case D3DX_FILTER_POINT
:
2274 d3d_filter
= D3DTEXF_POINT
;
2277 case D3DX_FILTER_LINEAR
:
2278 d3d_filter
= D3DTEXF_LINEAR
;
2282 d3d_filter
= D3DTEXF_FORCE_DWORD
;
2287 if (d3d_filter
!= D3DTEXF_FORCE_DWORD
)
2289 IDirect3DSurface9_GetDevice(src_surface
, &device
);
2290 hr
= IDirect3DDevice9_StretchRect(device
, src_surface
, src_rect
, dst_surface
, dst_rect
, d3d_filter
);
2291 IDirect3DDevice9_Release(device
);
2297 if (FAILED(lock_surface(src_surface
, NULL
, &lock
, &temp_surface
, FALSE
)))
2298 return D3DXERR_INVALIDDATA
;
2300 hr
= D3DXLoadSurfaceFromMemory(dst_surface
, dst_palette
, dst_rect
, lock
.pBits
,
2301 src_desc
.Format
, lock
.Pitch
, src_palette
, src_rect
, filter
, color_key
);
2303 if (FAILED(unlock_surface(src_surface
, NULL
, temp_surface
, FALSE
)))
2304 return D3DXERR_INVALIDDATA
;
2310 HRESULT WINAPI
D3DXSaveSurfaceToFileA(const char *dst_filename
, D3DXIMAGE_FILEFORMAT file_format
,
2311 IDirect3DSurface9
*src_surface
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
)
2316 ID3DXBuffer
*buffer
;
2318 TRACE("(%s, %#x, %p, %p, %s): relay\n",
2319 wine_dbgstr_a(dst_filename
), file_format
, src_surface
, src_palette
, wine_dbgstr_rect(src_rect
));
2321 if (!dst_filename
) return D3DERR_INVALIDCALL
;
2323 len
= MultiByteToWideChar(CP_ACP
, 0, dst_filename
, -1, NULL
, 0);
2324 filename
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
2325 if (!filename
) return E_OUTOFMEMORY
;
2326 MultiByteToWideChar(CP_ACP
, 0, dst_filename
, -1, filename
, len
);
2328 hr
= D3DXSaveSurfaceToFileInMemory(&buffer
, file_format
, src_surface
, src_palette
, src_rect
);
2331 hr
= write_buffer_to_file(filename
, buffer
);
2332 ID3DXBuffer_Release(buffer
);
2335 HeapFree(GetProcessHeap(), 0, filename
);
2339 HRESULT WINAPI
D3DXSaveSurfaceToFileW(const WCHAR
*dst_filename
, D3DXIMAGE_FILEFORMAT file_format
,
2340 IDirect3DSurface9
*src_surface
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
)
2343 ID3DXBuffer
*buffer
;
2345 TRACE("(%s, %#x, %p, %p, %s): relay\n",
2346 wine_dbgstr_w(dst_filename
), file_format
, src_surface
, src_palette
, wine_dbgstr_rect(src_rect
));
2348 if (!dst_filename
) return D3DERR_INVALIDCALL
;
2350 hr
= D3DXSaveSurfaceToFileInMemory(&buffer
, file_format
, src_surface
, src_palette
, src_rect
);
2353 hr
= write_buffer_to_file(dst_filename
, buffer
);
2354 ID3DXBuffer_Release(buffer
);
2360 HRESULT WINAPI
D3DXSaveSurfaceToFileInMemory(ID3DXBuffer
**dst_buffer
, D3DXIMAGE_FILEFORMAT file_format
,
2361 IDirect3DSurface9
*src_surface
, const PALETTEENTRY
*src_palette
, const RECT
*src_rect
)
2363 IWICBitmapEncoder
*encoder
= NULL
;
2364 IWICBitmapFrameEncode
*frame
= NULL
;
2365 IPropertyBag2
*encoder_options
= NULL
;
2366 IStream
*stream
= NULL
;
2368 const GUID
*container_format
;
2369 const GUID
*pixel_format_guid
;
2370 WICPixelFormatGUID wic_pixel_format
;
2371 IWICImagingFactory
*factory
;
2372 D3DFORMAT d3d_pixel_format
;
2373 D3DSURFACE_DESC src_surface_desc
;
2374 IDirect3DSurface9
*temp_surface
;
2375 D3DLOCKED_RECT locked_rect
;
2377 STATSTG stream_stats
;
2378 HGLOBAL stream_hglobal
;
2379 ID3DXBuffer
*buffer
;
2382 TRACE("dst_buffer %p, file_format %#x, src_surface %p, src_palette %p, src_rect %s.\n",
2383 dst_buffer
, file_format
, src_surface
, src_palette
, wine_dbgstr_rect(src_rect
));
2385 if (!dst_buffer
|| !src_surface
) return D3DERR_INVALIDCALL
;
2389 FIXME("Saving surfaces with palettized pixel formats is not implemented yet\n");
2390 return D3DERR_INVALIDCALL
;
2393 switch (file_format
)
2397 container_format
= &GUID_ContainerFormatBmp
;
2400 container_format
= &GUID_ContainerFormatPng
;
2403 container_format
= &GUID_ContainerFormatJpeg
;
2406 return save_dds_surface_to_memory(dst_buffer
, src_surface
, src_rect
);
2411 FIXME("File format %#x is not supported yet\n", file_format
);
2414 return D3DERR_INVALIDCALL
;
2417 IDirect3DSurface9_GetDesc(src_surface
, &src_surface_desc
);
2420 if (src_rect
->left
== src_rect
->right
|| src_rect
->top
== src_rect
->bottom
)
2422 WARN("Invalid rectangle with 0 area\n");
2423 return D3DXCreateBuffer(64, dst_buffer
);
2425 if (src_rect
->left
< 0 || src_rect
->top
< 0)
2426 return D3DERR_INVALIDCALL
;
2427 if (src_rect
->left
> src_rect
->right
|| src_rect
->top
> src_rect
->bottom
)
2428 return D3DERR_INVALIDCALL
;
2429 if (src_rect
->right
> src_surface_desc
.Width
|| src_rect
->bottom
> src_surface_desc
.Height
)
2430 return D3DERR_INVALIDCALL
;
2432 width
= src_rect
->right
- src_rect
->left
;
2433 height
= src_rect
->bottom
- src_rect
->top
;
2437 width
= src_surface_desc
.Width
;
2438 height
= src_surface_desc
.Height
;
2441 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
2442 if (FAILED(hr
)) goto cleanup_err
;
2444 hr
= IWICImagingFactory_CreateEncoder(factory
, container_format
, NULL
, &encoder
);
2445 IWICImagingFactory_Release(factory
);
2446 if (FAILED(hr
)) goto cleanup_err
;
2448 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &stream
);
2449 if (FAILED(hr
)) goto cleanup_err
;
2451 hr
= IWICBitmapEncoder_Initialize(encoder
, stream
, WICBitmapEncoderNoCache
);
2452 if (FAILED(hr
)) goto cleanup_err
;
2454 hr
= IWICBitmapEncoder_CreateNewFrame(encoder
, &frame
, &encoder_options
);
2455 if (FAILED(hr
)) goto cleanup_err
;
2457 hr
= IWICBitmapFrameEncode_Initialize(frame
, encoder_options
);
2458 if (FAILED(hr
)) goto cleanup_err
;
2460 hr
= IWICBitmapFrameEncode_SetSize(frame
, width
, height
);
2461 if (FAILED(hr
)) goto cleanup_err
;
2463 pixel_format_guid
= d3dformat_to_wic_guid(src_surface_desc
.Format
);
2464 if (!pixel_format_guid
)
2466 FIXME("Pixel format %#x is not supported yet\n", src_surface_desc
.Format
);
2471 memcpy(&wic_pixel_format
, pixel_format_guid
, sizeof(GUID
));
2472 hr
= IWICBitmapFrameEncode_SetPixelFormat(frame
, &wic_pixel_format
);
2473 d3d_pixel_format
= wic_guid_to_d3dformat(&wic_pixel_format
);
2474 if (SUCCEEDED(hr
) && d3d_pixel_format
!= D3DFMT_UNKNOWN
)
2476 TRACE("Using pixel format %s %#x\n", debugstr_guid(&wic_pixel_format
), d3d_pixel_format
);
2477 if (src_surface_desc
.Format
== d3d_pixel_format
) /* Simple copy */
2479 if (FAILED(hr
= lock_surface(src_surface
, src_rect
, &locked_rect
, &temp_surface
, FALSE
)))
2482 IWICBitmapFrameEncode_WritePixels(frame
, height
,
2483 locked_rect
.Pitch
, height
* locked_rect
.Pitch
, locked_rect
.pBits
);
2484 unlock_surface(src_surface
, src_rect
, temp_surface
, FALSE
);
2486 else /* Pixel format conversion */
2488 const struct pixel_format_desc
*src_format_desc
, *dst_format_desc
;
2493 src_format_desc
= get_format_info(src_surface_desc
.Format
);
2494 dst_format_desc
= get_format_info(d3d_pixel_format
);
2495 if (!is_conversion_from_supported(src_format_desc
)
2496 || !is_conversion_to_supported(dst_format_desc
))
2498 FIXME("Unsupported format conversion %#x -> %#x.\n",
2499 src_surface_desc
.Format
, d3d_pixel_format
);
2505 size
.height
= height
;
2507 dst_pitch
= width
* dst_format_desc
->bytes_per_pixel
;
2508 dst_data
= HeapAlloc(GetProcessHeap(), 0, dst_pitch
* height
);
2514 if (FAILED(hr
= lock_surface(src_surface
, src_rect
, &locked_rect
, &temp_surface
, FALSE
)))
2516 HeapFree(GetProcessHeap(), 0, dst_data
);
2519 convert_argb_pixels(locked_rect
.pBits
, locked_rect
.Pitch
, 0, &size
, src_format_desc
,
2520 dst_data
, dst_pitch
, 0, &size
, dst_format_desc
, 0, NULL
);
2521 unlock_surface(src_surface
, src_rect
, temp_surface
, FALSE
);
2523 IWICBitmapFrameEncode_WritePixels(frame
, height
, dst_pitch
, dst_pitch
* height
, dst_data
);
2524 HeapFree(GetProcessHeap(), 0, dst_data
);
2527 hr
= IWICBitmapFrameEncode_Commit(frame
);
2528 if (SUCCEEDED(hr
)) hr
= IWICBitmapEncoder_Commit(encoder
);
2530 else WARN("Unsupported pixel format %#x\n", src_surface_desc
.Format
);
2532 /* copy data from stream to ID3DXBuffer */
2533 hr
= IStream_Stat(stream
, &stream_stats
, STATFLAG_NONAME
);
2534 if (FAILED(hr
)) goto cleanup_err
;
2536 if (stream_stats
.cbSize
.u
.HighPart
!= 0)
2538 hr
= D3DXERR_INVALIDDATA
;
2541 size
= stream_stats
.cbSize
.u
.LowPart
;
2543 /* Remove BMP header for DIB */
2544 if (file_format
== D3DXIFF_DIB
)
2545 size
-= sizeof(BITMAPFILEHEADER
);
2547 hr
= D3DXCreateBuffer(size
, &buffer
);
2548 if (FAILED(hr
)) goto cleanup
;
2550 hr
= GetHGlobalFromStream(stream
, &stream_hglobal
);
2553 void *buffer_pointer
= ID3DXBuffer_GetBufferPointer(buffer
);
2554 void *stream_data
= GlobalLock(stream_hglobal
);
2555 /* Remove BMP header for DIB */
2556 if (file_format
== D3DXIFF_DIB
)
2557 stream_data
= (void*)((BYTE
*)stream_data
+ sizeof(BITMAPFILEHEADER
));
2558 memcpy(buffer_pointer
, stream_data
, size
);
2559 GlobalUnlock(stream_hglobal
);
2560 *dst_buffer
= buffer
;
2562 else ID3DXBuffer_Release(buffer
);
2565 if (FAILED(hr
) && hr
!= E_OUTOFMEMORY
)
2566 hr
= D3DERR_INVALIDCALL
;
2569 if (stream
) IStream_Release(stream
);
2571 if (frame
) IWICBitmapFrameEncode_Release(frame
);
2572 if (encoder_options
) IPropertyBag2_Release(encoder_options
);
2574 if (encoder
) IWICBitmapEncoder_Release(encoder
);