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
d95a04b4
Commit
d95a04b4
authored
Dec 01, 2023
by
Vijay Kiran Kamuju
Committed by
Alexandre Julliard
Dec 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add GdipDrawImageFX stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55945
parent
c55cce6f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+9
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
d95a04b4
...
@@ -623,7 +623,7 @@
...
@@ -623,7 +623,7 @@
623 stdcall GdipBitmapConvertFormat(ptr long long long ptr float)
623 stdcall GdipBitmapConvertFormat(ptr long long long ptr float)
624 stdcall GdipImageSetAbort(ptr ptr)
624 stdcall GdipImageSetAbort(ptr ptr)
625 stdcall GdipGraphicsSetAbort(ptr ptr)
625 stdcall GdipGraphicsSetAbort(ptr ptr)
626 st
ub GdipDrawImageFX
626 st
dcall GdipDrawImageFX(ptr ptr ptr ptr ptr ptr long)
627 stdcall GdipConvertToEmfPlus(ptr ptr ptr long wstr ptr)
627 stdcall GdipConvertToEmfPlus(ptr ptr ptr long wstr ptr)
628 stdcall GdipConvertToEmfPlusToFile(ptr ptr ptr wstr long wstr ptr)
628 stdcall GdipConvertToEmfPlusToFile(ptr ptr ptr wstr long wstr ptr)
629 stub GdipConvertToEmfPlusToStream
629 stub GdipConvertToEmfPlusToStream
...
...
dlls/gdiplus/graphics.c
View file @
d95a04b4
...
@@ -2947,6 +2947,15 @@ GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x,
...
@@ -2947,6 +2947,15 @@ GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x,
0
.
0
,
0
.
0
,
(
REAL
)
width
,
(
REAL
)
height
,
UnitPixel
);
0
.
0
,
0
.
0
,
(
REAL
)
width
,
(
REAL
)
height
,
UnitPixel
);
}
}
GpStatus
WINGDIPAPI
GdipDrawImageFX
(
GpGraphics
*
graphics
,
GpImage
*
image
,
GpRectF
*
src
,
GpMatrix
*
transform
,
CGpEffect
*
effect
,
GpImageAttributes
*
imageattr
,
GpUnit
srcUnit
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p, %d): stub
\n
"
,
graphics
,
image
,
src
,
transform
,
effect
,
imageattr
,
srcUnit
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipDrawImageI
(
GpGraphics
*
graphics
,
GpImage
*
image
,
INT
x
,
GpStatus
WINGDIPAPI
GdipDrawImageI
(
GpGraphics
*
graphics
,
GpImage
*
image
,
INT
x
,
INT
y
)
INT
y
)
{
{
...
...
include/gdiplusflat.h
View file @
d95a04b4
...
@@ -174,6 +174,7 @@ GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics*,GDIPCONST UINT16*,INT,
...
@@ -174,6 +174,7 @@ GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics*,GDIPCONST UINT16*,INT,
GpStatus
WINGDIPAPI
GdipDrawEllipse
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawEllipse
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawEllipseI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawEllipseI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawImage
(
GpGraphics
*
,
GpImage
*
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawImage
(
GpGraphics
*
,
GpImage
*
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawImageFX
(
GpGraphics
*
,
GpImage
*
,
GpRectF
*
,
GpMatrix
*
,
CGpEffect
*
,
GpImageAttributes
*
,
GpUnit
);
GpStatus
WINGDIPAPI
GdipDrawImageI
(
GpGraphics
*
,
GpImage
*
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawImageI
(
GpGraphics
*
,
GpImage
*
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawImagePointRect
(
GpGraphics
*
,
GpImage
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
GpUnit
);
GpStatus
WINGDIPAPI
GdipDrawImagePointRect
(
GpGraphics
*
,
GpImage
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
GpUnit
);
GpStatus
WINGDIPAPI
GdipDrawImagePointRectI
(
GpGraphics
*
,
GpImage
*
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
GpUnit
);
GpStatus
WINGDIPAPI
GdipDrawImagePointRectI
(
GpGraphics
*
,
GpImage
*
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
GpUnit
);
...
...
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