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" | |
12 #include "GrBatchFontCache.h" | 11 #include "GrBatchFontCache.h" |
13 #include "GrBatchTarget.h" | 12 #include "GrBatchTarget.h" |
14 #include "GrBatchTest.h" | 13 #include "GrBatchTest.h" |
15 #include "GrBufferedDrawTarget.h" | 14 #include "GrBufferedDrawTarget.h" |
16 #include "GrCaps.h" | 15 #include "GrCaps.h" |
17 #include "GrContextOptions.h" | 16 #include "GrContextOptions.h" |
18 #include "GrDefaultGeoProcFactory.h" | 17 #include "GrDefaultGeoProcFactory.h" |
19 #include "GrDrawContext.h" | 18 #include "GrDrawContext.h" |
20 #include "GrGpuResource.h" | 19 #include "GrGpuResource.h" |
21 #include "GrGpuResourcePriv.h" | 20 #include "GrGpuResourcePriv.h" |
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 ////////////////////////////////////////////////////////////////////////////// | 754 ////////////////////////////////////////////////////////////////////////////// |
756 | 755 |
757 void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) { | 756 void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) { |
758 fGpu->addGpuTraceMarker(marker); | 757 fGpu->addGpuTraceMarker(marker); |
759 } | 758 } |
760 | 759 |
761 void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) { | 760 void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) { |
762 fGpu->removeGpuTraceMarker(marker); | 761 fGpu->removeGpuTraceMarker(marker); |
763 } | 762 } |
764 | 763 |
OLD | NEW |