OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2010 The Chromium Authors. All rights reserved. | |
jamesr
2012/11/29 11:17:11
2012
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "cc/gl_renderer_drawcache.h" | |
6 | |
7 TexturedQuadDrawCache::TexturedQuadDrawCache() | |
8 : programID(0) | |
9 { | |
10 } | |
11 | |
12 TexturedQuadDrawCache::~TexturedQuadDrawCache() | |
13 { | |
14 } | |
15 | |
OLD | NEW |