aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpu/GrTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gpu/GrTest.h')
-rw-r--r--tools/gpu/GrTest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gpu/GrTest.h b/tools/gpu/GrTest.h
index 86333b4f6c..a991c21bb2 100644
--- a/tools/gpu/GrTest.h
+++ b/tools/gpu/GrTest.h
@@ -9,7 +9,7 @@
#define GrTest_DEFINED
#include "GrContext.h"
-#include "GrDrawContext.h"
+#include "GrRenderTargetContext.h"
namespace GrTest {
/**
@@ -27,13 +27,13 @@ class GrTestTarget {
public:
GrTestTarget() {}
- void init(GrContext*, sk_sp<GrDrawContext>);
+ void init(GrContext*, sk_sp<GrRenderTargetContext>);
GrResourceProvider* resourceProvider() { return fContext->resourceProvider(); }
private:
SkAutoTUnref<GrContext> fContext;
- sk_sp<GrDrawContext> fDrawContext;
+ sk_sp<GrRenderTargetContext> fRenderTargetContext;
};
#endif