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
ae8457e4
Commit
ae8457e4
authored
Feb 21, 2008
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Add an optimized path for BitBlt(SRCINVERT).
parent
1cfdeb0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
bitblt.c
dlls/winex11.drv/bitblt.c
+3
-2
No files found.
dlls/winex11.drv/bitblt.c
View file @
ae8457e4
...
...
@@ -1390,10 +1390,11 @@ static BOOL BITBLT_InternalStretchBlt( X11DRV_PDEVICE *physDevDst, INT xDst, INT
return
TRUE
;
case
SRCCOPY
:
/* 0xcc */
case
SRCINVERT
:
if
(
physDevSrc
->
depth
==
physDevDst
->
depth
)
{
wine_tsx11_lock
();
XSetFunction
(
gdi_display
,
physDevDst
->
gc
,
GXcopy
);
XSetFunction
(
gdi_display
,
physDevDst
->
gc
,
rop
==
SRCCOPY
?
GXcopy
:
GXxor
);
XCopyArea
(
gdi_display
,
physDevSrc
->
drawable
,
physDevDst
->
drawable
,
physDevDst
->
gc
,
physDevSrc
->
dc_rect
.
left
+
visRectSrc
.
left
,
...
...
@@ -1414,7 +1415,7 @@ static BOOL BITBLT_InternalStretchBlt( X11DRV_PDEVICE *physDevDst, INT xDst, INT
XSetBackground
(
gdi_display
,
physDevDst
->
gc
,
fg
);
XSetForeground
(
gdi_display
,
physDevDst
->
gc
,
bg
);
XSetFunction
(
gdi_display
,
physDevDst
->
gc
,
GXcopy
);
XSetFunction
(
gdi_display
,
physDevDst
->
gc
,
rop
==
SRCCOPY
?
GXcopy
:
GXxor
);
XCopyPlane
(
gdi_display
,
physDevSrc
->
drawable
,
physDevDst
->
drawable
,
physDevDst
->
gc
,
physDevSrc
->
dc_rect
.
left
+
visRectSrc
.
left
,
...
...
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