| Index: src/gpu/vk/GrVkTexture.cpp
|
| diff --git a/src/gpu/vk/GrVkTexture.cpp b/src/gpu/vk/GrVkTexture.cpp
|
| index 5c4c3bd6c757b72a272eb54d70659251ae57c921..5b1c78ea45d97ab66e38d2c99fc72368c0ce9a9e 100644
|
| --- a/src/gpu/vk/GrVkTexture.cpp
|
| +++ b/src/gpu/vk/GrVkTexture.cpp
|
| @@ -10,6 +10,8 @@
|
| #include "GrVkImageView.h"
|
| #include "GrVkUtil.h"
|
|
|
| +#include "vk/GrVkTypes.h"
|
| +
|
| #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
|
|
|
| // Because this class is virtually derived from GrSurface we must explicitly call its constructor.
|
| @@ -75,12 +77,25 @@ GrVkTexture* GrVkTexture::CreateNewTexture(GrVkGpu* gpu, const GrSurfaceDesc& de
|
| GrVkTexture* GrVkTexture::CreateWrappedTexture(GrVkGpu* gpu, const GrSurfaceDesc& desc,
|
| GrGpuResource::LifeCycle lifeCycle,
|
| VkFormat format,
|
| - const GrVkImage::Resource* imageResource) {
|
| - SkASSERT(imageResource);
|
| + const GrVkTextureInfo* info) {
|
| + // Wrapped textures require both image and allocation
|
| + SkASSERT(info->fImage && info->fAlloc);
|
| +
|
| + GrVkImage::Resource::Flags flags = (VK_IMAGE_TILING_LINEAR == info->fImageTiling)
|
| + ? Resource::kLinearTiling_Flag : Resource::kNo_Flags;
|
| +
|
| + const GrVkImage::Resource* imageResource = new GrVkImage::Resource(info->fImage,
|
| + info->fAlloc,
|
| + flags);
|
| + if (!imageResource) {
|
| + return nullptr;
|
| + }
|
|
|
| - // Note: we assume the caller will unref the imageResource
|
| - // Create() will increment the refCount, and we'll unref when we're done with it
|
| - return Create(gpu, desc, lifeCycle, format, imageResource);
|
| + GrVkTexture* texture = Create(gpu, desc, lifeCycle, format, imageResource);
|
| + // Create() will increment the refCount of the image resource if it succeeds
|
| + imageResource->unref(gpu);
|
| +
|
| + return texture;
|
| }
|
|
|
| GrVkTexture::~GrVkTexture() {
|
|
|