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
e39c4975
Commit
e39c4975
authored
Sep 07, 2022
by
Stefan Dösinger
Committed by
Alexandre Julliard
Apr 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8/tests: Radeon GPUs don't draw from sysmem textures.
parent
830906f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
visual.c
dlls/d3d8/tests/visual.c
+3
-1
No files found.
dlls/d3d8/tests/visual.c
View file @
e39c4975
...
...
@@ -5828,7 +5828,9 @@ static void add_dirty_rect_test(void)
ok
(
hr
==
S_OK
,
"Failed to set texture, hr %#lx.
\n
"
,
hr
);
add_dirty_rect_test_draw
(
device
);
color
=
getPixelColor
(
device
,
320
,
240
);
ok
(
color_match
(
color
,
0x000000ff
,
1
),
"Got unexpected color 0x%08x.
\n
"
,
color
);
/* Radeon GPUs read zero from sysmem textures. */
ok
(
color_match
(
color
,
0x000000ff
,
1
)
||
broken
(
color_match
(
color
,
0x00000000
,
1
)),
"Got unexpected color 0x%08x.
\n
"
,
color
);
/* Blitting to the sysmem texture adds a dirty rect. */
fill_surface
(
surface_src_red
,
0x00000000
,
D3DLOCK_NO_DIRTY_UPDATE
);
...
...
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