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
6f6e919e
Commit
6f6e919e
authored
Dec 03, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Avoid binary ROPs when stretching in DELETESCANS mode.
parent
8e654857
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
primitives.c
dlls/gdi32/dibdrv/primitives.c
+74
-0
No files found.
dlls/gdi32/dibdrv/primitives.c
View file @
6f6e919e
...
@@ -5697,6 +5697,23 @@ static void stretch_row_32(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5697,6 +5697,23 @@ static void stretch_row_32(const dib_info *dst_dib, const POINT *dst_start,
DWORD
*
src_ptr
=
get_pixel_ptr_32
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
DWORD
*
src_ptr
=
get_pixel_ptr_32
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
int
err
=
params
->
err_start
;
int
err
=
params
->
err_start
;
int
width
;
int
width
;
if
(
mode
==
STRETCH_DELETESCANS
)
{
for
(
width
=
params
->
length
;
width
;
width
--
)
{
*
dst_ptr
=
*
src_ptr
;
dst_ptr
+=
params
->
dst_inc
;
if
(
err
>
0
)
{
src_ptr
+=
params
->
src_inc
;
err
+=
params
->
err_add_1
;
}
else
err
+=
params
->
err_add_2
;
}
}
else
{
struct
rop_codes
codes
;
struct
rop_codes
codes
;
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
...
@@ -5711,6 +5728,7 @@ static void stretch_row_32(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5711,6 +5728,7 @@ static void stretch_row_32(const dib_info *dst_dib, const POINT *dst_start,
}
}
else
err
+=
params
->
err_add_2
;
else
err
+=
params
->
err_add_2
;
}
}
}
}
}
static
void
stretch_row_24
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
static
void
stretch_row_24
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
...
@@ -5722,6 +5740,25 @@ static void stretch_row_24(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5722,6 +5740,25 @@ static void stretch_row_24(const dib_info *dst_dib, const POINT *dst_start,
BYTE
*
src_ptr
=
get_pixel_ptr_24
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
BYTE
*
src_ptr
=
get_pixel_ptr_24
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
int
err
=
params
->
err_start
;
int
err
=
params
->
err_start
;
int
width
;
int
width
;
if
(
mode
==
STRETCH_DELETESCANS
)
{
for
(
width
=
params
->
length
;
width
;
width
--
)
{
dst_ptr
[
0
]
=
src_ptr
[
0
];
dst_ptr
[
1
]
=
src_ptr
[
1
];
dst_ptr
[
2
]
=
src_ptr
[
2
];
dst_ptr
+=
3
*
params
->
dst_inc
;
if
(
err
>
0
)
{
src_ptr
+=
3
*
params
->
src_inc
;
err
+=
params
->
err_add_1
;
}
else
err
+=
params
->
err_add_2
;
}
}
else
{
struct
rop_codes
codes
;
struct
rop_codes
codes
;
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
...
@@ -5738,6 +5775,7 @@ static void stretch_row_24(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5738,6 +5775,7 @@ static void stretch_row_24(const dib_info *dst_dib, const POINT *dst_start,
}
}
else
err
+=
params
->
err_add_2
;
else
err
+=
params
->
err_add_2
;
}
}
}
}
}
static
void
stretch_row_16
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
static
void
stretch_row_16
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
...
@@ -5749,6 +5787,23 @@ static void stretch_row_16(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5749,6 +5787,23 @@ static void stretch_row_16(const dib_info *dst_dib, const POINT *dst_start,
WORD
*
src_ptr
=
get_pixel_ptr_16
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
WORD
*
src_ptr
=
get_pixel_ptr_16
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
int
err
=
params
->
err_start
;
int
err
=
params
->
err_start
;
int
width
;
int
width
;
if
(
mode
==
STRETCH_DELETESCANS
)
{
for
(
width
=
params
->
length
;
width
;
width
--
)
{
*
dst_ptr
=
*
src_ptr
;
dst_ptr
+=
params
->
dst_inc
;
if
(
err
>
0
)
{
src_ptr
+=
params
->
src_inc
;
err
+=
params
->
err_add_1
;
}
else
err
+=
params
->
err_add_2
;
}
}
else
{
struct
rop_codes
codes
;
struct
rop_codes
codes
;
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
...
@@ -5763,6 +5818,7 @@ static void stretch_row_16(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5763,6 +5818,7 @@ static void stretch_row_16(const dib_info *dst_dib, const POINT *dst_start,
}
}
else
err
+=
params
->
err_add_2
;
else
err
+=
params
->
err_add_2
;
}
}
}
}
}
static
void
stretch_row_8
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
static
void
stretch_row_8
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
...
@@ -5774,6 +5830,23 @@ static void stretch_row_8(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5774,6 +5830,23 @@ static void stretch_row_8(const dib_info *dst_dib, const POINT *dst_start,
BYTE
*
src_ptr
=
get_pixel_ptr_8
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
BYTE
*
src_ptr
=
get_pixel_ptr_8
(
src_dib
,
src_start
->
x
,
src_start
->
y
);
int
err
=
params
->
err_start
;
int
err
=
params
->
err_start
;
int
width
;
int
width
;
if
(
mode
==
STRETCH_DELETESCANS
)
{
for
(
width
=
params
->
length
;
width
;
width
--
)
{
*
dst_ptr
=
*
src_ptr
;
dst_ptr
+=
params
->
dst_inc
;
if
(
err
>
0
)
{
src_ptr
+=
params
->
src_inc
;
err
+=
params
->
err_add_1
;
}
else
err
+=
params
->
err_add_2
;
}
}
else
{
struct
rop_codes
codes
;
struct
rop_codes
codes
;
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
rop_codes_from_stretch_mode
(
mode
,
&
codes
);
...
@@ -5788,6 +5861,7 @@ static void stretch_row_8(const dib_info *dst_dib, const POINT *dst_start,
...
@@ -5788,6 +5861,7 @@ static void stretch_row_8(const dib_info *dst_dib, const POINT *dst_start,
}
}
else
err
+=
params
->
err_add_2
;
else
err
+=
params
->
err_add_2
;
}
}
}
}
}
static
void
stretch_row_4
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
static
void
stretch_row_4
(
const
dib_info
*
dst_dib
,
const
POINT
*
dst_start
,
...
...
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