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
f01bfea6
Commit
f01bfea6
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 GdipBitmapCreateApplyEffect.
parent
ad234125
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+12
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
f01bfea6
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
@ stdcall GdipBeginContainerI(ptr ptr ptr long ptr)
@ stdcall GdipBeginContainerI(ptr ptr ptr long ptr)
@ stdcall GdipBitmapApplyEffect(ptr ptr ptr long ptr ptr)
@ stdcall GdipBitmapApplyEffect(ptr ptr ptr long ptr ptr)
@ stub GdipBitmapConvertFormat
@ stub GdipBitmapConvertFormat
@ st
ub GdipBitmapCreateApplyEffect
@ st
dcall GdipBitmapCreateApplyEffect(ptr long ptr ptr ptr ptr long ptr ptr)
@ stub GdipBitmapGetHistogram
@ stub GdipBitmapGetHistogram
@ stub GdipBitmapGetHistogramSize
@ stub GdipBitmapGetHistogramSize
@ stdcall GdipBitmapGetPixel(ptr long long ptr)
@ stdcall GdipBitmapGetPixel(ptr long long ptr)
...
...
dlls/gdiplus/image.c
View file @
f01bfea6
...
@@ -81,6 +81,18 @@ GpStatus WINGDIPAPI GdipBitmapApplyEffect(GpBitmap* bitmap, CGpEffect* effect,
...
@@ -81,6 +81,18 @@ GpStatus WINGDIPAPI GdipBitmapApplyEffect(GpBitmap* bitmap, CGpEffect* effect,
return
NotImplemented
;
return
NotImplemented
;
}
}
GpStatus
WINGDIPAPI
GdipBitmapCreateApplyEffect
(
GpBitmap
**
inputBitmaps
,
INT
numInputs
,
CGpEffect
*
effect
,
RECT
*
roi
,
RECT
*
outputRect
,
GpBitmap
**
outputBitmap
,
BOOL
useAuxData
,
VOID
**
auxData
,
INT
*
auxDataSize
)
{
FIXME
(
"(%p %d %p %p %p %p %d %p %p): stub
\n
"
,
inputBitmaps
,
numInputs
,
effect
,
roi
,
outputRect
,
outputBitmap
,
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
,
GpStatus
WINGDIPAPI
GdipBitmapGetPixel
(
GpBitmap
*
bitmap
,
INT
x
,
INT
y
,
ARGB
*
color
)
ARGB
*
color
)
{
{
...
...
include/gdiplusflat.h
View file @
f01bfea6
...
@@ -40,6 +40,7 @@ GpStatus WINGDIPAPI GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap*,REAL);
...
@@ -40,6 +40,7 @@ GpStatus WINGDIPAPI GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap*,REAL);
/* Bitmap */
/* Bitmap */
GpStatus
WINGDIPAPI
GdipBitmapApplyEffect
(
GpBitmap
*
,
CGpEffect
*
,
RECT
*
,
BOOL
,
VOID
**
,
INT
*
);
GpStatus
WINGDIPAPI
GdipBitmapApplyEffect
(
GpBitmap
*
,
CGpEffect
*
,
RECT
*
,
BOOL
,
VOID
**
,
INT
*
);
GpStatus
WINGDIPAPI
GdipBitmapCreateApplyEffect
(
GpBitmap
**
,
INT
,
CGpEffect
*
,
RECT
*
,
RECT
*
,
GpBitmap
**
,
BOOL
,
VOID
**
,
INT
*
);
GpStatus
WINGDIPAPI
GdipBitmapGetPixel
(
GpBitmap
*
,
INT
,
INT
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipBitmapGetPixel
(
GpBitmap
*
,
INT
,
INT
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipBitmapLockBits
(
GpBitmap
*
,
GDIPCONST
GpRect
*
,
UINT
,
GpStatus
WINGDIPAPI
GdipBitmapLockBits
(
GpBitmap
*
,
GDIPCONST
GpRect
*
,
UINT
,
PixelFormat
,
BitmapData
*
);
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