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

Side by Side Diff: tests/WritePixelsTest.cpp

Issue 1728093005: Move Budgeted enum out of SkSurface, use in GrTextureProvider (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add aliases for Chrome Created 4 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 | « tests/TextureStorageAllocator.cpp ('k') | tools/VisualBench/WrappedBenchmark.h » ('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 "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkColorPriv.h" 9 #include "SkColorPriv.h"
10 #include "SkMathPriv.h" 10 #include "SkMathPriv.h"
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 } 406 }
407 #if SK_SUPPORT_GPU 407 #if SK_SUPPORT_GPU
408 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixels_Gpu, reporter, context) { 408 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixels_Gpu, reporter, context) {
409 for (auto& origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) { 409 for (auto& origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
410 GrSurfaceDesc desc; 410 GrSurfaceDesc desc;
411 desc.fFlags = kRenderTarget_GrSurfaceFlag; 411 desc.fFlags = kRenderTarget_GrSurfaceFlag;
412 desc.fWidth = DEV_W; 412 desc.fWidth = DEV_W;
413 desc.fHeight = DEV_H; 413 desc.fHeight = DEV_H;
414 desc.fConfig = kSkia8888_GrPixelConfig; 414 desc.fConfig = kSkia8888_GrPixelConfig;
415 desc.fOrigin = origin; 415 desc.fOrigin = origin;
416 SkAutoTUnref<GrTexture> texture(context->textureProvider()->createTextur e(desc, false)); 416 SkAutoTUnref<GrTexture> texture(context->textureProvider()->createTextur e(desc,
417 SkBudgeted::kNo));
417 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTargetDirect(texture ->asRenderTarget())); 418 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTargetDirect(texture ->asRenderTarget()));
418 test_write_pixels(reporter, surface); 419 test_write_pixels(reporter, surface);
419 } 420 }
420 } 421 }
421 #endif 422 #endif
OLDNEW
« no previous file with comments | « tests/TextureStorageAllocator.cpp ('k') | tools/VisualBench/WrappedBenchmark.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698