You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cocos_lib/cocos/renderer/gfx-agent/CommandBufferAgent.cpp

595 lines
19 KiB

/****************************************************************************
Copyright (c) 2020-2023 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "CommandBufferAgent.h"
#include <cstring>
#include "BufferAgent.h"
#include "DescriptorSetAgent.h"
#include "DeviceAgent.h"
#include "FramebufferAgent.h"
#include "InputAssemblerAgent.h"
#include "PipelineStateAgent.h"
#include "QueryPoolAgent.h"
#include "QueueAgent.h"
#include "RenderPassAgent.h"
#include "TextureAgent.h"
#include "base/Utils.h"
#include "base/job-system/JobSystem.h"
#include "base/threading/MessageQueue.h"
#include "base/threading/ThreadSafeLinearAllocator.h"
namespace cc {
namespace gfx {
CommandBufferAgent::CommandBufferAgent(CommandBuffer *actor)
: Agent<CommandBuffer>(actor) {
_typedID = actor->getTypedID();
}
void CommandBufferAgent::flushCommands(uint32_t count, CommandBufferAgent *const *cmdBuffs, bool multiThreaded) {
// don't even touch the job system if we are only recording sequentially
if (count == 1) {
cmdBuffs[0]->getMessageQueue()->flushMessages();
return;
}
uint32_t jobThreadCount = JobSystem::getInstance()->threadCount();
uint32_t workForThisThread = (count - 1) / jobThreadCount + 1; // ceil(count / jobThreadCount)
if (count > workForThisThread + 1 && multiThreaded) { // more than one job to dispatch
JobGraph g(JobSystem::getInstance());
g.createForEachIndexJob(workForThisThread, count, 1U, [cmdBuffs](uint32_t i) {
cmdBuffs[i]->getMessageQueue()->flushMessages();
});
g.run();
for (uint32_t i = 0U; i < workForThisThread; ++i) {
cmdBuffs[i]->getMessageQueue()->flushMessages();
}
g.waitForAll();
} else {
for (uint32_t i = 0U; i < count; ++i) {
cmdBuffs[i]->getMessageQueue()->flushMessages();
}
}
}
CommandBufferAgent::~CommandBufferAgent() {
destroyMessageQueue();
ENQUEUE_MESSAGE_1(
DeviceAgent::getInstance()->getMessageQueue(), CommandBufferDestruct,
actor, _actor,
{
CC_SAFE_DELETE(actor);
});
}
void CommandBufferAgent::initMessageQueue() {
DeviceAgent *device = DeviceAgent::getInstance();
device->_cmdBuffRefs.insert(this);
_messageQueue = ccnew MessageQueue;
if (device->_multithreaded) _messageQueue->setImmediateMode(false);
}
void CommandBufferAgent::destroyMessageQueue() {
DeviceAgent::getInstance()->getMessageQueue()->kickAndWait();
CC_SAFE_DELETE(_messageQueue);
DeviceAgent::getInstance()->_cmdBuffRefs.erase(this);
}
void CommandBufferAgent::initAgent() {
initMessageQueue();
}
void CommandBufferAgent::destroyAgent() {
destroyMessageQueue();
}
void CommandBufferAgent::doInit(const CommandBufferInfo &info) {
initMessageQueue();
CommandBufferInfo actorInfo = info;
actorInfo.queue = static_cast<QueueAgent *>(info.queue)->getActor();
ENQUEUE_MESSAGE_2(
DeviceAgent::getInstance()->getMessageQueue(), CommandBufferInit,
actor, getActor(),
info, actorInfo,
{
actor->initialize(info);
});
}
void CommandBufferAgent::doDestroy() {
destroyMessageQueue();
ENQUEUE_MESSAGE_1(
DeviceAgent::getInstance()->getMessageQueue(), CommandBufferDestroy,
actor, getActor(),
{
actor->destroy();
});
}
void CommandBufferAgent::begin(RenderPass *renderPass, uint32_t subpass, Framebuffer *frameBuffer) {
ENQUEUE_MESSAGE_4(
_messageQueue,
CommandBufferBegin,
actor, getActor(),
renderPass, renderPass ? static_cast<RenderPassAgent *>(renderPass)->getActor() : nullptr,
subpass, subpass,
frameBuffer, frameBuffer ? static_cast<FramebufferAgent *>(frameBuffer)->getActor() : nullptr,
{
actor->begin(renderPass, subpass, frameBuffer);
});
}
void CommandBufferAgent::end() {
ENQUEUE_MESSAGE_1(
_messageQueue, CommandBufferEnd,
actor, getActor(),
{
actor->end();
});
}
void CommandBufferAgent::beginRenderPass(RenderPass *renderPass, Framebuffer *fbo, const Rect &renderArea, const Color *colors, float depth, uint32_t stencil, CommandBuffer *const *secondaryCBs, uint32_t secondaryCBCount) {
auto attachmentCount = utils::toUint(renderPass->getColorAttachments().size());
Color *actorColors = nullptr;
if (attachmentCount) {
actorColors = _messageQueue->allocate<Color>(attachmentCount);
memcpy(actorColors, colors, sizeof(Color) * attachmentCount);
}
CommandBuffer **actorSecondaryCBs = nullptr;
if (secondaryCBCount) {
actorSecondaryCBs = _messageQueue->allocate<CommandBuffer *>(secondaryCBCount);
for (uint32_t i = 0; i < secondaryCBCount; ++i) {
actorSecondaryCBs[i] = static_cast<CommandBufferAgent *>(secondaryCBs[i])->getActor();
}
}
ENQUEUE_MESSAGE_9(
_messageQueue, CommandBufferBeginRenderPass,
actor, getActor(),
renderPass, static_cast<RenderPassAgent *>(renderPass)->getActor(),
fbo, static_cast<FramebufferAgent *>(fbo)->getActor(),
renderArea, renderArea,
colors, actorColors,
depth, depth,
stencil, stencil,
secondaryCBCount, secondaryCBCount,
secondaryCBs, actorSecondaryCBs,
{
actor->beginRenderPass(renderPass, fbo, renderArea, colors, depth, stencil, secondaryCBs, secondaryCBCount);
});
}
void CommandBufferAgent::endRenderPass() {
ENQUEUE_MESSAGE_1(
_messageQueue, CommandBufferEndRenderPass,
actor, getActor(),
{
actor->endRenderPass();
});
}
void CommandBufferAgent::insertMarker(const MarkerInfo &marker) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferInsertMarker,
actor, getActor(),
marker, marker,
{
actor->insertMarker(marker);
});
}
void CommandBufferAgent::beginMarker(const MarkerInfo &marker) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferBeginMarker,
actor, getActor(),
marker, marker,
{
actor->beginMarker(marker);
});
}
void CommandBufferAgent::endMarker() {
ENQUEUE_MESSAGE_1(
_messageQueue, CommandBufferEndMarker,
actor, getActor(),
{
actor->endMarker();
});
}
void CommandBufferAgent::execute(CommandBuffer *const *cmdBuffs, uint32_t count) {
if (!count) return;
auto **actorCmdBuffs = _messageQueue->allocate<CommandBuffer *>(count);
for (uint32_t i = 0; i < count; ++i) {
actorCmdBuffs[i] = static_cast<CommandBufferAgent *>(cmdBuffs[i])->getActor();
}
ENQUEUE_MESSAGE_3(
_messageQueue, CommandBufferExecute,
actor, getActor(),
cmdBuffs, actorCmdBuffs,
count, count,
{
actor->execute(cmdBuffs, count);
});
}
void CommandBufferAgent::bindPipelineState(PipelineState *pso) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferBindPipelineState,
actor, getActor(),
pso, static_cast<PipelineStateAgent *>(pso)->getActor(),
{
actor->bindPipelineState(pso);
});
}
void CommandBufferAgent::bindDescriptorSet(uint32_t set, DescriptorSet *descriptorSet, uint32_t dynamicOffsetCount, const uint32_t *dynamicOffsets) {
uint32_t *actorDynamicOffsets = nullptr;
if (dynamicOffsetCount) {
actorDynamicOffsets = _messageQueue->allocate<uint32_t>(dynamicOffsetCount);
memcpy(actorDynamicOffsets, dynamicOffsets, dynamicOffsetCount * sizeof(uint32_t));
}
ENQUEUE_MESSAGE_5(
_messageQueue, CommandBufferBindDescriptorSet,
actor, getActor(),
set, set,
descriptorSet, static_cast<DescriptorSetAgent *>(descriptorSet)->getActor(),
dynamicOffsetCount, dynamicOffsetCount,
dynamicOffsets, actorDynamicOffsets,
{
actor->bindDescriptorSet(set, descriptorSet, dynamicOffsetCount, dynamicOffsets);
});
}
void CommandBufferAgent::bindInputAssembler(InputAssembler *ia) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferBindInputAssembler,
actor, getActor(),
ia, static_cast<InputAssemblerAgent *>(ia)->getActor(),
{
actor->bindInputAssembler(ia);
});
}
void CommandBufferAgent::setViewport(const Viewport &vp) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferSetViewport,
actor, getActor(),
vp, vp,
{
actor->setViewport(vp);
});
}
void CommandBufferAgent::setScissor(const Rect &rect) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferSetScissor,
actor, getActor(),
rect, rect,
{
actor->setScissor(rect);
});
}
void CommandBufferAgent::setLineWidth(float width) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferSetLineWidth,
actor, getActor(),
width, width,
{
actor->setLineWidth(width);
});
}
void CommandBufferAgent::setDepthBias(float constant, float clamp, float slope) {
ENQUEUE_MESSAGE_4(
_messageQueue, CommandBufferSetDepthBias,
actor, getActor(),
constant, constant,
clamp, clamp,
slope, slope,
{
actor->setDepthBias(constant, clamp, slope);
});
}
void CommandBufferAgent::setBlendConstants(const Color &constants) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferSetBlendConstants,
actor, getActor(),
constants, constants,
{
actor->setBlendConstants(constants);
});
}
void CommandBufferAgent::setDepthBound(float minBounds, float maxBounds) {
ENQUEUE_MESSAGE_3(
_messageQueue, CommandBufferSetDepthBound,
actor, getActor(),
minBounds, minBounds,
maxBounds, maxBounds,
{
actor->setDepthBound(minBounds, maxBounds);
});
}
void CommandBufferAgent::setStencilWriteMask(StencilFace face, uint32_t mask) {
ENQUEUE_MESSAGE_3(
_messageQueue, CommandBufferSetStencilWriteMask,
actor, getActor(),
face, face,
mask, mask,
{
actor->setStencilWriteMask(face, mask);
});
}
void CommandBufferAgent::setStencilCompareMask(StencilFace face, uint32_t ref, uint32_t mask) {
ENQUEUE_MESSAGE_4(
_messageQueue, CommandBufferSetStencilCompareMask,
actor, getActor(),
face, face,
ref, ref,
mask, mask,
{
actor->setStencilCompareMask(face, ref, mask);
});
}
void CommandBufferAgent::nextSubpass() {
ENQUEUE_MESSAGE_1(
_messageQueue, CommandBufferNextSubpass,
actor, getActor(),
{
actor->nextSubpass();
});
}
void CommandBufferAgent::draw(const DrawInfo &info) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferDraw,
actor, getActor(),
info, info,
{
actor->draw(info);
});
}
void CommandBufferAgent::updateBuffer(Buffer *buff, const void *data, uint32_t size) {
auto *bufferAgent = static_cast<BufferAgent *>(buff);
uint8_t *actorBuffer{nullptr};
bool needFreeing{false};
BufferAgent::getActorBuffer(bufferAgent, _messageQueue, size, &actorBuffer, &needFreeing);
memcpy(actorBuffer, data, size);
ENQUEUE_MESSAGE_5(
_messageQueue, CommandBufferUpdateBuffer,
actor, getActor(),
buff, bufferAgent->getActor(),
data, actorBuffer,
size, size,
needFreeing, needFreeing,
{
actor->updateBuffer(buff, data, size);
if (needFreeing) free(data);
});
}
void CommandBufferAgent::resolveTexture(Texture *srcTexture, Texture *dstTexture, const TextureCopy *regions, uint32_t count) {
Texture *actorSrcTexture = nullptr;
Texture *actorDstTexture = nullptr;
if (srcTexture) actorSrcTexture = static_cast<TextureAgent *>(srcTexture)->getActor();
if (dstTexture) actorDstTexture = static_cast<TextureAgent *>(dstTexture)->getActor();
auto *actorRegions = _messageQueue->allocate<TextureCopy>(count);
memcpy(actorRegions, regions, count * sizeof(TextureCopy));
ENQUEUE_MESSAGE_5(
_messageQueue, CommandBufferBlitTexture,
actor, getActor(),
srcTexture, actorSrcTexture,
dstTexture, actorDstTexture,
regions, actorRegions,
count, count,
{
actor->resolveTexture(srcTexture, dstTexture, regions, count);
});
}
void CommandBufferAgent::copyTexture(Texture *srcTexture, Texture *dstTexture, const TextureCopy *regions, uint32_t count) {
Texture *actorSrcTexture = nullptr;
Texture *actorDstTexture = nullptr;
if (srcTexture) actorSrcTexture = static_cast<TextureAgent *>(srcTexture)->getActor();
if (dstTexture) actorDstTexture = static_cast<TextureAgent *>(dstTexture)->getActor();
auto *actorRegions = _messageQueue->allocate<TextureCopy>(count);
memcpy(actorRegions, regions, count * sizeof(TextureCopy));
ENQUEUE_MESSAGE_5(
_messageQueue, CommandBufferBlitTexture,
actor, getActor(),
srcTexture, actorSrcTexture,
dstTexture, actorDstTexture,
regions, actorRegions,
count, count,
{
actor->copyTexture(srcTexture, dstTexture, regions, count);
});
}
void CommandBufferAgent::blitTexture(Texture *srcTexture, Texture *dstTexture, const TextureBlit *regions, uint32_t count, Filter filter) {
Texture *actorSrcTexture = nullptr;
Texture *actorDstTexture = nullptr;
if (srcTexture) actorSrcTexture = static_cast<TextureAgent *>(srcTexture)->getActor();
if (dstTexture) actorDstTexture = static_cast<TextureAgent *>(dstTexture)->getActor();
auto *actorRegions = _messageQueue->allocate<TextureBlit>(count);
memcpy(actorRegions, regions, count * sizeof(TextureBlit));
ENQUEUE_MESSAGE_6(
_messageQueue, CommandBufferBlitTexture,
actor, getActor(),
srcTexture, actorSrcTexture,
dstTexture, actorDstTexture,
regions, actorRegions,
count, count,
filter, filter,
{
actor->blitTexture(srcTexture, dstTexture, regions, count, filter);
});
}
void CommandBufferAgent::dispatch(const DispatchInfo &info) {
DispatchInfo actorInfo = info;
if (info.indirectBuffer) actorInfo.indirectBuffer = static_cast<BufferAgent *>(info.indirectBuffer)->getActor();
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferDispatch,
actor, getActor(),
info, actorInfo,
{
actor->dispatch(info);
});
}
void CommandBufferAgent::pipelineBarrier(const GeneralBarrier *barrier, const BufferBarrier *const *bufferBarriers, const Buffer *const *buffers, uint32_t bufferBarrierCount, const TextureBarrier *const *textureBarriers, const Texture *const *textures, uint32_t textureBarrierCount) {
TextureBarrier **actorTextureBarriers = nullptr;
Texture **actorTextures = nullptr;
BufferBarrier **actorBufferBarriers = nullptr;
Buffer **actorBuffers = nullptr;
if (textureBarrierCount) {
actorTextureBarriers = _messageQueue->allocate<TextureBarrier *>(textureBarrierCount);
memcpy(actorTextureBarriers, textureBarriers, textureBarrierCount * sizeof(uintptr_t));
actorTextures = _messageQueue->allocate<Texture *>(textureBarrierCount);
for (uint32_t i = 0U; i < textureBarrierCount; ++i) {
actorTextures[i] = textures[i] ? static_cast<const TextureAgent *>(textures[i])->getActor() : nullptr;
}
}
if (bufferBarrierCount) {
actorBufferBarriers = _messageQueue->allocateAndZero<BufferBarrier *>(bufferBarrierCount);
memcpy(actorBufferBarriers, bufferBarriers, bufferBarrierCount * sizeof(uintptr_t));
actorBuffers = _messageQueue->allocate<Buffer *>(bufferBarrierCount);
for (uint32_t i = 0; i < bufferBarrierCount; ++i) {
actorBuffers[i] = buffers[i] ? static_cast<const BufferAgent *>(buffers[i])->getActor() : nullptr;
}
}
ENQUEUE_MESSAGE_8(
_messageQueue, CommandBufferPipelineBarrier,
actor, getActor(),
barrier, barrier,
bufferBarriers, actorBufferBarriers,
buffers, actorBuffers,
bufferBarrierCount, bufferBarrierCount,
textureBarriers, actorTextureBarriers,
textures, actorTextures,
textureBarrierCount, textureBarrierCount,
{
actor->pipelineBarrier(barrier, bufferBarriers, buffers, bufferBarrierCount, textureBarriers, textures, textureBarrierCount);
});
}
void CommandBufferAgent::beginQuery(QueryPool *queryPool, uint32_t id) {
auto *actorQueryPool = static_cast<QueryPoolAgent *>(queryPool)->getActor();
ENQUEUE_MESSAGE_3(
_messageQueue, CommandBufferBeginQuery,
actor, getActor(),
queryPool, actorQueryPool,
id, id,
{
actor->beginQuery(queryPool, id);
});
}
void CommandBufferAgent::endQuery(QueryPool *queryPool, uint32_t id) {
auto *actorQueryPool = static_cast<QueryPoolAgent *>(queryPool)->getActor();
ENQUEUE_MESSAGE_3(
_messageQueue, CommandBufferEndQuery,
actor, getActor(),
queryPool, actorQueryPool,
id, id,
{
actor->endQuery(queryPool, id);
});
}
void CommandBufferAgent::resetQueryPool(QueryPool *queryPool) {
auto *actorQueryPool = static_cast<QueryPoolAgent *>(queryPool)->getActor();
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferResetQueryPool,
actor, getActor(),
queryPool, actorQueryPool,
{
actor->resetQueryPool(queryPool);
});
}
void CommandBufferAgent::completeQueryPool(QueryPool *queryPool) {
auto *actorQueryPool = static_cast<QueryPoolAgent *>(queryPool)->getActor();
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferCompleteQueryPool,
actor, getActor(),
queryPool, actorQueryPool,
{
actor->completeQueryPool(queryPool);
});
}
void CommandBufferAgent::customCommand(CustomCommand &&cmd) {
ENQUEUE_MESSAGE_2(
_messageQueue, CommandBufferCompleteQueryPool,
actor, getActor(),
cmd, cmd,
{
actor->customCommand(std::move(cmd));
});
}
} // namespace gfx
} // namespace cc