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

Side by Side Diff: tests/ReadWriteAlphaTest.cpp

Issue 22978012: Split SkDevice into SkBaseDevice and SkBitmapDevice (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Updating to ToT (10994) Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « tests/ReadPixelsTest.cpp ('k') | tests/TileGridTest.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 // This test is specific to the GPU backend. 9 // This test is specific to the GPU backend.
10 #if SK_SUPPORT_GPU && !defined(SK_BUILD_FOR_ANDROID) 10 #if SK_SUPPORT_GPU && !defined(SK_BUILD_FOR_ANDROID)
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 for (int x = 0; x < X_SIZE; ++x) { 75 for (int x = 0; x < X_SIZE; ++x) {
76 if (textureData[x][y] != readback[x][y]) { 76 if (textureData[x][y] != readback[x][y]) {
77 match = false; 77 match = false;
78 } 78 }
79 } 79 }
80 } 80 }
81 81
82 REPORTER_ASSERT(reporter, match); 82 REPORTER_ASSERT(reporter, match);
83 83
84 // Now try writing on the single channel texture 84 // Now try writing on the single channel texture
85 SkAutoTUnref<SkDevice> device(new SkGpuDevice(context, texture->asRender Target())); 85 SkAutoTUnref<SkBaseDevice> device(new SkGpuDevice(context, texture->asRe nderTarget()));
86 SkCanvas canvas(device); 86 SkCanvas canvas(device);
87 87
88 SkPaint paint; 88 SkPaint paint;
89 89
90 const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10, Y_SIZE + 10) ; 90 const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10, Y_SIZE + 10) ;
91 91
92 paint.setColor(SK_ColorWHITE); 92 paint.setColor(SK_ColorWHITE);
93 93
94 canvas.drawRect(rect, paint); 94 canvas.drawRect(rect, paint);
95 95
(...skipping 11 matching lines...) Expand all
107 } 107 }
108 108
109 REPORTER_ASSERT(reporter, match); 109 REPORTER_ASSERT(reporter, match);
110 } 110 }
111 } 111 }
112 112
113 #include "TestClassDef.h" 113 #include "TestClassDef.h"
114 DEFINE_GPUTESTCLASS("ReadWriteAlpha", ReadWriteAlphaTestClass, ReadWriteAlphaTes t) 114 DEFINE_GPUTESTCLASS("ReadWriteAlpha", ReadWriteAlphaTestClass, ReadWriteAlphaTes t)
115 115
116 #endif 116 #endif
OLDNEW
« no previous file with comments | « tests/ReadPixelsTest.cpp ('k') | tests/TileGridTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698