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

Side by Side Diff: src/gpu/gl/debug/GrTextureUnitObj.h

Issue 18131007: Fix header guard typos. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « include/utils/SkPathUtils.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1
2 /* 1 /*
3 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
4 * 3 *
5 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
8 7
9 #ifndef GrTextreUnitObj_DEFINED 8 #ifndef GrTextureUnitObj_DEFINED
10 #define GrTextureUnitObj_DEFINED 9 #define GrTextureUnitObj_DEFINED
11 10
12 #include "GrFakeRefObj.h" 11 #include "GrFakeRefObj.h"
13 class GrTextureObj; 12 class GrTextureObj;
14 13
15 //////////////////////////////////////////////////////////////////////////////// 14 ////////////////////////////////////////////////////////////////////////////////
16 // Although texture unit objects are allocated & deallocated like the other 15 // Although texture unit objects are allocated & deallocated like the other
17 // GL emulation objects they are derived from GrFakeRefObj to provide some 16 // GL emulation objects they are derived from GrFakeRefObj to provide some
18 // uniformity in how the GrDebugGL class manages resources 17 // uniformity in how the GrDebugGL class manages resources
19 class GrTextureUnitObj : public GrFakeRefObj { 18 class GrTextureUnitObj : public GrFakeRefObj {
(...skipping 16 matching lines...) Expand all
36 35
37 protected: 36 protected:
38 private: 37 private:
39 GrGLenum fNumber; 38 GrGLenum fNumber;
40 GrTextureObj *fTexture; 39 GrTextureObj *fTexture;
41 40
42 typedef GrFakeRefObj INHERITED; 41 typedef GrFakeRefObj INHERITED;
43 }; 42 };
44 43
45 #endif // GrTextureUnitObj_DEFINED 44 #endif // GrTextureUnitObj_DEFINED
OLDNEW
« no previous file with comments | « include/utils/SkPathUtils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698