aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GLInterfaceValidation.cpp
blob: a4709ba104aca28b3bf820cdb611030e63dd04e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

/*
 * 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"

static void GLInterfaceValidationTest(skiatest::Reporter* reporter, GrContextFactory* 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();
            for (GrGLBinding binding = kFirstGrGLBinding;
                 binding <= kLastGrGLBinding;
                 binding = static_cast<GrGLBinding>(binding << 1)) {
                if (interface->fBindingsExported & binding) {
                    REPORTER_ASSERT(reporter, interface->validate(binding));
                }
            }
        }
    }
}


#include "TestClassDef.h"
DEFINE_GPUTESTCLASS("GLInterfaceValidation",
                    GLInterfaceValidationTestClass,
                    GLInterfaceValidationTest)

#endif