Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Unified Diff: src/gpu/gl/GrGLVertexBuffer.h

Issue 808593003: Rename GrGpuGL to GrGLGpu for consistency (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/gl/GrGLVertexArray.cpp ('k') | src/gpu/gl/GrGLVertexBuffer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/GrGLVertexBuffer.h
diff --git a/src/gpu/gl/GrGLVertexBuffer.h b/src/gpu/gl/GrGLVertexBuffer.h
index 40f4af9091a6e3415ec6197f091b38de8daa6b38..ea2e37dfb8c0ef9582674f2a63bba0cee7fa5e21 100644
--- a/src/gpu/gl/GrGLVertexBuffer.h
+++ b/src/gpu/gl/GrGLVertexBuffer.h
@@ -12,14 +12,14 @@
#include "GrGLBufferImpl.h"
#include "gl/GrGLInterface.h"
-class GrGpuGL;
+class GrGLGpu;
class GrGLVertexBuffer : public GrVertexBuffer {
public:
typedef GrGLBufferImpl::Desc Desc;
- GrGLVertexBuffer(GrGpuGL* gpu, const Desc& desc);
+ GrGLVertexBuffer(GrGLGpu* gpu, const Desc& desc);
GrGLuint bufferID() const { return fImpl.bufferID(); }
size_t baseOffset() const { return fImpl.baseOffset(); }
@@ -39,9 +39,9 @@ private:
virtual void onUnmap() SK_OVERRIDE;
virtual bool onUpdateData(const void* src, size_t srcSizeInBytes) SK_OVERRIDE;
- GrGpuGL* getGpuGL() const {
+ GrGLGpu* getGpuGL() const {
SkASSERT(!this->wasDestroyed());
- return (GrGpuGL*)(this->getGpu());
+ return (GrGLGpu*)(this->getGpu());
}
GrGLBufferImpl fImpl;
« no previous file with comments | « src/gpu/gl/GrGLVertexArray.cpp ('k') | src/gpu/gl/GrGLVertexBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698