c428f4dbcdeedf3c1e208be979329342078957e9
[platform/upstream/libSkiaSharp.git] / src / gpu / gl / GrGLVertexBuffer.h
1 /*
2  * Copyright 2011 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7
8 #ifndef GrGLVertexBuffer_DEFINED
9 #define GrGLVertexBuffer_DEFINED
10
11 #include "GrVertexBuffer.h"
12 #include "GrGLBufferImpl.h"
13 #include "gl/GrGLInterface.h"
14
15 class GrGLGpu;
16
17 class GrGLVertexBuffer : public GrVertexBuffer {
18
19 public:
20     typedef GrGLBufferImpl::Desc Desc;
21
22     GrGLVertexBuffer(GrGLGpu* gpu, const Desc& desc);
23
24     GrGLuint bufferID() const { return fImpl.bufferID(); }
25     size_t baseOffset() const { return fImpl.baseOffset(); }
26
27     void bind() const {
28         if (!this->wasDestroyed()) {
29             fImpl.bind(this->getGpuGL());
30         }
31     }
32
33 protected:
34     void onAbandon() SK_OVERRIDE;
35     void onRelease() SK_OVERRIDE;
36
37 private:
38     void* onMap() SK_OVERRIDE;
39     void onUnmap() SK_OVERRIDE;
40     bool onUpdateData(const void* src, size_t srcSizeInBytes) SK_OVERRIDE;
41
42     GrGLGpu* getGpuGL() const {
43         SkASSERT(!this->wasDestroyed());
44         return (GrGLGpu*)(this->getGpu());
45     }
46
47     GrGLBufferImpl fImpl;
48
49     typedef GrVertexBuffer INHERITED;
50 };
51
52 #endif