OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 | 9 |
10 #include "GrContext.h" | 10 #include "GrContext.h" |
11 | 11 |
12 #include "effects/GrSingleTextureEffect.h" | 12 #include "effects/GrSingleTextureEffect.h" |
13 #include "effects/GrConfigConversionEffect.h" | 13 #include "effects/GrConfigConversionEffect.h" |
14 | 14 |
| 15 #include "GrAARectRenderer.h" |
15 #include "GrBufferAllocPool.h" | 16 #include "GrBufferAllocPool.h" |
16 #include "GrGpu.h" | 17 #include "GrGpu.h" |
17 #include "GrDrawTargetCaps.h" | 18 #include "GrDrawTargetCaps.h" |
18 #include "GrIndexBuffer.h" | 19 #include "GrIndexBuffer.h" |
19 #include "GrInOrderDrawBuffer.h" | 20 #include "GrInOrderDrawBuffer.h" |
20 #include "GrOvalRenderer.h" | 21 #include "GrOvalRenderer.h" |
21 #include "GrPathRenderer.h" | 22 #include "GrPathRenderer.h" |
22 #include "GrPathUtils.h" | 23 #include "GrPathUtils.h" |
23 #include "GrResourceCache.h" | 24 #include "GrResourceCache.h" |
24 #include "GrSoftwarePathRenderer.h" | 25 #include "GrSoftwarePathRenderer.h" |
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1742 return NULL; | 1743 return NULL; |
1743 } | 1744 } |
1744 } | 1745 } |
1745 | 1746 |
1746 /////////////////////////////////////////////////////////////////////////////// | 1747 /////////////////////////////////////////////////////////////////////////////// |
1747 #if GR_CACHE_STATS | 1748 #if GR_CACHE_STATS |
1748 void GrContext::printCacheStats() const { | 1749 void GrContext::printCacheStats() const { |
1749 fTextureCache->printStats(); | 1750 fTextureCache->printStats(); |
1750 } | 1751 } |
1751 #endif | 1752 #endif |
OLD | NEW |