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

Side by Side Diff: tests/RectangleTextureTest.cpp

Issue 2186073002: Rename GrContext's newDrawContext & drawContext to makeDrawContext (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 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 | « tests/PrimitiveProcessorTest.cpp ('k') | tests/SRGBMipMapTest.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 #include "Test.h" 8 #include "Test.h"
9 #if SK_SUPPORT_GPU 9 #if SK_SUPPORT_GPU
10 #include "GrContext.h" 10 #include "GrContext.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 copySrcDesc, SkBudgeted::kYes, pixels.get(), 0)); 83 copySrcDesc, SkBudgeted::kYes, pixels.get(), 0));
84 84
85 context->copySurface(rectangleTexture, src); 85 context->copySurface(rectangleTexture, src);
86 test_read_pixels(reporter, context, rectangleTexture, pixels.get()); 86 test_read_pixels(reporter, context, rectangleTexture, pixels.get());
87 } 87 }
88 88
89 static void test_clear(skiatest::Reporter* reporter, GrContext* context, 89 static void test_clear(skiatest::Reporter* reporter, GrContext* context,
90 GrTexture* rectangleTexture) { 90 GrTexture* rectangleTexture) {
91 if (rectangleTexture->asRenderTarget()) { 91 if (rectangleTexture->asRenderTarget()) {
92 sk_sp<GrDrawContext> dc( 92 sk_sp<GrDrawContext> dc(
93 context->drawContext(sk_ref_sp(rectangleTexture->asR enderTarget()), 93 context->makeDrawContext(sk_ref_sp(rectangleTexture- >asRenderTarget()),
94 nullptr)); 94 nullptr));
95 if (!dc) { 95 if (!dc) {
96 ERRORF(reporter, "Could not get GrDrawContext for rectangle texture. "); 96 ERRORF(reporter, "Could not get GrDrawContext for rectangle texture. ");
97 return; 97 return;
98 } 98 }
99 99
100 // Clear the whole thing. 100 // Clear the whole thing.
101 GrColor color0 = GrColorPackRGBA(0xA, 0xB, 0xC, 0xD); 101 GrColor color0 = GrColorPackRGBA(0xA, 0xB, 0xC, 0xD);
102 dc->clear(nullptr, color0, false); 102 dc->clear(nullptr, color0, false);
103 103
104 int w = rectangleTexture->width(); 104 int w = rectangleTexture->width();
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 202
203 test_write_pixels(reporter, context, rectangleTexture); 203 test_write_pixels(reporter, context, rectangleTexture);
204 204
205 test_clear(reporter, context, rectangleTexture); 205 test_clear(reporter, context, rectangleTexture);
206 206
207 GR_GL_CALL(glContext->gl(), DeleteTextures(1, &rectTexID)); 207 GR_GL_CALL(glContext->gl(), DeleteTextures(1, &rectTexID));
208 } 208 }
209 } 209 }
210 210
211 #endif 211 #endif
OLDNEW
« no previous file with comments | « tests/PrimitiveProcessorTest.cpp ('k') | tests/SRGBMipMapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698