blob: 5cacadefe3c5647be899ce3d00d17fc2cc8b8c0c [file] [log] [blame]
bsalomon@google.coma8e686e2011-08-16 15:45:58 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#include "Test.h"
10#include "GrContext.h"
11#include "GrGpuGLShaders.h"
12
13static void GLProgramsTest(skiatest::Reporter* reporter, GrContext* context) {
14 GrGpuGLShaders* shadersGpu = (GrGpuGLShaders*) context->getGpu();
15 REPORTER_ASSERT(reporter, shadersGpu->programUnitTest());
16}
17
18
19#include "TestClassDef.h"
20DEFINE_GPUTESTCLASS("GLPrograms", GLProgramsTestClass, GLProgramsTest)
21