Index: src/gpu/vk/GrVkRenderTarget.cpp |
diff --git a/src/gpu/vk/GrVkRenderTarget.cpp b/src/gpu/vk/GrVkRenderTarget.cpp |
index 83a4b44a59562e5d3fae11bc21260951dcb2f542..dc966cab816413180ca10a3e381f014fc1b396c1 100644 |
--- a/src/gpu/vk/GrVkRenderTarget.cpp |
+++ b/src/gpu/vk/GrVkRenderTarget.cpp |
@@ -32,7 +32,7 @@ GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, |
: GrSurface(gpu, desc) |
, GrVkImage(info, wrapped) |
// for the moment we only support 1:1 color to stencil |
- , GrRenderTarget(gpu, desc, kUnified_SampleConfig) |
+ , GrRenderTarget(gpu, desc) |
, fColorAttachmentView(colorAttachmentView) |
, fMSAAImage(new GrVkImage(msaaInfo, GrVkImage::kNot_Wrapped)) |
, fResolveAttachmentView(resolveAttachmentView) |
@@ -57,7 +57,7 @@ GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, |
: GrSurface(gpu, desc) |
, GrVkImage(info, wrapped) |
// for the moment we only support 1:1 color to stencil |
- , GrRenderTarget(gpu, desc, kUnified_SampleConfig) |
+ , GrRenderTarget(gpu, desc) |
, fColorAttachmentView(colorAttachmentView) |
, fMSAAImage(new GrVkImage(msaaInfo, GrVkImage::kNot_Wrapped)) |
, fResolveAttachmentView(resolveAttachmentView) |
@@ -79,7 +79,7 @@ GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, |
GrVkImage::Wrapped wrapped) |
: GrSurface(gpu, desc) |
, GrVkImage(info, wrapped) |
- , GrRenderTarget(gpu, desc, kUnified_SampleConfig) |
+ , GrRenderTarget(gpu, desc) |
, fColorAttachmentView(colorAttachmentView) |
, fMSAAImage(nullptr) |
, fResolveAttachmentView(nullptr) |
@@ -100,7 +100,7 @@ GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, |
GrVkImage::Wrapped wrapped) |
: GrSurface(gpu, desc) |
, GrVkImage(info, wrapped) |
- , GrRenderTarget(gpu, desc, kUnified_SampleConfig) |
+ , GrRenderTarget(gpu, desc) |
, fColorAttachmentView(colorAttachmentView) |
, fMSAAImage(nullptr) |
, fResolveAttachmentView(nullptr) |