4ee16bfaed
This macro is similar to DEF_TEST() and simplifies the process of setting up a GPU test. BUG=skia:1952 TEST=tests R=mtklein@google.com Review URL: https://codereview.chromium.org/132293005 git-svn-id: http://skia.googlecode.com/svn/trunk@13033 2bbb7eff-a529-9590-31e7-b0007b416f81
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrContextFactory.h"
|
|
#include "Test.h"
|
|
#include "TestClassDef.h"
|
|
|
|
DEF_GPUTEST(GrContextFactoryTest, reporter, factory) {
|
|
// Reset in case some other test has been using it first.
|
|
factory->destroyContexts();
|
|
|
|
// Before we ask for a context, we expect the GL context to not be there.
|
|
REPORTER_ASSERT(reporter,
|
|
NULL == factory->getGLContext(GrContextFactory::kNative_GLContextType));
|
|
|
|
// After we ask for a context, we expect that the GL context to be there.
|
|
factory->get(GrContextFactory::kNative_GLContextType);
|
|
REPORTER_ASSERT(reporter,
|
|
factory->getGLContext(GrContextFactory::kNative_GLContextType) != NULL);
|
|
|
|
// If we did not ask for a context with the particular GL context, we would
|
|
// expect the particular GL context to not be there.
|
|
REPORTER_ASSERT(reporter,
|
|
NULL == factory->getGLContext(GrContextFactory::kNull_GLContextType));
|
|
}
|
|
|
|
#endif
|