43#define DDS_MAGIC 0x20534444
45#define MAKEFOURCC(ch0, ch1, ch2, ch3) \
46 ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
47 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
50#define GET_RGB565_R(color) ((BYTE)(((color) >> 11) & 0x1F))
51#define GET_RGB565_G(color) ((BYTE)(((color) >> 5) & 0x3F))
52#define GET_RGB565_B(color) ((BYTE)(((color) >> 0) & 0x1F))
53#define MAKE_RGB565(r, g, b) ((WORD)(((BYTE)(r) << 11) | ((BYTE)(g) << 5) | (BYTE)(b)))
54#define MAKE_ARGB(a, r, g, b) (((DWORD)(a) << 24) | ((DWORD)(r) << 16) | ((DWORD)(g) << 8) | (DWORD)(b))
56#define DDPF_ALPHAPIXELS 0x00000001
57#define DDPF_ALPHA 0x00000002
58#define DDPF_FOURCC 0x00000004
59#define DDPF_PALETTEINDEXED8 0x00000020
60#define DDPF_RGB 0x00000040
61#define DDPF_LUMINANCE 0x00020000
62#define DDPF_BUMPDUDV 0x00080000
64#define DDSCAPS2_CUBEMAP 0x00000200
65#define DDSCAPS2_VOLUME 0x00200000
67#define DDS_DIMENSION_TEXTURE1D 2
68#define DDS_DIMENSION_TEXTURE2D 3
69#define DDS_DIMENSION_TEXTURE3D 4
71#define DDS_RESOURCE_MISC_TEXTURECUBE 0x00000004
73#define DDS_BLOCK_WIDTH 4
74#define DDS_BLOCK_HEIGHT 4
193 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'D',
'X',
'T',
'1'), 0, 0, 0, 0, 0 },
195 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'D',
'X',
'T',
'2'), 0, 0, 0, 0, 0 },
197 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'D',
'X',
'T',
'3'), 0, 0, 0, 0, 0 },
199 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'D',
'X',
'T',
'4'), 0, 0, 0, 0, 0 },
201 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'D',
'X',
'T',
'5'), 0, 0, 0, 0, 0 },
203 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'B',
'C',
'4',
'U'), 0, 0, 0, 0, 0 },
205 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'B',
'C',
'4',
'S'), 0, 0, 0, 0, 0 },
207 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'B',
'C',
'5',
'U'), 0, 0, 0, 0, 0 },
209 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'B',
'C',
'5',
'S'), 0, 0, 0, 0, 0 },
211 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'A',
'T',
'I',
'1'), 0, 0, 0, 0, 0 },
213 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'A',
'T',
'I',
'2'), 0, 0, 0, 0, 0 },
215 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'R',
'G',
'B',
'G'), 0, 0, 0, 0, 0 },
217 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'G',
'R',
'G',
'B'), 0, 0, 0, 0, 0 },
219 { {
sizeof(
DDS_PIXELFORMAT),
DDPF_FOURCC,
MAKEFOURCC(
'D',
'X',
'1',
'0'), 0, 0, 0, 0, 0 },
486 WARN(
"DXGI format 0x%x is not supported in DDS decoder\n",
format);
497 frame_count = mip_levels;
502 for (
i = 0;
i < mip_levels;
i++)
504 frame_count +=
depth;
520 frame_per_texture =
info->mip_levels;
522 frame_per_texture =
info->frame_count /
info->array_size;
524 *array_index =
index / frame_per_texture;
525 *slice_index =
index % frame_per_texture;
528 while (*slice_index >=
depth)
530 *slice_index -=
depth;
545 return &GUID_WICPixelFormatUndefined;
566 info->mip_levels = 1;
567 info->array_size = 1;
576 info->data_offset =
sizeof(
DWORD) +
sizeof(*
header) +
sizeof(*header_dxt10);
579 &GUID_WICPixelFormat32bppPBGRA : &GUID_WICPixelFormat32bppBGRA;
580 info->pixel_format_bpp = 32;
596 info->bytes_per_block =
header->ddspf.rgbBitCount / 8;
607 const BYTE *
block, *color_indices, *alpha_indices, *alpha_table;
608 int i,
j,
x,
y, block_x, block_y, color_index, alpha_index;
609 int block_size, color_offset, color_indices_offset;
616 color_indices_offset = 4;
620 color_indices_offset = 12;
625 for (
i = 0;
i < block_count;
i++)
655 for (
j = 2;
j < 8;
j++)
660 for (
j = 2;
j < 6;
j++)
667 alpha_indices =
block + 2;
673 color_indices =
block + color_indices_offset;
674 for (
j = 0;
j < 16;
j++)
680 color_index = (color_indices[
j / 4] >> ((
j % 4) * 2)) & 0x3;
681 color_value =
color[color_index];
694 alpha_value = (alpha_table[
j / 2] >> (
j % 2) * 4) & 0xF;
695 alpha_value = (
BYTE)((alpha_value * 0xFF + 0x7)/ 0xF);
698 alpha_index = (*((
DWORD *)(alpha_indices + (
j / 8) * 3)) >> ((
j % 8) * 3)) & 0x7;
699 alpha_value =
alpha[alpha_index];
708 if (block_x >=
width) {
765 IsEqualIID(&IID_IWICBitmapFrameDecode, iid)) {
766 *
ppv = &
This->IWICBitmapFrameDecode_iface;
767 }
else if (
IsEqualGUID(&IID_IWICDdsFrameDecode, iid)) {
768 *
ppv = &
This->IWICDdsFrameDecode_iface;
783 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
793 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
811 *puiWidth =
This->info.width;
812 *puiHeight =
This->info.height;
814 TRACE(
"(%p) -> (%d,%d)\n", iface, *puiWidth, *puiHeight);
826 *pPixelFormat = *
This->info.pixel_format;
834 double *pDpiX,
double *pDpiY)
836 FIXME(
"(%p,%p,%p): stub.\n", iface, pDpiX, pDpiY);
844 FIXME(
"(%p,%p): stub.\n", iface, pIPalette);
853 UINT bpp, frame_stride, frame_size;
861 bpp =
This->info.pixel_format_bpp;
864 frame_stride =
This->info.width *
bpp / 8;
865 frame_size = frame_stride *
This->info.height;
885 if (!
This->pixel_data) {
888 if (!
This->pixel_data) {
895 This->pixel_data =
This->block_data;
900 prc, cbStride, cbBufferSize, pbBuffer);
911 FIXME(
"(%p,%p): stub.\n", iface, ppIMetadataQueryReader);
919 FIXME(
"(%p,%u,%p,%p): stub.\n", iface, cCount, ppIColorContexts, pcActualCount);
927 FIXME(
"(%p,%p): stub.\n", iface, ppIThumbnail);
966 UINT *widthInBlocks,
UINT *heightInBlocks)
970 if (!widthInBlocks || !heightInBlocks)
return E_INVALIDARG;
972 *widthInBlocks =
This->info.width_in_blocks;
973 *heightInBlocks =
This->info.height_in_blocks;
975 TRACE(
"(%p,%p,%p) -> (%d,%d)\n", iface, widthInBlocks, heightInBlocks, *widthInBlocks, *heightInBlocks);
992 TRACE(
"(%p,%p) -> (0x%x,%d,%d,%d)\n", iface, formatInfo,
1004 UINT bytes_per_block, frame_stride, frame_size;
1010 bytes_per_block =
This->info.bytes_per_block;
1011 frame_stride =
This->info.width_in_blocks * bytes_per_block;
1012 frame_size = frame_stride *
This->info.height_in_blocks;
1014 if (!boundsInBlocks) {
1018 x = boundsInBlocks->
X;
1019 y = boundsInBlocks->
Y;
1059 result->lock.DebugInfo->Spare[0] = (
DWORD_PTR)(__FILE__
": DdsFrameDecode.lock");
1075 *
ppv = &
This->IWICBitmapDecoder_iface;
1076 }
else if (
IsEqualIID(&IID_IWICDdsDecoder, iid)) {
1077 *
ppv = &
This->IWICDdsDecoder_iface;
1078 }
else if (
IsEqualIID(&IID_IWICWineDecoder, iid)) {
1079 *
ppv = &
This->IWICWineDecoder_iface;
1094 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
1104 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
1108 This->lock.DebugInfo->Spare[0] = 0;
1110 if (
This->stream) IStream_Release(
This->stream);
1120 FIXME(
"(%p,%p,%p): stub.\n", iface,
stream, capability);
1131 TRACE(
"(%p,%p,%x)\n", iface, pIStream, cacheOptions);
1135 hr = IWICWineDecoder_Initialize(&
This->IWICWineDecoder_iface, pIStream, cacheOptions);
1142 IStream_Release(pIStream);
1155 GUID *pguidContainerFormat)
1157 TRACE(
"(%p,%p)\n", iface, pguidContainerFormat);
1159 memcpy(pguidContainerFormat, &GUID_ContainerFormatDds,
sizeof(
GUID));
1167 TRACE(
"(%p,%p)\n", iface, ppIDecoderInfo);
1175 TRACE(
"(%p,%p)\n", iface, pIPalette);
1185 FIXME(
"(%p,%p)\n", iface, ppIMetadataQueryReader);
1193 TRACE(
"(%p,%p)\n", iface, ppIBitmapSource);
1201 TRACE(
"(%p,%u,%p,%p)\n", iface, cCount, ppDdslorContexts, pcActualCount);
1209 TRACE(
"(%p,%p)\n", iface, ppIThumbnail);
1224 *pCount =
This->info.frame_count;
1228 TRACE(
"(%p) -> %d\n", iface, *pCount);
1237 UINT array_index, mip_level, slice_index;
1239 TRACE(
"(%p,%u,%p)\n", iface,
index, ppIBitmapFrame);
1245 if (!
This->initialized) {
1303 if (!
This->initialized) {
1317 TRACE(
"(%p) -> (%dx%d depth=%d mipLevels=%d arraySize=%d dxgiFormat=0x%x dimension=0x%x alphaMode=0x%x)\n",
1337 UINT frame_width = 0, frame_height = 0, frame_width_in_blocks = 0, frame_height_in_blocks = 0, frame_size = 0;
1338 UINT bytes_per_block,
i;
1342 TRACE(
"(%p,%u,%u,%u,%p)\n", iface, arrayIndex, mipLevel, sliceIndex, bitmapFrame);
1348 if (!
This->initialized) {
1354 (arrayIndex >=
This->info.array_size * 6) ||
1355 (mipLevel >=
This->info.mip_levels) ||
1356 (sliceIndex >=
This->info.depth)) {
1368 bytes_per_block =
This->info.bytes_per_block;
1369 seek.QuadPart =
This->info.data_offset;
1374 for (
i = 0;
i <
This->info.mip_levels;
i++)
1376 width_in_blocks = (
width + block_width - 1) / block_width;
1377 height_in_blocks = (
height + block_height - 1) / block_height;
1378 size = width_in_blocks * height_in_blocks * bytes_per_block;
1382 }
else if (
i == mipLevel){
1383 seek.QuadPart +=
size * sliceIndex;
1384 frame_width =
width;
1386 frame_width_in_blocks = width_in_blocks;
1387 frame_height_in_blocks = height_in_blocks;
1388 frame_size = frame_width_in_blocks * frame_height_in_blocks * bytes_per_block;
1389 if (arrayIndex == 0)
break;
1414 hr = IStream_Read(
This->stream, frame_decode->
block_data, frame_size, &bytesread);
1415 if (
hr !=
S_OK || bytesread != frame_size) {
1471 if (
This->initialized) {
1480 hr = IStream_Read(
stream, &magic,
sizeof(magic), &bytesread);
1482 if (bytesread !=
sizeof(magic)) {
1493 if (bytesread !=
sizeof(
header)) {
1503 hr = IStream_Read(
stream, &header_dxt10,
sizeof(header_dxt10), &bytesread);
1505 if (bytesread !=
sizeof(header_dxt10)) {
1540 *
ppv = &
This->IWICBitmapFrameEncode_iface;
1557 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
1567 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
1571 IWICBitmapEncoder_Release(&
This->parent->IWICBitmapEncoder_iface);
1584 TRACE(
"(%p,%p)\n", iface, encoderOptions);
1585 if (encoderOptions)
FIXME(
"encoder options are not supported for DDS.\n");
1589 if (
This->initialized)
1614 if (!
This->initialized ||
This->frame_created)
1631 double dpiX,
double dpiY)
1636 TRACE(
"(%p,%0.2f,%0.2f)\n", iface, dpiX, dpiY);
1640 if (!
This->initialized ||
This->frame_created)
1666 if (!
This->initialized)
1670 else if (
This->frame_created)
1676 *pixelFormat = GUID_WICPixelFormat32bppBGRA;
1688 FIXME(
"(%p,%u,%p): stub\n", iface,
count, colorContext);
1702 TRACE(
"(%p,%p)\n", iface, thumbnail);
1722 FIXME(
"(%p): stub\n", iface);
1729 FIXME(
"(%p,%p): stub\n", iface, metadataQueryWriter);
1773 This->lock.DebugInfo->Spare[0] = (
DWORD_PTR)(__FILE__
": DdsDecoder.lock");
1775 ret = IWICBitmapDecoder_QueryInterface(&
This->IWICBitmapDecoder_iface, iid,
ppv);
1776 IWICBitmapDecoder_Release(&
This->IWICBitmapDecoder_iface);
1785 return IWICBitmapEncoder_QueryInterface(&
This->IWICBitmapEncoder_iface, iid,
ppv);
1791 return IWICBitmapEncoder_AddRef(&
This->IWICBitmapEncoder_iface);
1797 return IWICBitmapEncoder_Release(&
This->IWICBitmapEncoder_iface);
1806 TRACE(
"(%p,%p)\n", iface, parameters);
1829 This->info.array_size,
This->info.dimension);
1844 TRACE(
"(%p,%p)\n", iface, parameters);
1865 TRACE(
"(%p,%p) -> (%dx%d depth=%u mipLevels=%u arraySize=%u dxgiFormat=%#x dimension=%#x alphaMode=%#x)\n",
1881 UINT array_index, mip_level, slice_index;
1885 TRACE(
"(%p,%p,%p,%p,%p)\n", iface, frameEncode, arrayIndex, mipLevel, sliceIndex);
1889 if (!
This->stream ||
This->committed ||
This->uncommitted_frame)
1903 if (arrayIndex) *arrayIndex = array_index;
1904 if (mipLevel) *mipLevel = mip_level;
1905 if (sliceIndex) *sliceIndex = slice_index;
1907 This->frame_index++;
1914 IWICDdsEncoder_AddRef(iface);
1916 *frameEncode = &
result->IWICBitmapFrameEncode_iface;
1944 *
ppv = &
This->IWICBitmapEncoder_iface;
1945 }
else if (
IsEqualIID(&IID_IWICDdsEncoder, iid)) {
1946 *
ppv = &
This->IWICDdsEncoder_iface;
1961 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
1971 TRACE(
"(%p) refcount=%lu\n", iface,
ref);
1974 This->lock.DebugInfo->Spare[0] = 0;
1976 if (
This->stream) IStream_Release(
This->stream);
1989 TRACE(
"(%p,%p,%u)\n", iface,
stream, cacheOption);
1992 FIXME(
"Cache option %#x is not supported.\n", cacheOption);
2007 This->info.width = 1;
2008 This->info.height = 1;
2009 This->info.depth = 1;
2010 This->info.mip_levels = 1;
2011 This->info.array_size = 1;
2012 This->info.frame_count = 1;
2013 This->info.data_offset = 0;
2018 This->info.pixel_format = &GUID_WICPixelFormatUndefined;
2019 This->info.pixel_format_bpp = 0;
2051 hr = IWICComponentInfo_QueryInterface(comp_info, &IID_IWICBitmapEncoderInfo, (
void **)
info);
2052 IWICComponentInfo_Release(comp_info);
2060 FIXME(
"(%p,%u,%p): stub\n", iface, cCount, ppIColorContext);
2082 TRACE(
"(%p,%p)\n", iface, pIThumbnail);
2088 TRACE(
"(%p,%p)\n", iface, pIPreview);
2097 TRACE(
"(%p,%p,%p)\n", iface, frameEncode, encoderOptions);
2099 return IWICDdsEncoder_CreateNewFrame(&
This->IWICDdsEncoder_iface, frameEncode,
NULL,
NULL,
NULL);
2104 FIXME(
"(%p): stub\n", iface);
2111 FIXME(
"(%p,%p): stub\n", iface, ppIMetadataQueryWriter);
2147 This->frame_count = 0;
2148 This->frame_index = 0;
2156 This->lock.DebugInfo->Spare[0] = (
DWORD_PTR)(__FILE__
": DdsEncoder.lock");
2158 ret = IWICBitmapEncoder_QueryInterface(&
This->IWICBitmapEncoder_iface, iid,
ppv);
2159 IWICBitmapEncoder_Release(&
This->IWICBitmapEncoder_iface);
#define InterlockedIncrement
#define InterlockedDecrement
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
void copy_pixels(const BYTE *src, UINT src_row_pitch, UINT src_slice_pitch, BYTE *dst, UINT dst_row_pitch, UINT dst_slice_pitch, const struct volume *size, const struct pixel_format_desc *format) DECLSPEC_HIDDEN
static GpStatus get_decoder_info(IStream *stream, const struct image_codec **result)
BOOL WINAPI InitializeCriticalSectionEx(OUT LPCRITICAL_SECTION lpCriticalSection, IN DWORD dwSpinCount, IN DWORD flags)
HRESULT CreateComponentInfo(REFCLSID clsid, IWICComponentInfo **ppIInfo)
GLint GLint GLsizei GLsizei GLsizei depth
GLint GLint GLint GLint GLint x
GLuint GLuint GLsizei count
GLint GLint GLsizei GLsizei GLsizei GLint GLenum GLenum const GLvoid * pixels
GLclampf GLclampf GLclampf alpha
GLint GLint GLint GLint GLint GLint y
GLint GLint GLsizei GLsizei height
GLint GLint GLsizei width
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint GLint GLint j
static DWORD block_size(DWORD block)
#define memcpy(s1, s2, n)
#define IsEqualGUID(rguid1, rguid2)
#define IsEqualIID(riid1, riid2)
int seek(void *fd, ulong off, int mode)
IWICDdsDecoder IWICDdsDecoder_iface
IWICBitmapDecoder IWICBitmapDecoder_iface
IWICWineDecoder IWICWineDecoder_iface
IWICDdsEncoder IWICDdsEncoder_iface
IWICBitmapEncoder IWICBitmapEncoder_iface
IWICBitmapFrameDecode IWICBitmapFrameDecode_iface
IWICDdsFrameDecode IWICDdsFrameDecode_iface
IWICBitmapFrameEncode IWICBitmapFrameEncode_iface
WICDdsAlphaMode AlphaMode
WICDdsDimension Dimension
const GUID * pixel_format
const GUID * pixel_format
WICDdsDimension dimension
WICDdsAlphaMode alpha_mode
VOID WINAPI InitializeCriticalSection(OUT LPCRITICAL_SECTION lpCriticalSection)
#define CONTAINING_RECORD(address, type, field)
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION)
void WINAPI EnterCriticalSection(LPCRITICAL_SECTION)
void WINAPI DeleteCriticalSection(PCRITICAL_SECTION)
WICBitmapEncoderCacheOption
@ WICBitmapEncoderNoCache
@ WICDdsAlphaModePremultiplied
static const char * debug_wic_rect(const WICRect *rect)
#define WINCODEC_ERR_WRONGSTATE
#define WINCODEC_ERR_UNSUPPORTEDOPERATION
#define WINCODEC_ERR_NOTINITIALIZED
#define WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT
#define WINCODEC_ERR_BADHEADER
#define WINCODEC_ERR_PALETTEUNAVAILABLE
#define WINCODEC_ERR_CODECNOTHUMBNAIL
#define WINCODEC_ERR_UNKNOWNIMAGEFORMAT
#define WINCODEC_ERR_INSUFFICIENTBUFFER
#define WINCODEC_ERR_STREAMREAD
#define RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
static unsigned int block