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

Unified Diff: include/gpu/GrProcessorUnitTest.h

Issue 1997773002: Retract GrRenderTarget from GLProgramsTest (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/gpu/GrDrawContext.h ('k') | src/gpu/effects/GrCoverageSetOpXP.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrProcessorUnitTest.h
diff --git a/include/gpu/GrProcessorUnitTest.h b/include/gpu/GrProcessorUnitTest.h
index 8442d7ef715be50b0b31695613972a292ff007a0..bc90204d2ac0cb3ac07a13f3c7bff1bebb3f0f15 100644
--- a/include/gpu/GrProcessorUnitTest.h
+++ b/include/gpu/GrProcessorUnitTest.h
@@ -15,7 +15,7 @@
class SkMatrix;
class GrCaps;
class GrContext;
-class GrRenderTarget;
+class GrDrawContext;
struct GrProcessorTestData;
namespace GrProcessorUnitTest {
@@ -43,19 +43,19 @@ struct GrProcessorTestData {
GrProcessorTestData(SkRandom* random,
GrContext* context,
const GrCaps* caps,
- const GrRenderTarget* rt,
+ const GrDrawContext* drawContext,
GrTexture* textures[2])
: fRandom(random)
, fContext(context)
, fCaps(caps)
- , fRenderTarget(rt) {
+ , fDrawContext(drawContext) {
fTextures[0] = textures[0];
fTextures[1] = textures[1];
}
SkRandom* fRandom;
GrContext* fContext;
const GrCaps* fCaps;
- const GrRenderTarget* fRenderTarget;
+ const GrDrawContext* fDrawContext;
GrTexture* fTextures[2];
};
« no previous file with comments | « include/gpu/GrDrawContext.h ('k') | src/gpu/effects/GrCoverageSetOpXP.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698