aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/VkWrapTests.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2016-05-11 06:33:06 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-11 06:33:06 -0700
commit8b7451aaf6b1c71e9d343a4df107893db277b6aa (patch)
treeb1416c3e9a154a74ff004135d41b5eefd68c0ed9 /tests/VkWrapTests.cpp
parent70142347f7b4ef49745e828d93026fc153a72845 (diff)
Turn ContextInfos returned by GrContextFactory into structs.
Diffstat (limited to 'tests/VkWrapTests.cpp')
-rw-r--r--tests/VkWrapTests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/VkWrapTests.cpp b/tests/VkWrapTests.cpp
index 626ee4c4b1..e81ebf5f17 100644
--- a/tests/VkWrapTests.cpp
+++ b/tests/VkWrapTests.cpp
@@ -159,9 +159,9 @@ void wrap_trt_test(skiatest::Reporter* reporter, GrContext* context) {
}
DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkWrapTests, reporter, ctxInfo) {
- wrap_tex_test(reporter, ctxInfo.fGrContext);
- wrap_rt_test(reporter, ctxInfo.fGrContext);
- wrap_trt_test(reporter, ctxInfo.fGrContext);
+ wrap_tex_test(reporter, ctxInfo.grContext());
+ wrap_rt_test(reporter, ctxInfo.grContext());
+ wrap_trt_test(reporter, ctxInfo.grContext());
}
#endif