aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLVertexArray.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-12-16 07:33:49 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-16 07:33:50 -0800
commit861e1037017bbb7ac52ec5ebecab3a636a82a3e8 (patch)
treeba74afb4f14b209b733892c17a02b5c1c99ead24 /src/gpu/gl/GrGLVertexArray.h
parent702eb9622102599d94ab6798e6227cf29f48c2d3 (diff)
Rename GrGpuGL to GrGLGpu for consistency
Diffstat (limited to 'src/gpu/gl/GrGLVertexArray.h')
-rw-r--r--src/gpu/gl/GrGLVertexArray.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpu/gl/GrGLVertexArray.h b/src/gpu/gl/GrGLVertexArray.h
index e5032a9ea0..792fd940e7 100644
--- a/src/gpu/gl/GrGLVertexArray.h
+++ b/src/gpu/gl/GrGLVertexArray.h
@@ -17,7 +17,7 @@
class GrGLVertexBuffer;
class GrGLIndexBuffer;
-class GrGpuGL;
+class GrGLGpu;
struct GrGLAttribLayout {
GrGLint fCount;
@@ -67,7 +67,7 @@ public:
* assumed that the GrGLAttribArrayState is tracking the state of the currently bound vertex
* array object.
*/
- void set(const GrGpuGL*,
+ void set(const GrGLGpu*,
int index,
GrGLVertexBuffer*,
GrGLint size,
@@ -80,7 +80,7 @@ public:
* This function disables vertex attribs not present in the mask. It is assumed that the
* GrGLAttribArrayState is tracking the state of the currently bound vertex array object.
*/
- void disableUnusedArrays(const GrGpuGL*, uint64_t usedAttribArrayMask);
+ void disableUnusedArrays(const GrGLGpu*, uint64_t usedAttribArrayMask);
void invalidate() {
int count = fAttribArrayStates.count();
@@ -134,7 +134,7 @@ private:
*/
class GrGLVertexArray : public GrGpuResource {
public:
- GrGLVertexArray(GrGpuGL* gpu, GrGLint id, int attribCount);
+ GrGLVertexArray(GrGLGpu* gpu, GrGLint id, int attribCount);
/**
* Binds this vertex array. If the ID has been deleted or abandoned then NULL is returned.