Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Louis Lenders
wine
Commits
96a69f05
Commit
96a69f05
authored
17 years ago
by
Evan Stade
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gdiplus: Added GdipSetTextureTransform stub.
parent
8254c37a
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/gdiplus/brush.c
+14
-0
14 additions, 0 deletions
dlls/gdiplus/brush.c
dlls/gdiplus/gdiplus.spec
+1
-1
1 addition, 1 deletion
dlls/gdiplus/gdiplus.spec
include/gdiplusflat.h
+1
-0
1 addition, 0 deletions
include/gdiplusflat.h
with
16 additions
and
1 deletion
dlls/gdiplus/brush.c
+
14
−
0
View file @
96a69f05
...
...
@@ -625,3 +625,17 @@ GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipSetTextureTransform
(
GpTexture
*
texture
,
GDIPCONST
GpMatrix
*
matrix
)
{
static
int
calls
;
if
(
!
texture
||
!
matrix
)
return
InvalidParameter
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
Ok
;
}
This diff is collapsed.
Click to expand it.
dlls/gdiplus/gdiplus.spec
+
1
−
1
View file @
96a69f05
...
...
@@ -595,7 +595,7 @@
@ stub GdipSetStringFormatTrimming
@ stub GdipSetTextContrast
@ stub GdipSetTextRenderingHint
@ st
ub
GdipSetTextureTransform
@ st
dcall
GdipSetTextureTransform
(ptr ptr)
@ stub GdipSetTextureWrapMode
@ stdcall GdipSetWorldTransform(ptr ptr)
@ stub GdipShearMatrix
...
...
This diff is collapsed.
Click to expand it.
include/gdiplusflat.h
+
1
−
0
View file @
96a69f05
...
...
@@ -128,6 +128,7 @@ GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient*,
ARGB
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipSetPathGradientWrapMode
(
GpPathGradient
*
,
GpWrapMode
);
GpStatus
WINGDIPAPI
GdipSetSolidFillColor
(
GpSolidFill
*
,
ARGB
);
GpStatus
WINGDIPAPI
GdipSetTextureTransform
(
GpTexture
*
,
GDIPCONST
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipAddPathArc
(
GpPath
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipAddPathBeziers
(
GpPath
*
,
GDIPCONST
GpPointF
*
,
INT
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment