aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLExtensions.cpp
blob: b5df2cc9591547eb098efc99f4eecae2e5c16215 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
 * Copyright 2013 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "gl/GrGLExtensions.h"
#include "gl/GrGLDefines.h"
#include "gl/GrGLUtil.h"

bool GrGLExtensions::init(GrGLBinding binding,
                          GrGLGetStringProc getString,
                          GrGLGetStringiProc getStringi,
                          GrGLGetIntegervProc getIntegerv) {
    fStrings.reset();
    if (NULL == getString) {
        return false;
    }
    bool indexed = false;
    if (kDesktop_GrGLBinding == binding) {
        const GrGLubyte* verString = getString(GR_GL_VERSION);
        if (NULL == verString) {
            return false;
        }
        GrGLVersion version = GrGLGetVersionFromString((const char*) verString);
        indexed = version >= GR_GL_VER(3, 0);
    }
    if (indexed) {
        if (NULL == getStringi || NULL == getIntegerv) {
            return false;
        }
        GrGLint extensionCnt = 0;
        getIntegerv(GR_GL_NUM_EXTENSIONS, &extensionCnt);
        fStrings.push_back_n(extensionCnt);
        for (int i = 0; i < extensionCnt; ++i) {
            const char* ext = (const char*) getStringi(GR_GL_EXTENSIONS, i);
            fStrings[i] = ext;
        }
    } else {
        const char* extensions = (const char*) getString(GR_GL_EXTENSIONS);
        if (NULL == extensions) {
            return false;
        }
        // First count the extensions so that we don't cause the array to malloc multiple times.
        int extensionCnt = 1;
        const char* e = (const char*) extensions;
        while (NULL != (e = strchr(e+1, ' '))) {
            e += 1;
            ++extensionCnt;
        }
        fStrings.push_back_n(extensionCnt);
        
        int i = 0;
        while (true) {
            size_t length = strcspn(extensions, " ");
            GrAssert(i < extensionCnt);
            fStrings[i].set(extensions, length);
            ++i;
            if ('\0' == extensions[length]) {
                break;
            }
            extensions += length + 1;
        }
        GrAssert(i == extensionCnt);
    }
    return true;
}

bool GrGLExtensions::has(const char* ext) const {
    // TODO: Sort the extensions and binary search.
    int count = fStrings.count();
    for (int i = 0; i < count; ++i) {
        if (fStrings[i].equals(ext)) {
            return true;
        }
    }
    return false;
}