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

Side by Side Diff: tests/BitmapCopyTest.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 | « src/utils/SkImageGeneratorUtils.cpp ('k') | tests/BlurTest.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 "SkBitmap.h" 8 #include "SkBitmap.h"
9 #include "SkRect.h" 9 #include "SkRect.h"
10 #include "SkTemplates.h" 10 #include "SkTemplates.h"
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 GrSurfaceDesc desc; 660 GrSurfaceDesc desc;
661 desc.fConfig = kSrcConfigs[srcC]; 661 desc.fConfig = kSrcConfigs[srcC];
662 desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlag s; 662 desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlag s;
663 desc.fWidth = 2; 663 desc.fWidth = 2;
664 desc.fHeight = 2; 664 desc.fHeight = 2;
665 desc.fOrigin = kTopLeft_GrSurfaceOrigin; 665 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
666 666
667 const void* srcData = (kSkia8888_GrPixelConfig == desc.fConfig) ? kD ata : swizData; 667 const void* srcData = (kSkia8888_GrPixelConfig == desc.fConfig) ? kD ata : swizData;
668 668
669 SkAutoTUnref<GrTexture> texture( 669 SkAutoTUnref<GrTexture> texture(
670 ctx->textureProvider()->createTexture(desc, false, srcData, 0)); 670 ctx->textureProvider()->createTexture(desc, SkBudgeted::kNo, src Data, 0));
671 671
672 if (!texture) { 672 if (!texture) {
673 continue; 673 continue;
674 } 674 }
675 675
676 SkBitmap srcBmp; 676 SkBitmap srcBmp;
677 GrWrapTextureInBitmap(texture, 2, 2, false, &srcBmp); 677 GrWrapTextureInBitmap(texture, 2, 2, false, &srcBmp);
678 if (srcBmp.isNull()) { 678 if (srcBmp.isNull()) {
679 ERRORF(reporter, "Could not wrap texture in bitmap."); 679 ERRORF(reporter, "Could not wrap texture in bitmap.");
680 continue; 680 continue;
(...skipping 28 matching lines...) Expand all
709 } 709 }
710 } 710 }
711 dstBmpPixels += dstBmp.rowBytes(); 711 dstBmpPixels += dstBmp.rowBytes();
712 } 712 }
713 } 713 }
714 } 714 }
715 } 715 }
716 } 716 }
717 717
718 #endif 718 #endif
OLDNEW
« no previous file with comments | « src/utils/SkImageGeneratorUtils.cpp ('k') | tests/BlurTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698