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
ac05d0dd
Commit
ac05d0dd
authored
Apr 14, 2004
by
Kevin Koltzau
Committed by
Alexandre Julliard
Apr 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partial stub of GdiAlphaBlend/AlphaBlend.
parent
e06dd2cf
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
13 deletions
+18
-13
bitblt.c
dlls/gdi/bitblt.c
+13
-0
gdi32.spec
dlls/gdi/gdi32.spec
+1
-0
msimg32.spec
dlls/msimg32/msimg32.spec
+1
-1
msimg32_main.c
dlls/msimg32/msimg32_main.c
+0
-12
wingdi.h
include/wingdi.h
+3
-0
No files found.
dlls/gdi/bitblt.c
View file @
ac05d0dd
...
...
@@ -395,6 +395,19 @@ error:
return
ret
;
}
/******************************************************************************
* GdiAlphaBlend [GDI32.@]
*/
BOOL
WINAPI
GdiAlphaBlend
(
HDC
hdcDest
,
int
nXOriginDest
,
int
nYOriginDest
,
int
nWidthDest
,
int
nHeightDest
,
HDC
hdcSrc
,
int
nXOriginSrc
,
int
nYOriginSrc
,
int
nWidthSrc
,
int
nHeightSrc
,
BLENDFUNCTION
blendFunction
)
{
FIXME
(
"partial stub - using StretchBlt
\n
"
);
return
StretchBlt
(
hdcDest
,
nXOriginDest
,
nYOriginDest
,
nWidthDest
,
nHeightDest
,
hdcSrc
,
nXOriginSrc
,
nYOriginSrc
,
nWidthSrc
,
nHeightSrc
,
SRCCOPY
);
}
/*********************************************************************
* PlgBlt [GDI32.@]
*
...
...
dlls/gdi/gdi32.spec
View file @
ac05d0dd
...
...
@@ -118,6 +118,7 @@
@ stdcall FloodFill(long long long long)
@ stdcall FrameRgn(long long long long long)
@ stub FreeImageColorMatcher
@ stdcall GdiAlphaBlend(long long long long long long long long long long long)
@ stub GdiAssociateObject
@ stub GdiCleanCacheDC
@ stdcall GdiComment(long long ptr)
...
...
dlls/msimg32/msimg32.spec
View file @
ac05d0dd
@ stdcall AlphaBlend(long long long long long long long long long long long)
@ stdcall AlphaBlend(long long long long long long long long long long long)
gdi32.GdiAlphaBlend
@ stub DllInitialize
@ stdcall GradientFill(long ptr long ptr long long) gdi32.GdiGradientFill
@ stdcall TransparentBlt(long long long long long long long long long long long) gdi32.GdiTransparentBlt
...
...
dlls/msimg32/msimg32_main.c
View file @
ac05d0dd
...
...
@@ -27,18 +27,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msimg32
);
/******************************************************************************
* AlphaBlend (MSIMG32.@)
*/
BOOL
WINAPI
AlphaBlend
(
HDC
hdcDest
,
int
xDest
,
int
yDest
,
int
widthDest
,
int
heightDst
,
HDC
hdcSrc
,
int
xSrc
,
int
ySrc
,
int
widthSrc
,
int
heightSrc
,
BLENDFUNCTION
func
)
{
FIXME
(
"stub: AlphaBlend from %p to %p
\n
"
,
hdcSrc
,
hdcDest
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/******************************************************************************
* vSetDdrawflag (MSIMG32.@)
*/
void
WINAPI
vSetDdrawflag
(
void
)
...
...
include/wingdi.h
View file @
ac05d0dd
...
...
@@ -3133,6 +3133,9 @@ typedef struct _GRADIENT_RECT
ULONG
LowerRight
;
}
GRADIENT_RECT
,
*
PGRADIENT_RECT
,
*
LPGRADIENT_RECT
;
#define AC_SRC_OVER 0x00
#define AC_SRC_ALPHA 0x01
typedef
struct
_BLENDFUNCTION
{
BYTE
BlendOp
;
...
...
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