4072556641
git-svn-id: http://skia.googlecode.com/svn/trunk@3166 2bbb7eff-a529-9590-31e7-b0007b416f81
22 lines
532 B
C++
22 lines
532 B
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.
|
|
*/
|
|
|
|
#include "Test.h"
|
|
#include "GrContext.h"
|
|
#include "gl/GrGpuGLShaders.h"
|
|
|
|
static void GLProgramsTest(skiatest::Reporter* reporter, GrContext* context) {
|
|
GrGpuGLShaders* shadersGpu = (GrGpuGLShaders*) context->getGpu();
|
|
REPORTER_ASSERT(reporter, shadersGpu->programUnitTest());
|
|
}
|
|
|
|
|
|
#include "TestClassDef.h"
|
|
DEFINE_GPUTESTCLASS("GLPrograms", GLProgramsTestClass, GLProgramsTest)
|
|
|