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

Side by Side Diff: src/image/SkImage_Gpu.h

Issue 1373253003: Have /src files use header directly. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « src/image/SkImage_Base.h ('k') | src/utils/SkEventTracer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * 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
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkImage_Gpu_DEFINED 8 #ifndef SkImage_Gpu_DEFINED
9 #define SkImage_Gpu_DEFINED 9 #define SkImage_Gpu_DEFINED
10 10
11 #include "../private/SkAtomics.h" 11 #include "SkAtomics.h"
12 #include "GrTexture.h" 12 #include "GrTexture.h"
13 #include "GrGpuResourcePriv.h" 13 #include "GrGpuResourcePriv.h"
14 #include "SkBitmap.h" 14 #include "SkBitmap.h"
15 #include "SkImage_Base.h" 15 #include "SkImage_Base.h"
16 #include "SkImagePriv.h" 16 #include "SkImagePriv.h"
17 #include "SkSurface.h" 17 #include "SkSurface.h"
18 18
19 class SkImage_Gpu : public SkImage_Base { 19 class SkImage_Gpu : public SkImage_Base {
20 public: 20 public:
21 /** 21 /**
(...skipping 29 matching lines...) Expand all
51 SkAutoTUnref<GrTexture> fTexture; 51 SkAutoTUnref<GrTexture> fTexture;
52 const SkAlphaType fAlphaType; 52 const SkAlphaType fAlphaType;
53 const SkSurface::Budgeted fBudgeted; 53 const SkSurface::Budgeted fBudgeted;
54 mutable SkAtomic<bool> fAddedRasterVersionToCache; 54 mutable SkAtomic<bool> fAddedRasterVersionToCache;
55 55
56 56
57 typedef SkImage_Base INHERITED; 57 typedef SkImage_Base INHERITED;
58 }; 58 };
59 59
60 #endif 60 #endif
OLDNEW
« no previous file with comments | « src/image/SkImage_Base.h ('k') | src/utils/SkEventTracer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698