aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/TessellatingPathRendererTests.cpp
diff options
context:
space:
mode:
authorGravatar Greg Daniel <egdaniel@google.com>2017-08-25 11:55:50 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-08-25 17:03:07 +0000
commit6888c0d40c35a8f09e40a26d8ebd0053ce2faf66 (patch)
treeb74cf1ef190e5afe95f0f14041ea46dbeb1d83c1 /tests/TessellatingPathRendererTests.cpp
parentddaae009e503480275ff2df429c109837c04812c (diff)
Add support for vkCmdCopyBuffer
This is then used when need to update GPU only buffers with data of size greater than 65536. We create a temporary transfer buffer and then copy that buffer into our GPU buffer. Bug: skia: Change-Id: I4bb9cb660f2ac1ccbbd1b508bb4ca6876342136f Reviewed-on: https://skia-review.googlesource.com/38725 Reviewed-by: Jim Van Verth <jvanverth@google.com> Commit-Queue: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'tests/TessellatingPathRendererTests.cpp')
-rw-r--r--tests/TessellatingPathRendererTests.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/TessellatingPathRendererTests.cpp b/tests/TessellatingPathRendererTests.cpp
index 78704d94b4..0ae5d55bda 100644
--- a/tests/TessellatingPathRendererTests.cpp
+++ b/tests/TessellatingPathRendererTests.cpp
@@ -454,9 +454,6 @@ DEF_GPUTEST_FOR_ALL_CONTEXTS(TessellatingPathRendererTests, reporter, ctxInfo) {
test_path(ctx, rtc.get(), create_path_21(), SkMatrix(), GrAAType::kCoverage);
test_path(ctx, rtc.get(), create_path_22());
test_path(ctx, rtc.get(), create_path_23());
- // TODO: implement large buffer uploads in VK and remove this check.
- if (ctx->contextPriv().getBackend() != kVulkan_GrBackend) {
- test_path(ctx, rtc.get(), create_path_24());
- }
+ test_path(ctx, rtc.get(), create_path_24());
}
#endif