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
b692e861
Commit
b692e861
authored
Aug 12, 2008
by
Stefan Dösinger
Committed by
Alexandre Julliard
Aug 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: De-pickify the texbem test.
parent
a901f096
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
visual.c
dlls/d3d9/tests/visual.c
+4
-4
No files found.
dlls/d3d9/tests/visual.c
View file @
b692e861
...
...
@@ -1663,13 +1663,13 @@ static void texbem_test(IDirect3DDevice9 *device)
ok
(
SUCCEEDED
(
hr
),
"Present failed (0x%08x)
\n
"
,
hr
);
color
=
getPixelColor
(
device
,
320
-
32
,
240
);
ok
(
color
==
0x00ffffff
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
ok
(
color
_match
(
color
,
0x00ffffff
,
4
)
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
color
=
getPixelColor
(
device
,
320
+
32
,
240
);
ok
(
color
==
0x00ffffff
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
ok
(
color
_match
(
color
,
0x00ffffff
,
4
)
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
color
=
getPixelColor
(
device
,
320
,
240
-
32
);
ok
(
color
==
0x00ffffff
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
ok
(
color
_match
(
color
,
0x00ffffff
,
4
)
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
color
=
getPixelColor
(
device
,
320
,
240
+
32
);
ok
(
color
==
0x00ffffff
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
ok
(
color
_match
(
color
,
0x00ffffff
,
4
)
,
"texbem failed: Got color 0x%08x, expected 0x00ffffff.
\n
"
,
color
);
hr
=
IDirect3DDevice9_SetPixelShader
(
device
,
NULL
);
ok
(
SUCCEEDED
(
hr
),
"SetPixelShader failed (%08x)
\n
"
,
hr
);
...
...
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