summaryrefslogtreecommitdiff
path: root/gpu/gl/GrGLIndexBuffer.cpp
blob: b6290b1826b222da016ab629aa392d91c47f2fb6 (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
/*
 * 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 "GrGLIndexBuffer.h"
#include "GrGpuGL.h"

GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc)
    : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
    , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) {
}

void GrGLIndexBuffer::onRelease() {
    if (this->isValid()) {
        fImpl.release(this->getGpuGL());
    }

    INHERITED::onRelease();
}

void GrGLIndexBuffer::onAbandon() {
    fImpl.abandon();
    INHERITED::onAbandon();
}

void* GrGLIndexBuffer::lock() {
    if (this->isValid()) {
        return fImpl.lock(this->getGpuGL());
    } else {
        return NULL;
    }
}

void* GrGLIndexBuffer::lockPtr() const {
    return fImpl.lockPtr();
}

void GrGLIndexBuffer::unlock() {
    if (this->isValid()) {
        fImpl.unlock(this->getGpuGL());
    }
}

bool GrGLIndexBuffer::isLocked() const {
    return fImpl.isLocked();
}

bool GrGLIndexBuffer::updateData(const void* src, size_t srcSizeInBytes) {
    if (this->isValid()) {
        return fImpl.updateData(this->getGpuGL(), src, srcSizeInBytes);
    } else {
        return false;
    }
}