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
b0acdb83
Commit
b0acdb83
authored
Jul 24, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Jul 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Limit fixme output.
parent
45c24bbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
graphics.c
dlls/gdiplus/graphics.c
+8
-2
pen.c
dlls/gdiplus/pen.c
+4
-1
No files found.
dlls/gdiplus/graphics.c
View file @
b0acdb83
...
...
@@ -1200,20 +1200,26 @@ GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix
GpStatus
WINGDIPAPI
GdipRestoreGraphics
(
GpGraphics
*
graphics
,
GraphicsState
state
)
{
static
int
calls
;
if
(
!
graphics
)
return
InvalidParameter
;
FIXME
(
"graphics state not implemented
\n
"
);
if
(
!
(
calls
++
))
FIXME
(
"graphics state not implemented
\n
"
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipSaveGraphics
(
GpGraphics
*
graphics
,
GraphicsState
*
state
)
{
static
int
calls
;
if
(
!
graphics
||
!
state
)
return
InvalidParameter
;
FIXME
(
"graphics state not implemented
\n
"
);
if
(
!
(
calls
++
))
FIXME
(
"graphics state not implemented
\n
"
);
return
NotImplemented
;
}
...
...
dlls/gdiplus/pen.c
View file @
b0acdb83
...
...
@@ -29,6 +29,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
static
DWORD
gdip_to_gdi_dash
(
GpDashStyle
dash
)
{
static
int
calls
;
switch
(
dash
){
case
DashStyleSolid
:
return
PS_SOLID
;
...
...
@@ -41,7 +43,8 @@ static DWORD gdip_to_gdi_dash(GpDashStyle dash)
case
DashStyleDashDotDot
:
return
PS_DASHDOTDOT
;
case
DashStyleCustom
:
FIXME
(
"DashStyleCustom not implemented
\n
"
);
if
(
!
(
calls
++
))
FIXME
(
"DashStyleCustom not implemented
\n
"
);
return
PS_SOLID
;
default:
ERR
(
"Not a member of GpDashStyle enumeration
\n
"
);
...
...
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