aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLTransferBuffer.h
blob: e01d4447df2284d32641cdcf43b22912c6b1ae57 (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
/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrGLTransferBuffer_DEFINED
#define GrGLTransferBuffer_DEFINED

#include "GrTransferBuffer.h"
#include "GrGLBufferImpl.h"
#include "gl/GrGLInterface.h"

class GrGLGpu;

class GrGLTransferBuffer : public GrTransferBuffer {

public:
    typedef GrGLBufferImpl::Desc Desc;

    GrGLTransferBuffer(GrGLGpu* gpu, const Desc& desc, GrGLenum type);

    GrGLuint bufferID() const { return fImpl.bufferID(); }
    size_t baseOffset() const { return fImpl.baseOffset(); }
    GrGLenum bufferType() const { return fImpl.bufferType(); }

protected:
    void onAbandon() override;
    void onRelease() override;
    void setMemoryBacking(SkTraceMemoryDump* traceMemoryDump,
                          const SkString& dumpName) const override;

private:
    void* onMap() override;
    void onUnmap() override;

    GrGLGpu* getGpuGL() const {
        SkASSERT(!this->wasDestroyed());
        return (GrGLGpu*)(this->getGpu());
    }

    GrGLBufferImpl fImpl;

    typedef GrTransferBuffer INHERITED;
};

#endif