You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.8 KiB
C++
46 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <AzCore/UnitTest/TestTypes.h>
|
|
#include <Atom/RHI/PipelineLibrary.h>
|
|
#include <Atom/RHI/PipelineState.h>
|
|
#include <AzCore/Memory/SystemAllocator.h>
|
|
|
|
namespace UnitTest
|
|
{
|
|
class PipelineLibrary
|
|
: public AZ::RHI::PipelineLibrary
|
|
{
|
|
public:
|
|
AZ_CLASS_ALLOCATOR(PipelineLibrary, AZ::SystemAllocator, 0);
|
|
|
|
AZStd::unordered_map<uint64_t, const AZ::RHI::PipelineState*> m_pipelineStates;
|
|
|
|
private:
|
|
AZ::RHI::ResultCode InitInternal(AZ::RHI::Device&, const AZ::RHI::PipelineLibraryDescriptor&) override { return AZ::RHI::ResultCode::Success; }
|
|
void ShutdownInternal() override;
|
|
AZ::RHI::ResultCode MergeIntoInternal(AZStd::span<const AZ::RHI::PipelineLibrary* const>) override;
|
|
AZ::RHI::ConstPtr<AZ::RHI::PipelineLibraryData> GetSerializedDataInternal() const override { return nullptr; }
|
|
bool SaveSerializedDataInternal([[maybe_unused]] const AZStd::string& filePath) const override { return false; }
|
|
};
|
|
|
|
class PipelineState
|
|
: public AZ::RHI::PipelineState
|
|
{
|
|
public:
|
|
AZ_CLASS_ALLOCATOR(PipelineState, AZ::SystemAllocator, 0);
|
|
|
|
private:
|
|
AZ::RHI::ResultCode InitInternal(AZ::RHI::Device&, const AZ::RHI::PipelineStateDescriptorForDraw&, AZ::RHI::PipelineLibrary*) override;
|
|
AZ::RHI::ResultCode InitInternal(AZ::RHI::Device&, const AZ::RHI::PipelineStateDescriptorForDispatch&, AZ::RHI::PipelineLibrary*) override;
|
|
AZ::RHI::ResultCode InitInternal(AZ::RHI::Device&, const AZ::RHI::PipelineStateDescriptorForRayTracing&, AZ::RHI::PipelineLibrary*) override;
|
|
void ShutdownInternal() override {}
|
|
};
|
|
}
|