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
ad234125
Commit
ad234125
authored
Jun 04, 2009
by
Andrew Eikum
Committed by
Alexandre Julliard
Jun 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub for GdipBitmapApplyEffect.
parent
d8a85425
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+11
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
ad234125
...
...
@@ -35,7 +35,7 @@
@ stdcall GdipBeginContainer2(ptr ptr)
@ stdcall GdipBeginContainer(ptr ptr ptr long ptr)
@ stdcall GdipBeginContainerI(ptr ptr ptr long ptr)
@ st
ub GdipBitmapApplyEffect
@ st
dcall GdipBitmapApplyEffect(ptr ptr ptr long ptr ptr)
@ stub GdipBitmapConvertFormat
@ stub GdipBitmapCreateApplyEffect
@ stub GdipBitmapGetHistogram
...
...
dlls/gdiplus/image.c
View file @
ad234125
...
...
@@ -70,6 +70,17 @@ static INT ipicture_pixel_width(IPicture *pic)
return
x
;
}
GpStatus
WINGDIPAPI
GdipBitmapApplyEffect
(
GpBitmap
*
bitmap
,
CGpEffect
*
effect
,
RECT
*
roi
,
BOOL
useAuxData
,
VOID
**
auxData
,
INT
*
auxDataSize
)
{
FIXME
(
"(%p %p %p %d %p %p): stub
\n
"
,
bitmap
,
effect
,
roi
,
useAuxData
,
auxData
,
auxDataSize
);
/*
* Note: According to Jose Roca's GDI+ docs, this function is not
* implemented in Windows's GDI+.
*/
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipBitmapGetPixel
(
GpBitmap
*
bitmap
,
INT
x
,
INT
y
,
ARGB
*
color
)
{
...
...
include/gdiplusflat.h
View file @
ad234125
...
...
@@ -39,6 +39,7 @@ GpStatus WINGDIPAPI GdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap*,R
GpStatus
WINGDIPAPI
GdipSetAdjustableArrowCapWidth
(
GpAdjustableArrowCap
*
,
REAL
);
/* Bitmap */
GpStatus
WINGDIPAPI
GdipBitmapApplyEffect
(
GpBitmap
*
,
CGpEffect
*
,
RECT
*
,
BOOL
,
VOID
**
,
INT
*
);
GpStatus
WINGDIPAPI
GdipBitmapGetPixel
(
GpBitmap
*
,
INT
,
INT
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipBitmapLockBits
(
GpBitmap
*
,
GDIPCONST
GpRect
*
,
UINT
,
PixelFormat
,
BitmapData
*
);
...
...
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