Fix warnings in IndexFormatTests
This commit is contained in:
parent
33f7bfe322
commit
f40d8c545c
|
@ -131,7 +131,7 @@ class NXTTest : public ::testing::TestWithParam<BackendType> {
|
|||
};
|
||||
|
||||
// Instantiate the test once for each backend provided after the first argument. Use it like this:
|
||||
// NXT_INSTANTIATE_TEST(MyTestFixture, OpenGLBackend, MetalBackend)
|
||||
// NXT_INSTANTIATE_TEST(MyTestFixture, MetalBackend, OpenGLBackend)
|
||||
#define NXT_INSTANTIATE_TEST(testName, firstParam, ...) \
|
||||
const decltype(firstParam) testName##params[] = { firstParam, ##__VA_ARGS__ }; \
|
||||
INSTANTIATE_TEST_CASE_P(, testName, \
|
||||
|
|
|
@ -153,13 +153,15 @@ TEST_P(IndexFormatTest, Uint16) {
|
|||
|
||||
// Test for primitive restart use vertices like in the drawing and draw the following
|
||||
// indices: 0 1 2 PRIM_RESTART 3 4 2. Then A and B should be written but not C.
|
||||
// 0
|
||||
// |\
|
||||
// |B \
|
||||
// 2---1
|
||||
// /| C
|
||||
// / A|
|
||||
// 4---3
|
||||
// |--------------|
|
||||
// | 0 |
|
||||
// | |\ |
|
||||
// | |B \ |
|
||||
// | 2---1 |
|
||||
// | /| C |
|
||||
// | / A| |
|
||||
// | 4---3 |
|
||||
// |--------------|
|
||||
|
||||
// Test use of primitive restart with an Uint32 index format
|
||||
TEST_P(IndexFormatTest, Uint32PrimitiveRestart) {
|
||||
|
@ -265,4 +267,4 @@ TEST_P(IndexFormatTest, ChangePipelineAfterSetIndexBuffer) {
|
|||
EXPECT_PIXEL_RGBA8_EQ(RGBA8(0, 255, 0, 255), renderTarget, 100, 100);
|
||||
}
|
||||
|
||||
NXT_INSTANTIATE_TEST(IndexFormatTest, MetalBackend)
|
||||
NXT_INSTANTIATE_TEST(IndexFormatTest, MetalBackend, OpenGLBackend)
|
||||
|
|
Loading…
Reference in New Issue