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
d63651fe
Commit
d63651fe
authored
Oct 25, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Oct 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Remove remaining pixmap prefix to fix compilation without libxrender.
parent
94bd422f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
xrender.c
dlls/winex11.drv/xrender.c
+2
-2
No files found.
dlls/winex11.drv/xrender.c
View file @
d63651fe
...
...
@@ -3149,10 +3149,10 @@ void X11DRV_XRender_Finalize(void)
void
X11DRV_XRender_CopyBrush
(
X11DRV_PDEVICE
*
physDev
,
X_PHYSBITMAP
*
physBitmap
,
int
width
,
int
height
)
{
wine_tsx11_lock
();
physDev
->
brush
.
pixmap
=
XCreatePixmap
(
gdi_display
,
root_window
,
width
,
height
,
physBitmap
->
pixmap_
depth
);
physDev
->
brush
.
pixmap
=
XCreatePixmap
(
gdi_display
,
root_window
,
width
,
height
,
physBitmap
->
depth
);
XCopyArea
(
gdi_display
,
physBitmap
->
pixmap
,
physDev
->
brush
.
pixmap
,
get_bitmap_gc
(
physBitmap
->
pixmap_
depth
),
0
,
0
,
width
,
height
,
0
,
0
);
get_bitmap_gc
(
physBitmap
->
depth
),
0
,
0
,
width
,
height
,
0
,
0
);
wine_tsx11_unlock
();
}
...
...
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