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

Side by Side Diff: src/gpu/GrAAConvexPathRenderer.cpp

Issue 196133033: replace old SK_TRACE_EVENT macros with new TRACE_EVENT ones (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove old trace events Created 6 years, 9 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 | « include/core/SkTrace.h ('k') | src/gpu/GrContext.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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 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 "GrAAConvexPathRenderer.h" 9 #include "GrAAConvexPathRenderer.h"
10 10
11 #include "GrContext.h" 11 #include "GrContext.h"
12 #include "GrDrawState.h" 12 #include "GrDrawState.h"
13 #include "GrDrawTargetCaps.h" 13 #include "GrDrawTargetCaps.h"
14 #include "GrEffect.h" 14 #include "GrEffect.h"
15 #include "GrPathUtils.h" 15 #include "GrPathUtils.h"
16 #include "GrTBackendEffectFactory.h" 16 #include "GrTBackendEffectFactory.h"
17 #include "SkString.h" 17 #include "SkString.h"
18 #include "SkStrokeRec.h" 18 #include "SkStrokeRec.h"
19 #include "SkTrace.h" 19 #include "SkTraceEvent.h"
20 20
21 #include "gl/GrGLEffect.h" 21 #include "gl/GrGLEffect.h"
22 #include "gl/GrGLSL.h" 22 #include "gl/GrGLSL.h"
23 #include "gl/GrGLVertexEffect.h" 23 #include "gl/GrGLVertexEffect.h"
24 24
25 #include "effects/GrVertexEffect.h" 25 #include "effects/GrVertexEffect.h"
26 26
27 GrAAConvexPathRenderer::GrAAConvexPathRenderer() { 27 GrAAConvexPathRenderer::GrAAConvexPathRenderer() {
28 } 28 }
29 29
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 vOffset, // start vertex 708 vOffset, // start vertex
709 0, // start index 709 0, // start index
710 draw.fVertexCnt, 710 draw.fVertexCnt,
711 draw.fIndexCnt, 711 draw.fIndexCnt,
712 &devBounds); 712 &devBounds);
713 vOffset += draw.fVertexCnt; 713 vOffset += draw.fVertexCnt;
714 } 714 }
715 715
716 return true; 716 return true;
717 } 717 }
OLDNEW
« no previous file with comments | « include/core/SkTrace.h ('k') | src/gpu/GrContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698