2011-08-16 15:45:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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"
|
2012-02-10 21:35:06 +00:00
|
|
|
#include "gl/GrGpuGLShaders.h"
|
2011-08-16 15:45:58 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
|