aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/debug/GrVertexArrayObj.h
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-01 14:37:18 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-01 14:37:18 +0000
commit87c6d7a99ee7fee2dcc537a1ccad95fc5a9bd26b (patch)
tree377d1aeefc8544c6ce37228de684e9bf89ad5f73 /src/gpu/gl/debug/GrVertexArrayObj.h
parent6dd683a4352b91505d915722d18f4a726b5615a2 (diff)
Add support to GrGLInterface for vertex array objects
Review URL: https://codereview.chromium.org/12379025 git-svn-id: http://skia.googlecode.com/svn/trunk@7919 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl/debug/GrVertexArrayObj.h')
-rw-r--r--src/gpu/gl/debug/GrVertexArrayObj.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gpu/gl/debug/GrVertexArrayObj.h b/src/gpu/gl/debug/GrVertexArrayObj.h
new file mode 100644
index 0000000000..989c610924
--- /dev/null
+++ b/src/gpu/gl/debug/GrVertexArrayObj.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2013 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef GrVertexArrayObj_DEFINED
+#define GrVertexArrayObj_DEFINED
+
+#include "GrFakeRefObj.h"
+
+class GrVertexArrayObj : public GrFakeRefObj {
+ GR_DEFINE_CREATOR(GrVertexArrayObj);
+
+public:
+ GrVertexArrayObj() : GrFakeRefObj() {}
+
+ typedef GrFakeRefObj INHERITED;
+};
+#endif