Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
cbf51069
Commit
cbf51069
authored
Jul 21, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement GetPalette() for clipper.
parent
194c43ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
clipper.c
dlls/windowscodecs/clipper.c
+11
-2
No files found.
dlls/windowscodecs/clipper.c
View file @
cbf51069
...
...
@@ -149,8 +149,17 @@ static HRESULT WINAPI BitmapClipper_GetResolution(IWICBitmapClipper *iface,
static
HRESULT
WINAPI
BitmapClipper_CopyPalette
(
IWICBitmapClipper
*
iface
,
IWICPalette
*
palette
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
palette
);
return
E_NOTIMPL
;
BitmapClipper
*
This
=
impl_from_IWICBitmapClipper
(
iface
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
palette
);
if
(
!
palette
)
return
E_INVALIDARG
;
if
(
!
This
->
source
)
return
WINCODEC_ERR_WRONGSTATE
;
return
IWICBitmapSource_CopyPalette
(
This
->
source
,
palette
);
}
static
HRESULT
WINAPI
BitmapClipper_CopyPixels
(
IWICBitmapClipper
*
iface
,
...
...
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