9e90aed5de
BUG=skia:2042 R=jvanverth@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/133413003 git-svn-id: http://skia.googlecode.com/svn/trunk@13108 2bbb7eff-a529-9590-31e7-b0007b416f81
30 lines
891 B
C++
Executable File
30 lines
891 B
C++
Executable File
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Test.h"
|
|
|
|
// This is a GPU-backend specific test
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrContextFactory.h"
|
|
|
|
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
|
|
factory->get(glCtxType);
|
|
SkGLContextHelper* glCtxHelper = factory->getGLContext(glCtxType);
|
|
REPORTER_ASSERT(reporter, NULL != glCtxHelper);
|
|
if (NULL != glCtxHelper) {
|
|
const GrGLInterface* interface = glCtxHelper->gl();
|
|
REPORTER_ASSERT(reporter, interface->validate());
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|