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
ee747f3d
Commit
ee747f3d
authored
Aug 30, 2007
by
Mikolaj Zalewski
Committed by
Alexandre Julliard
Aug 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Support GdiAlphaBlend with blendfn.AlphaFormat == 0.
parent
9dc6f6cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
6 deletions
+33
-6
xrender.c
dlls/winex11.drv/xrender.c
+33
-6
No files found.
dlls/winex11.drv/xrender.c
View file @
ee747f3d
...
@@ -1524,7 +1524,7 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
...
@@ -1524,7 +1524,7 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
XImage
*
image
;
XImage
*
image
;
GC
gc
;
GC
gc
;
XGCValues
gcv
;
XGCValues
gcv
;
BYTE
*
dstbits
,
*
data
;
DWORD
*
dstbits
,
*
data
;
int
y
,
y2
;
int
y
,
y2
;
POINT
pts
[
2
];
POINT
pts
[
2
];
BOOL
top_down
=
FALSE
;
BOOL
top_down
=
FALSE
;
...
@@ -1580,6 +1580,9 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
...
@@ -1580,6 +1580,9 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
return
FALSE
;
return
FALSE
;
}
}
if
((
blendfn
.
AlphaFormat
&
AC_SRC_ALPHA
)
&&
blendfn
.
SourceConstantAlpha
!=
0xff
)
FIXME
(
"Ignoring SourceConstantAlpha %d for AC_SRC_ALPHA
\n
"
,
blendfn
.
SourceConstantAlpha
);
if
(
dib
.
dsBm
.
bmBitsPixel
!=
32
)
{
if
(
dib
.
dsBm
.
bmBitsPixel
!=
32
)
{
FIXME
(
"not a 32 bpp dibsection
\n
"
);
FIXME
(
"not a 32 bpp dibsection
\n
"
);
return
FALSE
;
return
FALSE
;
...
@@ -1588,7 +1591,7 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
...
@@ -1588,7 +1591,7 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
if
(
dib
.
dsBmih
.
biHeight
<
0
)
{
/* top-down dib */
if
(
dib
.
dsBmih
.
biHeight
<
0
)
{
/* top-down dib */
top_down
=
TRUE
;
top_down
=
TRUE
;
dstbits
+=
widthSrc
*
(
heightSrc
-
1
)
*
4
;
dstbits
+=
widthSrc
*
(
heightSrc
-
1
);
y2
=
ySrc
;
y2
=
ySrc
;
y
=
y2
+
heightSrc
-
1
;
y
=
y2
+
heightSrc
-
1
;
}
}
...
@@ -1597,10 +1600,34 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
...
@@ -1597,10 +1600,34 @@ BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst,
y
=
dib
.
dsBmih
.
biHeight
-
ySrc
-
1
;
y
=
dib
.
dsBmih
.
biHeight
-
ySrc
-
1
;
y2
=
y
-
heightSrc
+
1
;
y2
=
y
-
heightSrc
+
1
;
}
}
for
(;
y
>=
y2
;
y
--
)
{
memcpy
(
dstbits
,
(
char
*
)
dib
.
dsBm
.
bmBits
+
y
*
dib
.
dsBm
.
bmWidthBytes
+
xSrc
*
4
,
if
(
blendfn
.
AlphaFormat
&
AC_SRC_ALPHA
)
widthSrc
*
4
);
{
dstbits
+=
(
top_down
?
-
1
:
1
)
*
widthSrc
*
4
;
for
(;
y
>=
y2
;
y
--
)
{
memcpy
(
dstbits
,
(
char
*
)
dib
.
dsBm
.
bmBits
+
y
*
dib
.
dsBm
.
bmWidthBytes
+
xSrc
*
4
,
widthSrc
*
4
);
dstbits
+=
(
top_down
?
-
1
:
1
)
*
widthSrc
;
}
}
else
{
DWORD
source_alpha
=
(
DWORD
)
blendfn
.
SourceConstantAlpha
<<
24
;
int
x
;
for
(;
y
>=
y2
;
y
--
)
{
DWORD
*
srcbits
=
(
DWORD
*
)((
char
*
)
dib
.
dsBm
.
bmBits
+
y
*
dib
.
dsBm
.
bmWidthBytes
)
+
xSrc
;
for
(
x
=
0
;
x
<
widthSrc
;
x
++
)
{
DWORD
argb
=
*
srcbits
++
;
argb
=
(
argb
&
0xffffff
)
|
source_alpha
;
*
dstbits
++
=
argb
;
}
if
(
top_down
)
/* we traversed the row forward so we should go back by two rows */
dstbits
-=
2
*
widthSrc
;
}
}
}
wine_tsx11_lock
();
wine_tsx11_lock
();
...
...
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