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

Side by Side Diff: tools/VisualBench/VisualBench.h

Issue 1298213002: Add skeleton json support to visualbench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: feedback inc Created 5 years, 4 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 | « gyp/visualbench.gyp ('k') | tools/VisualBench/VisualBench.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 8
9 #ifndef VisualBench_DEFINED 9 #ifndef VisualBench_DEFINED
10 #define VisualBench_DEFINED 10 #define VisualBench_DEFINED
11 11
12 #include "SkWindow.h" 12 #include "SkWindow.h"
13 13
14 #include "ResultsWriter.h"
14 #include "SkPicture.h" 15 #include "SkPicture.h"
15 #include "SkString.h" 16 #include "SkString.h"
16 #include "SkSurface.h" 17 #include "SkSurface.h"
17 #include "Timer.h" 18 #include "Timer.h"
18 #include "VisualBenchmarkStream.h" 19 #include "VisualBenchmarkStream.h"
19 #include "gl/SkGLContext.h" 20 #include "gl/SkGLContext.h"
20 21
21 class GrContext; 22 class GrContext;
22 struct GrGLInterface; 23 struct GrGLInterface;
23 class GrRenderTarget; 24 class GrRenderTarget;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 State fState; 100 State fState;
100 SkAutoTDelete<VisualBenchmarkStream> fBenchmarkStream; 101 SkAutoTDelete<VisualBenchmarkStream> fBenchmarkStream;
101 SkAutoTUnref<Benchmark> fBenchmark; 102 SkAutoTUnref<Benchmark> fBenchmark;
102 103
103 // support framework 104 // support framework
104 SkAutoTUnref<SkSurface> fSurface; 105 SkAutoTUnref<SkSurface> fSurface;
105 SkAutoTUnref<GrContext> fContext; 106 SkAutoTUnref<GrContext> fContext;
106 SkAutoTUnref<GrRenderTarget> fRenderTarget; 107 SkAutoTUnref<GrRenderTarget> fRenderTarget;
107 AttachmentInfo fAttachmentInfo; 108 AttachmentInfo fAttachmentInfo;
108 SkAutoTUnref<const GrGLInterface> fInterface; 109 SkAutoTUnref<const GrGLInterface> fInterface;
110 SkAutoTDelete<ResultsWriter> fResults;
109 111
110 typedef SkOSWindow INHERITED; 112 typedef SkOSWindow INHERITED;
111 }; 113 };
112 114
113 #endif 115 #endif
OLDNEW
« no previous file with comments | « gyp/visualbench.gyp ('k') | tools/VisualBench/VisualBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698