Index: src/gpu/gl/GrGLTransferBuffer.h |
diff --git a/src/gpu/gl/GrGLTransferBuffer.h b/src/gpu/gl/GrGLTransferBuffer.h |
new file mode 100755 |
index 0000000000000000000000000000000000000000..e01d4447df2284d32641cdcf43b22912c6b1ae57 |
--- /dev/null |
+++ b/src/gpu/gl/GrGLTransferBuffer.h |
@@ -0,0 +1,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 |