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
ecce9eeb
Commit
ecce9eeb
authored
Aug 21, 2010
by
Tony Wasserka
Committed by
Alexandre Julliard
Aug 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Fix an off by one error in point_filter_simple_data.
parent
18b89169
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
surface.c
dlls/d3dx9_36/surface.c
+2
-2
No files found.
dlls/d3dx9_36/surface.c
View file @
ecce9eeb
...
...
@@ -586,16 +586,16 @@ static void point_filter_simple_data(CONST BYTE *src, UINT srcpitch, POINT sr
for
(
y
=
0
;
y
<
destsize
.
y
;
y
++
)
{
BYTE
*
destptr
=
dest
+
y
*
destpitch
;
const
BYTE
*
bufptr
=
src
+
srcpitch
*
(
y
*
srcsize
.
y
/
destsize
.
y
);
const
BYTE
*
srcptr
=
bufptr
;
for
(
x
=
0
;
x
<
destsize
.
x
;
x
++
)
{
const
BYTE
*
srcptr
=
bufptr
+
(
x
*
srcsize
.
x
/
destsize
.
x
)
*
srcformat
->
bytes_per_pixel
;
/* extract source color components */
if
(
srcformat
->
type
==
FORMAT_ARGB
)
get_relevant_argb_components
(
&
conv_info
,
*
(
const
DWORD
*
)
srcptr
,
channels
);
/* recombine the components */
if
(
destformat
->
type
==
FORMAT_ARGB
)
make_argb_color
(
&
conv_info
,
channels
,
(
DWORD
*
)
destptr
);
srcptr
=
bufptr
+
(
x
*
srcsize
.
x
/
destsize
.
x
)
*
srcformat
->
bytes_per_pixel
;
destptr
+=
destformat
->
bytes_per_pixel
;
}
}
...
...
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