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
3ab76662
Commit
3ab76662
authored
Jul 10, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Jul 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add stubs for GdipTransformPoints[I].
parent
6f2e3e1b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
2 deletions
+31
-2
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+2
-2
graphics.c
dlls/gdiplus/graphics.c
+16
-0
gdiplusenums.h
include/gdiplusenums.h
+8
-0
gdiplusflat.h
include/gdiplusflat.h
+4
-0
gdiplusgpstubs.h
include/gdiplusgpstubs.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
3ab76662
...
...
@@ -606,8 +606,8 @@
@ stdcall GdipTransformMatrixPoints(ptr ptr long)
@ stdcall GdipTransformMatrixPointsI(ptr ptr long)
@ stdcall GdipTransformPath(ptr ptr)
@ st
ub GdipTransformPoints
@ st
ub GdipTransformPointsI
@ st
dcall GdipTransformPoints(ptr long long ptr long)
@ st
dcall GdipTransformPointsI(ptr long long ptr long)
@ stdcall GdipTransformRegion(ptr ptr)
@ stub GdipTranslateClip
@ stub GdipTranslateClipI
...
...
dlls/gdiplus/graphics.c
View file @
3ab76662
...
...
@@ -2621,3 +2621,19 @@ GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipTransformPoints
(
GpGraphics
*
graphics
,
GpCoordinateSpace
dst_space
,
GpCoordinateSpace
src_space
,
GpPointF
*
points
,
INT
count
)
{
FIXME
(
"(%p, %d, %d, %p, %d): stub
\n
"
,
graphics
,
dst_space
,
src_space
,
points
,
count
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipTransformPointsI
(
GpGraphics
*
graphics
,
GpCoordinateSpace
dst_space
,
GpCoordinateSpace
src_space
,
GpPoint
*
points
,
INT
count
)
{
FIXME
(
"(%p, %d, %d, %p, %d): stub
\n
"
,
graphics
,
dst_space
,
src_space
,
points
,
count
);
return
NotImplemented
;
}
include/gdiplusenums.h
View file @
3ab76662
...
...
@@ -314,6 +314,13 @@ enum FlushIntention
FlushIntentionSync
=
1
};
enum
CoordinateSpace
{
CoordinateSpaceWorld
,
CoordinateSpacePage
,
CoordinateSpaceDevice
};
#ifndef __cplusplus
typedef
enum
Unit
Unit
;
...
...
@@ -347,6 +354,7 @@ typedef enum PenAlignment GpPenAlignment;
typedef
enum
ImageCodecFlags
ImageCodecFlags
;
typedef
enum
CombineMode
CombineMode
;
typedef
enum
FlushIntention
FlushIntention
;
typedef
enum
CoordinateSpace
CoordinateSpace
;
#endif
/* end of c typedefs */
...
...
include/gdiplusflat.h
View file @
3ab76662
...
...
@@ -224,6 +224,10 @@ GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient*,
GpStatus
WINGDIPAPI
GdipSetPathGradientWrapMode
(
GpPathGradient
*
,
GpWrapMode
);
GpStatus
WINGDIPAPI
GdipSetSolidFillColor
(
GpSolidFill
*
,
ARGB
);
GpStatus
WINGDIPAPI
GdipSetTextureTransform
(
GpTexture
*
,
GDIPCONST
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipTransformPoints
(
GpGraphics
*
,
GpCoordinateSpace
,
GpCoordinateSpace
,
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipTransformPointsI
(
GpGraphics
*
,
GpCoordinateSpace
,
GpCoordinateSpace
,
GpPoint
*
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathArc
(
GpPath
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipAddPathArcI
(
GpPath
*
,
INT
,
INT
,
INT
,
INT
,
REAL
,
REAL
);
...
...
include/gdiplusgpstubs.h
View file @
3ab76662
...
...
@@ -85,5 +85,6 @@ typedef Point GpPoint;
typedef
WrapMode
GpWrapMode
;
typedef
Color
GpColor
;
typedef
FlushIntention
GpFlushIntention
;
typedef
CoordinateSpace
GpCoordinateSpace
;
#endif
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