Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
45f240c0
Commit
45f240c0
authored
Jul 12, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add support for generating WICBitmapPaletteTypeFixedHalftone256 palette.
parent
011d23c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
palette.c
dlls/windowscodecs/palette.c
+26
-0
palette.c
dlls/windowscodecs/tests/palette.c
+20
-0
No files found.
dlls/windowscodecs/palette.c
View file @
45f240c0
...
...
@@ -188,6 +188,27 @@ static WICColor *generate_halftone64_palette(UINT *count)
return
entries
;
}
static
WICColor
*
generate_halftone256_palette
(
UINT
*
count
)
{
WICColor
*
entries
;
UINT
i
;
*
count
=
256
;
entries
=
HeapAlloc
(
GetProcessHeap
(),
0
,
256
*
sizeof
(
WICColor
));
if
(
!
entries
)
return
NULL
;
for
(
i
=
0
;
i
<
256
;
i
++
)
{
static
const
BYTE
halftone_values_b
[
4
]
=
{
0x00
,
0x55
,
0xaa
,
0xff
};
static
const
BYTE
halftone_values_gr
[
8
]
=
{
0x00
,
0x24
,
0x49
,
0x6d
,
0x92
,
0xb6
,
0xdb
,
0xff
};
entries
[
i
]
=
0xff000000
;
entries
[
i
]
|=
halftone_values_b
[
i
%
4
];
entries
[
i
]
|=
halftone_values_gr
[(
i
/
4
)
%
8
]
<<
8
;
entries
[
i
]
|=
halftone_values_gr
[(
i
/
32
)
%
8
]
<<
16
;
}
return
entries
;
}
static
HRESULT
WINAPI
PaletteImpl_InitializePredefined
(
IWICPalette
*
iface
,
WICBitmapPaletteType
type
,
BOOL
add_transparent
)
{
...
...
@@ -237,6 +258,11 @@ static HRESULT WINAPI PaletteImpl_InitializePredefined(IWICPalette *iface,
if
(
!
colors
)
return
E_OUTOFMEMORY
;
break
;
case
WICBitmapPaletteTypeFixedHalftone256
:
colors
=
generate_halftone256_palette
(
&
count
);
if
(
!
colors
)
return
E_OUTOFMEMORY
;
break
;
default:
FIXME
(
"(%p,%u,%d): stub
\n
"
,
iface
,
type
,
add_transparent
);
return
E_NOTIMPL
;
...
...
dlls/windowscodecs/tests/palette.c
View file @
45f240c0
...
...
@@ -223,6 +223,23 @@ static void generate_halftone64_palette(DWORD *entries, UINT count)
}
}
static
void
generate_halftone256_palette
(
DWORD
*
entries
,
UINT
count
)
{
static
const
BYTE
halftone_values_b
[
4
]
=
{
0x00
,
0x55
,
0xaa
,
0xff
};
static
const
BYTE
halftone_values_gr
[
8
]
=
{
0x00
,
0x24
,
0x49
,
0x6d
,
0x92
,
0xb6
,
0xdb
,
0xff
};
UINT
i
;
assert
(
count
==
256
);
for
(
i
=
0
;
i
<
256
;
i
++
)
{
entries
[
i
]
=
0xff000000
;
entries
[
i
]
|=
halftone_values_b
[
i
%
4
];
entries
[
i
]
|=
halftone_values_gr
[(
i
/
4
)
%
8
]
<<
8
;
entries
[
i
]
|=
halftone_values_gr
[(
i
/
32
)
%
8
]
<<
16
;
}
}
static
void
test_predefined_palette
(
void
)
{
static
struct
test_data
...
...
@@ -240,6 +257,7 @@ static void test_predefined_palette(void)
{
WICBitmapPaletteTypeFixedGray256
,
0
,
1
,
256
,
{
0
}
},
{
WICBitmapPaletteTypeFixedHalftone8
,
0
,
0
,
16
,
{
0
}
},
{
WICBitmapPaletteTypeFixedHalftone64
,
0
,
0
,
72
,
{
0
}
},
{
WICBitmapPaletteTypeFixedHalftone256
,
0
,
0
,
256
,
{
0
}
},
};
IWICImagingFactory
*
factory
;
IWICPalette
*
palette
;
...
...
@@ -298,6 +316,8 @@ static void test_predefined_palette(void)
generate_halftone8_palette
(
td
[
i
].
color
,
td
[
i
].
count
);
else
if
(
td
[
i
].
type
==
WICBitmapPaletteTypeFixedHalftone64
)
generate_halftone64_palette
(
td
[
i
].
color
,
td
[
i
].
count
);
else
if
(
td
[
i
].
type
==
WICBitmapPaletteTypeFixedHalftone256
)
generate_halftone256_palette
(
td
[
i
].
color
,
td
[
i
].
count
);
for
(
j
=
0
;
j
<
count
;
j
++
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment