| Index: src/gpu/vk/GrVkFramebuffer.cpp
 | 
| diff --git a/src/gpu/vk/GrVkFramebuffer.cpp b/src/gpu/vk/GrVkFramebuffer.cpp
 | 
| index 49c6e414fc110e4d1e5fc5724976d95d749656b6..f9add633ce8ade5fef24c001b5d1acb709d83806 100644
 | 
| --- a/src/gpu/vk/GrVkFramebuffer.cpp
 | 
| +++ b/src/gpu/vk/GrVkFramebuffer.cpp
 | 
| @@ -15,7 +15,6 @@ GrVkFramebuffer* GrVkFramebuffer::Create(GrVkGpu* gpu,
 | 
|                                           int width, int height,
 | 
|                                           const GrVkRenderPass* renderPass,
 | 
|                                           const GrVkImageView* colorAttachment,
 | 
| -                                         const GrVkImageView* resolveAttachment,
 | 
|                                           const GrVkImageView* stencilAttachment) {
 | 
|      // At the very least we need a renderPass and a colorAttachment
 | 
|      SkASSERT(renderPass);
 | 
| @@ -24,9 +23,6 @@ GrVkFramebuffer* GrVkFramebuffer::Create(GrVkGpu* gpu,
 | 
|      VkImageView attachments[3];
 | 
|      attachments[0] = colorAttachment->imageView();
 | 
|      int numAttachments = 1;
 | 
| -    if (resolveAttachment) {
 | 
| -        attachments[numAttachments++] = resolveAttachment->imageView();
 | 
| -    }
 | 
|      if (stencilAttachment) {
 | 
|          attachments[numAttachments++] = stencilAttachment->imageView();
 | 
|      }
 | 
| 
 |