| 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 #include "GrContext.h" |     9 #include "GrContext.h" | 
|    10  |    10  | 
|    11 #include "GrAARectRenderer.h" |    11 #include "GrAARectRenderer.h" | 
|    12 #include "GrBufferAllocPool.h" |    12 #include "GrBufferAllocPool.h" | 
|    13 #include "GrDefaultGeoProcFactory.h" |    13 #include "GrDefaultGeoProcFactory.h" | 
 |    14 #include "GrFontCache.h" | 
|    14 #include "GrGpuResource.h" |    15 #include "GrGpuResource.h" | 
|    15 #include "GrGpuResourceCacheAccess.h" |    16 #include "GrGpuResourceCacheAccess.h" | 
|    16 #include "GrDistanceFieldTextContext.h" |    17 #include "GrDistanceFieldTextContext.h" | 
|    17 #include "GrDrawTargetCaps.h" |    18 #include "GrDrawTargetCaps.h" | 
|    18 #include "GrGpu.h" |    19 #include "GrGpu.h" | 
|    19 #include "GrIndexBuffer.h" |    20 #include "GrIndexBuffer.h" | 
|    20 #include "GrInOrderDrawBuffer.h" |    21 #include "GrInOrderDrawBuffer.h" | 
|    21 #include "GrLayerCache.h" |    22 #include "GrLayerCache.h" | 
|    22 #include "GrOvalRenderer.h" |    23 #include "GrOvalRenderer.h" | 
|    23 #include "GrPathRenderer.h" |    24 #include "GrPathRenderer.h" | 
|    24 #include "GrPathUtils.h" |    25 #include "GrPathUtils.h" | 
|    25 #include "GrResourceCache2.h" |    26 #include "GrResourceCache2.h" | 
|    26 #include "GrSoftwarePathRenderer.h" |    27 #include "GrSoftwarePathRenderer.h" | 
|    27 #include "GrStencilAndCoverTextContext.h" |    28 #include "GrStencilAndCoverTextContext.h" | 
|    28 #include "GrStrokeInfo.h" |    29 #include "GrStrokeInfo.h" | 
|    29 #include "GrSurfacePriv.h" |    30 #include "GrSurfacePriv.h" | 
|    30 #include "GrTextStrike.h" |  | 
|    31 #include "GrTexturePriv.h" |    31 #include "GrTexturePriv.h" | 
|    32 #include "GrTraceMarker.h" |    32 #include "GrTraceMarker.h" | 
|    33 #include "GrTracing.h" |    33 #include "GrTracing.h" | 
|    34 #include "SkDashPathPriv.h" |    34 #include "SkDashPathPriv.h" | 
|    35 #include "SkConfig8888.h" |    35 #include "SkConfig8888.h" | 
|    36 #include "SkGr.h" |    36 #include "SkGr.h" | 
|    37 #include "SkRRect.h" |    37 #include "SkRRect.h" | 
|    38 #include "SkStrokeRec.h" |    38 #include "SkStrokeRec.h" | 
|    39 #include "SkTLazy.h" |    39 #include "SkTLazy.h" | 
|    40 #include "SkTLS.h" |    40 #include "SkTLS.h" | 
| (...skipping 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1712     fResourceCache2->printStats(); |  1712     fResourceCache2->printStats(); | 
|  1713 } |  1713 } | 
|  1714 #endif |  1714 #endif | 
|  1715  |  1715  | 
|  1716 #if GR_GPU_STATS |  1716 #if GR_GPU_STATS | 
|  1717 const GrContext::GPUStats* GrContext::gpuStats() const { |  1717 const GrContext::GPUStats* GrContext::gpuStats() const { | 
|  1718     return fGpu->gpuStats(); |  1718     return fGpu->gpuStats(); | 
|  1719 } |  1719 } | 
|  1720 #endif |  1720 #endif | 
|  1721  |  1721  | 
| OLD | NEW |