no message

This commit is contained in:
gem
2025-02-18 15:21:31 +08:00
commit 2d133e56d7
1980 changed files with 465595 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
/****************************************************************************
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 "VKBufferBarrier.h"
#include "../VKGPUObjects.h"
#include "../VKQueue.h"
#include "gfx-base/GFXDef-common.h"
#include "gfx-vulkan/thsvs_simpler_vulkan_synchronization.h"
namespace cc {
namespace gfx {
CCVKBufferBarrier::CCVKBufferBarrier(const BufferBarrierInfo &info) : BufferBarrier(info) {
_typedID = generateObjectID<decltype(this)>();
_gpuBarrier = std::make_unique<CCVKGPUBufferBarrier>();
getAccessTypes(info.prevAccesses, _gpuBarrier->prevAccesses);
getAccessTypes(info.nextAccesses, _gpuBarrier->nextAccesses);
_gpuBarrier->barrier.prevAccessCount = utils::toUint(_gpuBarrier->prevAccesses.size());
_gpuBarrier->barrier.pPrevAccesses = _gpuBarrier->prevAccesses.data();
_gpuBarrier->barrier.nextAccessCount = utils::toUint(_gpuBarrier->nextAccesses.size());
_gpuBarrier->barrier.pNextAccesses = _gpuBarrier->nextAccesses.data();
_gpuBarrier->barrier.offset = info.offset;
_gpuBarrier->barrier.size = info.size;
_gpuBarrier->barrier.srcQueueFamilyIndex = info.srcQueue
? static_cast<CCVKQueue *>(info.srcQueue)->gpuQueue()->queueFamilyIndex
: VK_QUEUE_FAMILY_IGNORED;
_gpuBarrier->barrier.dstQueueFamilyIndex = info.dstQueue
? static_cast<CCVKQueue *>(info.dstQueue)->gpuQueue()->queueFamilyIndex
: VK_QUEUE_FAMILY_IGNORED;
thsvsGetVulkanBufferMemoryBarrier(_gpuBarrier->barrier, &_gpuBarrier->srcStageMask, &_gpuBarrier->dstStageMask, &_gpuBarrier->vkBarrier);
}
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,47 @@
/****************************************************************************
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.
****************************************************************************/
#pragma once
#include "../VKStd.h"
#include "gfx-base/states/GFXBufferBarrier.h"
namespace cc {
namespace gfx {
struct CCVKGPUBufferBarrier;
class CC_VULKAN_API CCVKBufferBarrier : public BufferBarrier {
public:
explicit CCVKBufferBarrier(const BufferBarrierInfo &info);
~CCVKBufferBarrier() override = default;
inline const CCVKGPUBufferBarrier *gpuBarrier() const { return _gpuBarrier.get(); }
protected:
std::unique_ptr<CCVKGPUBufferBarrier> _gpuBarrier;
};
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,43 @@
/****************************************************************************
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 "VKGeneralBarrier.h"
#include "../VKCommands.h"
#include "../VKDevice.h"
namespace cc {
namespace gfx {
CCVKGeneralBarrier::CCVKGeneralBarrier(const GeneralBarrierInfo &info) : GeneralBarrier(info) {
_typedID = generateObjectID<decltype(this)>();
_gpuBarrier = std::make_unique<CCVKGPUGeneralBarrier>();
getAccessTypes(info.prevAccesses, _gpuBarrier->prevAccesses);
getAccessTypes(info.nextAccesses, _gpuBarrier->nextAccesses);
cmdFuncCCVKCreateGeneralBarrier(CCVKDevice::getInstance(), _gpuBarrier.get());
}
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,48 @@
/****************************************************************************
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.
****************************************************************************/
#pragma once
#include <memory>
#include "../VKStd.h"
#include "gfx-base/states/GFXGeneralBarrier.h"
namespace cc {
namespace gfx {
struct CCVKGPUGeneralBarrier;
class CC_VULKAN_API CCVKGeneralBarrier : public GeneralBarrier {
public:
explicit CCVKGeneralBarrier(const GeneralBarrierInfo &info);
~CCVKGeneralBarrier() override = default;
inline const CCVKGPUGeneralBarrier *gpuBarrier() const { return _gpuBarrier.get(); }
protected:
std::unique_ptr<CCVKGPUGeneralBarrier> _gpuBarrier;
};
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,57 @@
/****************************************************************************
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 "VKSampler.h"
#include "../VKCommands.h"
#include "../VKDevice.h"
namespace cc {
namespace gfx {
CCVKSampler::CCVKSampler(const SamplerInfo &info) : Sampler(info) {
_typedID = generateObjectID<decltype(this)>();
_gpuSampler = ccnew CCVKGPUSampler;
_gpuSampler->minFilter = _info.minFilter;
_gpuSampler->magFilter = _info.magFilter;
_gpuSampler->mipFilter = _info.mipFilter;
_gpuSampler->addressU = _info.addressU;
_gpuSampler->addressV = _info.addressV;
_gpuSampler->addressW = _info.addressW;
_gpuSampler->maxAnisotropy = _info.maxAnisotropy;
_gpuSampler->cmpFunc = _info.cmpFunc;
_gpuSampler->init();
}
void CCVKGPUSampler::init() {
cmdFuncCCVKCreateSampler(CCVKDevice::getInstance(), this);
}
void CCVKGPUSampler::shutdown() {
CCVKDevice::getInstance()->gpuDescriptorHub()->disengage(this);
CCVKDevice::getInstance()->gpuRecycleBin()->collect(this);
}
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,46 @@
/****************************************************************************
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.
****************************************************************************/
#pragma once
#include "../VKStd.h"
#include "gfx-base/states/GFXSampler.h"
#include "gfx-vulkan/VKGPUObjects.h"
namespace cc {
namespace gfx {
class CC_VULKAN_API CCVKSampler final : public Sampler {
public:
explicit CCVKSampler(const SamplerInfo &info);
~CCVKSampler() override = default;
inline CCVKGPUSampler *gpuSampler() const { return _gpuSampler; }
protected:
IntrusivePtr<CCVKGPUSampler> _gpuSampler;
};
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,62 @@
/****************************************************************************
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 "VKTextureBarrier.h"
#include "../VKGPUObjects.h"
#include "../VKQueue.h"
namespace cc {
namespace gfx {
CCVKTextureBarrier::CCVKTextureBarrier(const TextureBarrierInfo &info) : TextureBarrier(info) {
_typedID = generateObjectID<decltype(this)>();
_gpuBarrier = std::make_unique<CCVKGPUTextureBarrier>();
getAccessTypes(info.prevAccesses, _gpuBarrier->prevAccesses);
getAccessTypes(info.nextAccesses, _gpuBarrier->nextAccesses);
_gpuBarrier->barrier.prevAccessCount = utils::toUint(_gpuBarrier->prevAccesses.size());
_gpuBarrier->barrier.pPrevAccesses = _gpuBarrier->prevAccesses.data();
_gpuBarrier->barrier.nextAccessCount = utils::toUint(_gpuBarrier->nextAccesses.size());
_gpuBarrier->barrier.pNextAccesses = _gpuBarrier->nextAccesses.data();
_gpuBarrier->barrier.prevLayout = getAccessLayout(info.prevAccesses);
_gpuBarrier->barrier.nextLayout = getAccessLayout(info.nextAccesses);
_gpuBarrier->barrier.discardContents = !!info.discardContents;
_gpuBarrier->barrier.subresourceRange.baseMipLevel = info.range.mipLevel;
_gpuBarrier->barrier.subresourceRange.levelCount = info.range.levelCount;
_gpuBarrier->barrier.subresourceRange.baseArrayLayer = info.range.firstSlice;
_gpuBarrier->barrier.subresourceRange.layerCount = info.range.numSlices;
_gpuBarrier->barrier.srcQueueFamilyIndex = info.srcQueue
? static_cast<CCVKQueue *>(info.srcQueue)->gpuQueue()->queueFamilyIndex
: VK_QUEUE_FAMILY_IGNORED;
_gpuBarrier->barrier.dstQueueFamilyIndex = info.dstQueue
? static_cast<CCVKQueue *>(info.dstQueue)->gpuQueue()->queueFamilyIndex
: VK_QUEUE_FAMILY_IGNORED;
thsvsGetVulkanImageMemoryBarrier(_gpuBarrier->barrier, &_gpuBarrier->srcStageMask, &_gpuBarrier->dstStageMask, &_gpuBarrier->vkBarrier);
}
} // namespace gfx
} // namespace cc

View File

@@ -0,0 +1,47 @@
/****************************************************************************
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.
****************************************************************************/
#pragma once
#include <memory>
#include "../VKStd.h"
#include "gfx-base/states/GFXTextureBarrier.h"
namespace cc {
namespace gfx {
struct CCVKGPUTextureBarrier;
class CC_VULKAN_API CCVKTextureBarrier : public TextureBarrier {
public:
explicit CCVKTextureBarrier(const TextureBarrierInfo &info);
~CCVKTextureBarrier() override = default;
inline const CCVKGPUTextureBarrier *gpuBarrier() const { return _gpuBarrier.get(); }
protected:
std::unique_ptr<CCVKGPUTextureBarrier> _gpuBarrier;
};
} // namespace gfx
} // namespace cc