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
5649746b
Commit
5649746b
authored
Jun 19, 2013
by
Matteo Bruni
Committed by
Alexandre Julliard
Jun 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Fix NP2 surface repacking in surface_download_data.
parent
410b728c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
surface.c
dlls/wined3d/surface.c
+2
-3
No files found.
dlls/wined3d/surface.c
View file @
5649746b
...
...
@@ -2246,12 +2246,11 @@ static void surface_download_data(struct wined3d_surface *surface, const struct
src_data
=
mem
;
dst_data
=
surface
->
resource
.
allocatedMemory
;
TRACE
(
"(%p) : Repacking the surface data from pitch %d to pitch %d
\n
"
,
surface
,
src_pitch
,
dst_pitch
);
for
(
y
=
1
;
y
<
surface
->
resource
.
height
;
++
y
)
for
(
y
=
0
;
y
<
surface
->
resource
.
height
;
++
y
)
{
/* skip the first row */
memcpy
(
dst_data
,
src_data
,
dst_pitch
);
src_data
+=
src_pitch
;
dst_data
+=
dst_pitch
;
memcpy
(
dst_data
,
src_data
,
dst_pitch
);
}
HeapFree
(
GetProcessHeap
(),
0
,
mem
);
...
...
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