blob: ef666ec334b1997ee211cc289a493981f2cca9b5 [file] [log] [blame]
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrVkOpsRenderPass_DEFINED
#define GrVkOpsRenderPass_DEFINED
#include "src/gpu/GrOpsRenderPass.h"
#include "include/gpu/GrTypes.h"
#include "include/gpu/vk/GrVkTypes.h"
#include "src/gpu/GrColor.h"
#include "src/gpu/GrTRecorder.h"
#include "src/gpu/vk/GrVkPipelineState.h"
class GrVkGpu;
class GrVkImage;
class GrVkRenderPass;
class GrVkRenderTarget;
class GrVkSecondaryCommandBuffer;
class GrVkOpsRenderPass : public GrOpsRenderPass {
public:
GrVkOpsRenderPass(GrVkGpu*);
~GrVkOpsRenderPass() override;
void inlineUpload(GrOpFlushState* state, GrDeferredTextureUploadFn& upload) override;
void onExecuteDrawable(std::unique_ptr<SkDrawable::GpuDrawHandler>) override;
bool set(GrRenderTarget*, GrStencilAttachment*,
GrSurfaceOrigin, const SkIRect& bounds,
const GrOpsRenderPass::LoadAndStoreInfo&,
const GrOpsRenderPass::StencilLoadAndStoreInfo&,
const SkTArray<GrSurfaceProxy*, true>& sampledProxies);
void reset();
void submit();
#ifdef SK_DEBUG
bool isActive() const { return fIsActive; }
#endif
private:
bool init(const GrOpsRenderPass::LoadAndStoreInfo&,
const GrOpsRenderPass::StencilLoadAndStoreInfo&,
const SkPMColor4f& clearColor,
bool withStencil);
// Called instead of init when we are drawing to a render target that already wraps a secondary
// command buffer.
bool initWrapped();
bool wrapsSecondaryCommandBuffer() const;
GrGpu* gpu() override;
GrVkCommandBuffer* currentCommandBuffer();
void onEnd() override;
bool onBindPipeline(const GrProgramInfo&, const SkRect& drawBounds) override;
void onSetScissorRect(const SkIRect&) override;
bool onBindTextures(const GrPrimitiveProcessor&, const GrSurfaceProxy* const primProcTextures[],
const GrPipeline&) override;
void onBindBuffers(const GrBuffer* indexBuffer, const GrBuffer* instanceBuffer,
const GrBuffer* vertexBuffer, GrPrimitiveRestart) override;
void onDraw(int vertexCount, int baseVertex) override {
this->onDrawInstanced(1, 0, vertexCount, baseVertex);
}
void onDrawIndexed(int indexCount, int baseIndex, uint16_t minIndexValue,
uint16_t maxIndexValue, int baseVertex) override {
this->onDrawIndexedInstanced(indexCount, baseIndex, 1, 0, baseVertex);
}
void onDrawInstanced(int instanceCount, int baseInstance, int vertexCount,
int baseVertex) override;
void onDrawIndexedInstanced(int indexCount, int baseIndex, int instanceCount, int baseInstance,
int baseVertex) override;
void onDrawIndirect(const GrBuffer* drawIndirectBuffer, size_t offset, int drawCount) override;
void onDrawIndexedIndirect(const GrBuffer* drawIndirectBuffer, size_t offset,
int drawCount) override;
void onClear(const GrScissorState& scissor, const SkPMColor4f& color) override;
void onClearStencilClip(const GrScissorState& scissor, bool insideStencilMask) override;
void addAdditionalRenderPass(bool mustUseSecondaryCommandBuffer);
std::unique_ptr<GrVkSecondaryCommandBuffer> fCurrentSecondaryCommandBuffer;
const GrVkRenderPass* fCurrentRenderPass;
SkIRect fCurrentPipelineBounds;
GrVkPipelineState* fCurrentPipelineState = nullptr;
bool fCurrentCBIsEmpty = true;
SkIRect fBounds;
GrVkGpu* fGpu;
#ifdef SK_DEBUG
// When we are actively recording into the GrVkOpsRenderPass we set this flag to true. This
// then allows us to assert that we never submit a primary command buffer to the queue while in
// a recording state. This is needed since when we submit to the queue we change command pools
// and may trigger the old one to be reset, but a recording GrVkOpsRenderPass may still have
// a outstanding secondary command buffer allocated from that pool that we'll try to access
// after the pool as been reset.
bool fIsActive = false;
#endif
typedef GrOpsRenderPass INHERITED;
};
#endif