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

Unified Diff: cc/gl_renderer_drawcache.cc

Issue 11415161: Texture Draw Calls Coalescing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgot to actually add gl_renderer_drawcache.cc Created 8 years, 1 month 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
Index: cc/gl_renderer_drawcache.cc
diff --git a/cc/gl_renderer_drawcache.cc b/cc/gl_renderer_drawcache.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dbf1667a449abb429ce105b65dab0d81a5169b57
--- /dev/null
+++ b/cc/gl_renderer_drawcache.cc
@@ -0,0 +1,15 @@
+// Copyright 2010 The Chromium Authors. All rights reserved.
jamesr 2012/11/29 11:17:11 2012
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "cc/gl_renderer_drawcache.h"
+
+TexturedQuadDrawCache::TexturedQuadDrawCache()
+ : programID(0)
+{
+}
+
+TexturedQuadDrawCache::~TexturedQuadDrawCache()
+{
+}
+

Powered by Google App Engine
This is Rietveld 408576698