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
b4b2a29d
Commit
b4b2a29d
authored
Jun 15, 2015
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Use surface_get_rect() in wined3d_surface_update_overlay().
parent
8351bef5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
23 deletions
+2
-23
surface.c
dlls/wined3d/surface.c
+2
-23
No files found.
dlls/wined3d/surface.c
View file @
b4b2a29d
...
...
@@ -2029,29 +2029,8 @@ HRESULT CDECL wined3d_surface_update_overlay(struct wined3d_surface *surface, co
return
WINED3DERR_INVALIDCALL
;
}
if
(
src_rect
)
{
surface
->
overlay_srcrect
=
*
src_rect
;
}
else
{
surface
->
overlay_srcrect
.
left
=
0
;
surface
->
overlay_srcrect
.
top
=
0
;
surface
->
overlay_srcrect
.
right
=
surface
->
resource
.
width
;
surface
->
overlay_srcrect
.
bottom
=
surface
->
resource
.
height
;
}
if
(
dst_rect
)
{
surface
->
overlay_destrect
=
*
dst_rect
;
}
else
{
surface
->
overlay_destrect
.
left
=
0
;
surface
->
overlay_destrect
.
top
=
0
;
surface
->
overlay_destrect
.
right
=
dst_surface
->
resource
.
width
;
surface
->
overlay_destrect
.
bottom
=
dst_surface
->
resource
.
height
;
}
surface_get_rect
(
surface
,
src_rect
,
&
surface
->
overlay_srcrect
);
surface_get_rect
(
dst_surface
,
dst_rect
,
&
surface
->
overlay_destrect
);
if
(
surface
->
overlay_dest
&&
(
surface
->
overlay_dest
!=
dst_surface
||
flags
&
WINEDDOVER_HIDE
))
{
...
...
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