| Index: tests/GLInterfaceValidation.cpp
|
| diff --git a/tests/GLInterfaceValidation.cpp b/tests/GLInterfaceValidation.cpp
|
| index a4709ba104aca28b3bf820cdb611030e63dd04e4..792ed039fbbaa9e3abfdb81b28b7bd6b74262577 100755
|
| --- a/tests/GLInterfaceValidation.cpp
|
| +++ b/tests/GLInterfaceValidation.cpp
|
| @@ -1,4 +1,3 @@
|
| -
|
| /*
|
| * Copyright 2011 Google Inc.
|
| *
|
| @@ -6,15 +5,15 @@
|
| * found in the LICENSE file.
|
| */
|
|
|
| -
|
| -
|
| #include "Test.h"
|
| +#include "TestClassDef.h"
|
| +
|
| // This is a GPU-backend specific test
|
| #if SK_SUPPORT_GPU
|
|
|
| #include "GrContextFactory.h"
|
|
|
| -static void GLInterfaceValidationTest(skiatest::Reporter* reporter, GrContextFactory* factory) {
|
| +DEF_GPUTEST(GLInterfaceValidation, reporter, factory) {
|
| for (int i = 0; i <= GrContextFactory::kLastGLContextType; ++i) {
|
| GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContextType)i;
|
| // this forces the factory to make the context if it hasn't yet
|
| @@ -34,10 +33,4 @@ static void GLInterfaceValidationTest(skiatest::Reporter* reporter, GrContextFac
|
| }
|
| }
|
|
|
| -
|
| -#include "TestClassDef.h"
|
| -DEFINE_GPUTESTCLASS("GLInterfaceValidation",
|
| - GLInterfaceValidationTestClass,
|
| - GLInterfaceValidationTest)
|
| -
|
| #endif
|
|
|