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

Side by Side Diff: gm/image.cpp

Issue 73643005: Implement a benchmark for GrResourceCache (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: address comments Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « gm/gm.cpp ('k') | gm/texdata.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 2011 Google Inc. 2 * Copyright 2011 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 #include "gm.h" 8 #include "gm.h"
9 #include "SkSurface.h" 9 #include "SkSurface.h"
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 sk_bzero(fBuffer, fBufferSize); 179 sk_bzero(fBuffer, fBufferSize);
180 180
181 SkImageInfo info = { 181 SkImageInfo info = {
182 W, H, kPMColor_SkColorType, kPremul_SkAlphaType 182 W, H, kPMColor_SkColorType, kPremul_SkAlphaType
183 }; 183 };
184 SkAutoTUnref<SkSurface> surf0(SkSurface::NewRasterDirect(info, fBuffer, RB)); 184 SkAutoTUnref<SkSurface> surf0(SkSurface::NewRasterDirect(info, fBuffer, RB));
185 SkAutoTUnref<SkSurface> surf1(SkSurface::NewRaster(info)); 185 SkAutoTUnref<SkSurface> surf1(SkSurface::NewRaster(info));
186 SkAutoTUnref<SkSurface> surf2(SkSurface::NewPicture(info.fWidth, info.fH eight)); 186 SkAutoTUnref<SkSurface> surf2(SkSurface::NewPicture(info.fWidth, info.fH eight));
187 SkAutoTUnref<SkSurface> surf3(SkSurface::NewPicture(info.fWidth, info.fH eight)); 187 SkAutoTUnref<SkSurface> surf3(SkSurface::NewPicture(info.fWidth, info.fH eight));
188 #if SK_SUPPORT_GPU 188 #if SK_SUPPORT_GPU
189 GrContext* ctx = GM::GetGr(canvas); 189 GrContext* ctx = canvas->getGrContext();
190 190
191 SkAutoTUnref<SkSurface> surf4(SkSurface::NewRenderTarget(ctx, info, 0)); 191 SkAutoTUnref<SkSurface> surf4(SkSurface::NewRenderTarget(ctx, info, 0));
192 #endif 192 #endif
193 193
194 test_surface(canvas, surf0, true); 194 test_surface(canvas, surf0, true);
195 canvas->translate(80, 0); 195 canvas->translate(80, 0);
196 test_surface(canvas, surf1, true); 196 test_surface(canvas, surf1, true);
197 canvas->translate(80, 0); 197 canvas->translate(80, 0);
198 test_surface(canvas, surf2, true); 198 test_surface(canvas, surf2, true);
199 canvas->translate(80, 0); 199 canvas->translate(80, 0);
(...skipping 11 matching lines...) Expand all
211 } 211 }
212 212
213 private: 213 private:
214 typedef skiagm::GM INHERITED; 214 typedef skiagm::GM INHERITED;
215 }; 215 };
216 216
217 ////////////////////////////////////////////////////////////////////////////// 217 //////////////////////////////////////////////////////////////////////////////
218 218
219 static skiagm::GM* MyFactory(void*) { return new ImageGM; } 219 static skiagm::GM* MyFactory(void*) { return new ImageGM; }
220 static skiagm::GMRegistry reg(MyFactory); 220 static skiagm::GMRegistry reg(MyFactory);
OLDNEW
« no previous file with comments | « gm/gm.cpp ('k') | gm/texdata.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698