aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu/src/GrGLIndexBuffer.cpp
blob: 82cffaaec489223f45586b6817fc7012f89d61ab (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
    Copyright 2010 Google Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
 */


#include "GrGLIndexBuffer.h"
#include "GrGpuGL.h"

GrGLIndexBuffer::GrGLIndexBuffer(GLuint id, GrGpuGL* gl, uint32_t sizeInBytes,
                                   bool dynamic) : 
                                INHERITED(sizeInBytes, dynamic),
                                fGL(gl),
                                fBufferID(id),
                                fLockPtr(NULL) {
}

GLuint GrGLIndexBuffer::bufferID() const {
    return fBufferID;
}

GrGLIndexBuffer::~GrGLIndexBuffer() {
    // make sure we've not been abandoned
    if (fBufferID) {
        fGL->notifyIndexBufferDelete(this);
        GR_GL(DeleteBuffers(1, &fBufferID));
    }
}

void GrGLIndexBuffer::abandon() {
    fBufferID = 0; 
    fGL = NULL;
    fLockPtr = NULL;
}

void* GrGLIndexBuffer::lock() {
    GrAssert(fBufferID);
    GrAssert(!isLocked());
    if (fGL->supportsBufferLocking()) {
        GR_GL(BindBuffer(GL_ELEMENT_ARRAY_BUFFER, fBufferID));
        fGL->notifyIndexBufferBind(this);
        // call bufferData with null ptr to allow driver to perform renaming
        // If this call is removed revisit updateData to be sure it doesn't
        // leave buffer undersized (as it currently does).
        GR_GL(BufferData(GL_ELEMENT_ARRAY_BUFFER, size(), NULL, 
                         dynamic() ? GL_DYNAMIC_DRAW : GL_STATIC_DRAW));
        fLockPtr = GR_GLEXT(fGL->extensions(),
                            MapBuffer(GL_ELEMENT_ARRAY_BUFFER, GR_WRITE_ONLY));

        return fLockPtr;
    }
    return NULL;
}

void GrGLIndexBuffer::unlock() {
    GrAssert(fBufferID);
    GrAssert(isLocked());

    if (fGL->supportsBufferLocking()) {
        GR_GL(BindBuffer(GL_ELEMENT_ARRAY_BUFFER, fBufferID));
        fGL->notifyIndexBufferBind(this);
        GR_GLEXT(fGL->extensions(),
                 UnmapBuffer(GL_ELEMENT_ARRAY_BUFFER));
        fLockPtr = NULL;
    }
}

bool GrGLIndexBuffer::isLocked() const {
    GrAssert(fBufferID);
#if GR_DEBUG
    if (fGL->supportsBufferLocking()) {
        GLint mapped;
        GR_GL(BindBuffer(GL_ELEMENT_ARRAY_BUFFER, fBufferID));
        fGL->notifyIndexBufferBind(this);
        GR_GL(GetBufferParameteriv(GL_ELEMENT_ARRAY_BUFFER, 
                                   GR_BUFFER_MAPPED, &mapped));
        GrAssert(!!mapped == !!fLockPtr);
    }
#endif
    return NULL != fLockPtr;
}

bool GrGLIndexBuffer::updateData(const void* src, uint32_t srcSizeInBytes) {
    GrAssert(fBufferID);
    GrAssert(!isLocked());
    if (srcSizeInBytes > size()) {
        return false;
    }
    GR_GL(BindBuffer(GL_ELEMENT_ARRAY_BUFFER, fBufferID));
    fGL->notifyIndexBufferBind(this);
    GR_GL(BufferData(GL_ELEMENT_ARRAY_BUFFER, srcSizeInBytes, src, 
                     dynamic() ? GL_DYNAMIC_DRAW : GL_STATIC_DRAW));
    return true;
}