diff options
Diffstat (limited to 'tools/viewer/sk_app/VulkanWindowContext.cpp')
-rw-r--r-- | tools/viewer/sk_app/VulkanWindowContext.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/viewer/sk_app/VulkanWindowContext.cpp b/tools/viewer/sk_app/VulkanWindowContext.cpp index 898710f109..b4e6676335 100644 --- a/tools/viewer/sk_app/VulkanWindowContext.cpp +++ b/tools/viewer/sk_app/VulkanWindowContext.cpp @@ -276,7 +276,9 @@ void VulkanWindowContext::createBuffers(VkFormat format) { desc.fStencilBits = 0; desc.fRenderTargetHandle = (GrBackendObject) &info; - fSurfaces[i] = this->createRenderSurface(desc, 24); + fSurfaces[i] = SkSurface::MakeFromBackendRenderTarget(fContext, desc, + fDisplayParams.fColorSpace, + &fSurfaceProps); } // create the command pool for the command buffers |