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
075775a8
Commit
075775a8
authored
Apr 23, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
Apr 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement accessors for graphics rendering origin.
parent
3b4d2780
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
8 deletions
+19
-8
gdiplus_private.h
dlls/gdiplus/gdiplus_private.h
+1
-0
graphics.c
dlls/gdiplus/graphics.c
+18
-8
No files found.
dlls/gdiplus/gdiplus_private.h
View file @
075775a8
...
...
@@ -161,6 +161,7 @@ struct GpGraphics{
UINT
textcontrast
;
/* not used yet. get/set only */
struct
list
containers
;
GraphicsContainer
contid
;
/* last-issued container ID */
INT
origin_x
,
origin_y
;
/* For giving the caller an HDC when we technically can't: */
HBITMAP
temp_hbitmap
;
int
temp_hbitmap_width
;
...
...
dlls/gdiplus/graphics.c
View file @
075775a8
...
...
@@ -1976,6 +1976,7 @@ typedef struct _GraphicsContainerItem {
UINT
textcontrast
;
GpMatrix
*
worldtrans
;
GpRegion
*
clip
;
INT
origin_x
,
origin_y
;
}
GraphicsContainerItem
;
static
GpStatus
init_container
(
GraphicsContainerItem
**
container
,
...
...
@@ -1997,6 +1998,8 @@ static GpStatus init_container(GraphicsContainerItem** container,
(
*
container
)
->
unit
=
graphics
->
unit
;
(
*
container
)
->
textcontrast
=
graphics
->
textcontrast
;
(
*
container
)
->
pixeloffset
=
graphics
->
pixeloffset
;
(
*
container
)
->
origin_x
=
graphics
->
origin_x
;
(
*
container
)
->
origin_y
=
graphics
->
origin_y
;
sts
=
GdipCloneMatrix
(
graphics
->
worldtrans
,
&
(
*
container
)
->
worldtrans
);
if
(
sts
!=
Ok
){
...
...
@@ -2055,6 +2058,8 @@ static GpStatus restore_container(GpGraphics* graphics,
graphics
->
unit
=
container
->
unit
;
graphics
->
textcontrast
=
container
->
textcontrast
;
graphics
->
pixeloffset
=
container
->
pixeloffset
;
graphics
->
origin_x
=
container
->
origin_x
;
graphics
->
origin_y
=
container
->
origin_y
;
return
Ok
;
}
...
...
@@ -5499,23 +5504,28 @@ GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
TRACE
(
"(%p,%i,%i)
\n
"
,
graphics
,
x
,
y
);
if
(
!
(
calls
++
))
FIXME
(
"
not implemented
\n
"
);
FIXME
(
"
value is unused in rendering
\n
"
);
return
NotImplemented
;
if
(
!
graphics
)
return
InvalidParameter
;
graphics
->
origin_x
=
x
;
graphics
->
origin_y
=
y
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetRenderingOrigin
(
GpGraphics
*
graphics
,
INT
*
x
,
INT
*
y
)
{
static
int
calls
;
TRACE
(
"(%p,%p,%p)
\n
"
,
graphics
,
x
,
y
);
if
(
!
(
calls
++
)
)
FIXME
(
"not implemented
\n
"
)
;
if
(
!
graphics
||
!
x
||
!
y
)
return
InvalidParameter
;
*
x
=
*
y
=
0
;
*
x
=
graphics
->
origin_x
;
*
y
=
graphics
->
origin_y
;
return
NotImplemented
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipSetSmoothingMode
(
GpGraphics
*
graphics
,
SmoothingMode
mode
)
...
...
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