blob: bb2c0472850826223ca5007393c97bf9181b5e5d [file] [log] [blame]
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrVkRenderTarget_DEFINED
#define GrVkRenderTarget_DEFINED
#include "src/gpu/GrRenderTarget.h"
#include "src/gpu/vk/GrVkImage.h"
#include "include/gpu/vk/GrVkTypes.h"
#include "src/gpu/vk/GrVkCommandBuffer.h"
#include "src/gpu/vk/GrVkRenderPass.h"
#include "src/gpu/vk/GrVkResourceProvider.h"
class GrVkFramebuffer;
class GrVkGpu;
class GrVkImageView;
class GrVkAttachment;
struct GrVkImageInfo;
class GrVkRenderTarget: public GrRenderTarget {
public:
static sk_sp<GrVkRenderTarget> MakeWrappedRenderTarget(GrVkGpu*, SkISize, int sampleCnt,
const GrVkImageInfo&,
sk_sp<GrBackendSurfaceMutableStateImpl>);
static sk_sp<GrVkRenderTarget> MakeSecondaryCBRenderTarget(GrVkGpu*, SkISize,
const GrVkDrawableInfo& vkInfo);
~GrVkRenderTarget() override;
GrBackendFormat backendFormat() const override { return fColorAttachment->getBackendFormat(); }
using SelfDependencyFlags = GrVkRenderPass::SelfDependencyFlags;
using LoadFromResolve = GrVkRenderPass::LoadFromResolve;
const GrVkFramebuffer* getFramebuffer(bool withResolve,
bool withStencil,
SelfDependencyFlags selfDepFlags,
LoadFromResolve);
const GrVkFramebuffer* getFramebuffer(const GrVkRenderPass& renderPass) {
return this->getFramebuffer(renderPass.hasResolveAttachment(),
renderPass.hasStencilAttachment(),
renderPass.selfDependencyFlags(),
renderPass.loadFromResolve());
}
GrVkAttachment* colorAttachment() const { return fColorAttachment.get(); }
const GrVkImageView* colorAttachmentView() const { return fColorAttachment->framebufferView(); }
GrVkAttachment* resolveAttachment() const { return fResolveAttachment.get(); }
const GrVkImageView* resolveAttachmentView() const {
return fResolveAttachment->framebufferView();
}
const GrManagedResource* stencilImageResource() const;
const GrVkImageView* stencilAttachmentView() const;
// Returns the GrVkAttachment of the non-msaa attachment. If the color attachment has 1 sample,
// then the color attachment will be returned. Otherwise, the resolve attachment is returned.
// Note that in this second case the resolve attachment may be null if this was created by
// wrapping an msaa VkImage.
GrVkAttachment* nonMSAAAttachment() const;
// Returns the attachment that is used for all external client facing operations. This will be
// either a wrapped color attachment or the resolve attachment for created VkImages.
GrVkAttachment* externalAttachment() const {
return fResolveAttachment ? fResolveAttachment.get() : fColorAttachment.get();
}
std::pair<const GrVkRenderPass*, GrVkResourceProvider::CompatibleRPHandle> getSimpleRenderPass(
bool withResolve,
bool withStencil,
SelfDependencyFlags selfDepFlags,
LoadFromResolve);
GrVkResourceProvider::CompatibleRPHandle compatibleRenderPassHandle(
bool withResolve,
bool withStencil,
SelfDependencyFlags selfDepFlags,
LoadFromResolve);
const GrVkRenderPass* externalRenderPass() const;
bool wrapsSecondaryCommandBuffer() const { return fSecondaryCommandBuffer != VK_NULL_HANDLE; }
VkCommandBuffer getExternalSecondaryCommandBuffer() const {
return fSecondaryCommandBuffer;
}
bool canAttemptStencilAttachment() const override {
// We don't know the status of the stencil attachment for wrapped external secondary command
// buffers so we just assume we don't have one.
return !this->wrapsSecondaryCommandBuffer();
}
GrBackendRenderTarget getBackendRenderTarget() const override;
void getAttachmentsDescriptor(GrVkRenderPass::AttachmentsDescriptor* desc,
GrVkRenderPass::AttachmentFlags* flags,
bool withResolve,
bool withStencil) const;
// Reconstruct the render target attachment information from the programInfo. This includes
// which attachments the render target will have (color, stencil) and the attachments' formats
// and sample counts - cf. getAttachmentsDescriptor.
static void ReconstructAttachmentsDescriptor(const GrVkCaps& vkCaps,
const GrProgramInfo& programInfo,
GrVkRenderPass::AttachmentsDescriptor* desc,
GrVkRenderPass::AttachmentFlags* flags);
// So that we don't need to rewrite descriptor sets each time, we keep a cached input descriptor
// set on the the RT and simply reuse that descriptor set for this render target only. This call
// will not ref the GrVkDescriptorSet so the caller must manually ref it if it wants to keep it
// alive.
const GrVkDescriptorSet* inputDescSet(GrVkGpu*, bool forResolve);
void addWrappedGrSecondaryCommandBuffer(std::unique_ptr<GrVkSecondaryCommandBuffer> cmdBuffer) {
fGrSecondaryCommandBuffers.push_back(std::move(cmdBuffer));
}
protected:
enum class CreateType {
kDirectlyWrapped, // We need to register this in the ctor
kFromTextureRT, // Skip registering this to cache since TexRT will handle it
};
GrVkRenderTarget(GrVkGpu* gpu,
SkISize dimensions,
sk_sp<GrVkAttachment> colorAttachment,
sk_sp<GrVkAttachment> resolveAttachment,
CreateType createType);
void onAbandon() override;
void onRelease() override;
// This returns zero since the memory should all be handled by the attachments
size_t onGpuMemorySize() const override { return 0; }
private:
GrVkRenderTarget(GrVkGpu* gpu,
SkISize dimensions,
sk_sp<GrVkAttachment> colorAttachment,
const GrVkRenderPass* renderPass,
VkCommandBuffer secondaryCommandBuffer);
void setFlags();
GrVkGpu* getVkGpu() const;
const GrVkRenderPass* createSimpleRenderPass(bool withResolve,
bool withStencil,
SelfDependencyFlags selfDepFlags,
LoadFromResolve);
const GrVkFramebuffer* createFramebuffer(bool withResolve,
bool withStencil,
SelfDependencyFlags selfDepFlags,
LoadFromResolve);
bool completeStencilAttachment() override;
// In Vulkan we call the release proc after we are finished with the underlying
// GrVkImage::Resource object (which occurs after the GPU has finished all work on it).
void onSetRelease(sk_sp<GrRefCntedCallback> releaseHelper) override {
// Forward the release proc on to the GrVkImage of the release attachment if we have one,
// otherwise the color attachment.
GrVkAttachment* attachment =
fResolveAttachment ? fResolveAttachment.get() : fColorAttachment.get();
attachment->setResourceRelease(std::move(releaseHelper));
}
void releaseInternalObjects();
sk_sp<GrVkAttachment> fColorAttachment;
sk_sp<GrVkAttachment> fResolveAttachment;
// We can have a renderpass with and without resolve attachment, stencil attachment,
// input attachment dependency, advanced blend dependency, and loading from resolve. All 5 of
// these being completely orthogonal. Thus we have a total of 32 types of render passes.
static constexpr int kNumCachedRenderPasses = 32;
const GrVkFramebuffer* fCachedFramebuffers[kNumCachedRenderPasses];
const GrVkRenderPass* fCachedRenderPasses[kNumCachedRenderPasses];
GrVkResourceProvider::CompatibleRPHandle fCompatibleRPHandles[kNumCachedRenderPasses];
const GrVkDescriptorSet* fCachedInputDescriptorSet = nullptr;
// If this render target wraps an external VkCommandBuffer, then this handle will be that
// VkCommandBuffer and not VK_NULL_HANDLE. In this case the render target will not be backed by
// an actual VkImage and will thus be limited in terms of what it can be used for.
VkCommandBuffer fSecondaryCommandBuffer = VK_NULL_HANDLE;
// When we wrap a secondary command buffer, we will record GrManagedResources onto it which need
// to be kept alive till the command buffer gets submitted and the GPU has finished. However, in
// the wrapped case, we don't know when the command buffer gets submitted and when it is
// finished on the GPU since the client is in charge of that. However, we do require that the
// client keeps the GrVkSecondaryCBDrawContext alive and call releaseResources on it once the
// GPU is finished all the work. Thus we can use this to manage the lifetime of our
// GrVkSecondaryCommandBuffers. By storing them on the GrVkRenderTarget, which is owned by the
// SkGpuDevice on the GrVkSecondaryCBDrawContext, we assure that the GrManagedResources held by
// the GrVkSecondaryCommandBuffer don't get deleted before they are allowed to.
SkTArray<std::unique_ptr<GrVkCommandBuffer>> fGrSecondaryCommandBuffers;
};
#endif