From a8d9211bc3f34fcb3cf331d8fd76e4ea5803fe20 Mon Sep 17 00:00:00 2001 From: Greg Daniel Date: Fri, 9 Mar 2018 12:05:04 -0500 Subject: Add promise images for deferred instantiation of wrapped gpu textures This will allow a client to make an SkImage that "wraps" a gpu texture, however the client does need to supply the actual gpu texture at Image creation time. Instead it is retrieve at flush time via a callback. Bug: skia: Change-Id: I6267a55ab7102101a7bd80a6f547b6a870d2df08 Reviewed-on: https://skia-review.googlesource.com/109021 Commit-Queue: Greg Daniel Reviewed-by: Robert Phillips Reviewed-by: Cary Clark --- tests/DeferredDisplayListTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/DeferredDisplayListTest.cpp') diff --git a/tests/DeferredDisplayListTest.cpp b/tests/DeferredDisplayListTest.cpp index b0c80c32ef..6700ba5570 100644 --- a/tests/DeferredDisplayListTest.cpp +++ b/tests/DeferredDisplayListTest.cpp @@ -42,9 +42,9 @@ static GrBackendFormat create_backend_format(GrContext* context, SkColorType col if (kRGBA_8888_SkColorType == colorType) { VkFormat format = caps->srgbSupport() ? VK_FORMAT_R8G8B8A8_SRGB : VK_FORMAT_R8G8B8A8_UNORM; - return GrBackendFormat::MakeVK(format); + return GrBackendFormat::MakeVk(format); } else if (kRGBA_F16_SkColorType == colorType) { - return GrBackendFormat::MakeVK(VK_FORMAT_R16G16B16A16_SFLOAT); + return GrBackendFormat::MakeVk(VK_FORMAT_R16G16B16A16_SFLOAT); } break; #endif -- cgit v1.2.3