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
e5f149a8
Commit
e5f149a8
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
d3d9/tests: Radeon GPUs don't draw from sysmem textures.
parent
871f333d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
visual.c
dlls/d3d9/tests/visual.c
+3
-1
No files found.
dlls/d3d9/tests/visual.c
View file @
e5f149a8
...
@@ -19782,7 +19782,9 @@ static void add_dirty_rect_test(void)
...
@@ -19782,7 +19782,9 @@ static void add_dirty_rect_test(void)
ok
(
hr
==
S_OK
,
"Failed to set texture, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Failed to set texture, hr %#lx.
\n
"
,
hr
);
add_dirty_rect_test_draw
(
device
);
add_dirty_rect_test_draw
(
device
);
color
=
getPixelColor
(
device
,
320
,
240
);
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
);
/* Tests with managed textures. */
/* Tests with managed textures. */
fill_surface
(
surface_managed0
,
0x00ff0000
,
0
);
fill_surface
(
surface_managed0
,
0x00ff0000
,
0
);
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