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
10334ab4
Commit
10334ab4
authored
Oct 26, 2023
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core/tests: Do not test GSInvocations in test_pipeline_statistics_query().
parent
8141f893
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
d3d10core.c
dlls/d3d10core/tests/d3d10core.c
+2
-2
No files found.
dlls/d3d10core/tests/d3d10core.c
View file @
10334ab4
...
...
@@ -4915,7 +4915,7 @@ static void test_pipeline_statistics_query(void)
ok
(
data
.
IAVertices
==
4
,
"Got unexpected IAVertices count: %u.
\n
"
,
(
unsigned
int
)
data
.
IAVertices
);
ok
(
data
.
IAPrimitives
==
2
,
"Got unexpected IAPrimitives count: %u.
\n
"
,
(
unsigned
int
)
data
.
IAPrimitives
);
ok
(
data
.
VSInvocations
==
4
,
"Got unexpected VSInvocations count: %u.
\n
"
,
(
unsigned
int
)
data
.
VSInvocations
);
todo_wine_if
(
damavand
)
ok
(
!
data
.
GSInvocations
,
"Got unexpected GSInvocations count: %u.
\n
"
,
(
unsigned
int
)
data
.
GSInvocations
);
/* AMD has nonzero GSInvocations on Windows. */
ok
(
!
data
.
GSPrimitives
,
"Got unexpected GSPrimitives count: %u.
\n
"
,
(
unsigned
int
)
data
.
GSPrimitives
);
ok
(
data
.
CInvocations
==
2
,
"Got unexpected CInvocations count: %u.
\n
"
,
(
unsigned
int
)
data
.
CInvocations
);
ok
(
data
.
CPrimitives
==
2
,
"Got unexpected CPrimitives count: %u.
\n
"
,
(
unsigned
int
)
data
.
CPrimitives
);
...
...
@@ -4934,7 +4934,7 @@ static void test_pipeline_statistics_query(void)
ok
(
data
.
IAVertices
==
4
,
"Got unexpected IAVertices count: %u.
\n
"
,
(
unsigned
int
)
data
.
IAVertices
);
ok
(
data
.
IAPrimitives
==
2
,
"Got unexpected IAPrimitives count: %u.
\n
"
,
(
unsigned
int
)
data
.
IAPrimitives
);
ok
(
data
.
VSInvocations
==
4
,
"Got unexpected VSInvocations count: %u.
\n
"
,
(
unsigned
int
)
data
.
VSInvocations
);
todo_wine_if
(
damavand
)
ok
(
!
data
.
GSInvocations
,
"Got unexpected GSInvocations count: %u.
\n
"
,
(
unsigned
int
)
data
.
GSInvocations
);
/* AMD has nonzero GSInvocations on Windows. */
ok
(
!
data
.
GSPrimitives
,
"Got unexpected GSPrimitives count: %u.
\n
"
,
(
unsigned
int
)
data
.
GSPrimitives
);
ok
(
data
.
CInvocations
==
2
,
"Got unexpected CInvocations count: %u.
\n
"
,
(
unsigned
int
)
data
.
CInvocations
);
ok
(
data
.
CPrimitives
==
2
,
"Got unexpected CPrimitives count: %u.
\n
"
,
(
unsigned
int
)
data
.
CPrimitives
);
...
...
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