1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * 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
- *
- */
- #include <Atom/RHI.Reflect/Null/ReflectSystemComponent.h>
- #include <Atom/RHI.Reflect/ReflectSystemComponent.h>
- #include <AzCore/Module/Module.h>
- #include <RHI.Builders/ShaderPlatformInterfaceSystemComponent.h>
- namespace AZ
- {
- namespace Null
- {
- //! Exposes Null RHI Building components to the Asset Processor.
- class BuilderModule final
- : public AZ::Module
- {
- public:
- AZ_RTTI(BuilderModule, "{1D3566CB-9F75-4FCA-BBAD-09BC374F9171}", AZ::Module);
- BuilderModule()
- {
- m_descriptors.insert(m_descriptors.end(), {
- ShaderPlatformInterfaceSystemComponent::CreateDescriptor()
- });
- }
- AZ::ComponentTypeList GetRequiredSystemComponents() const override
- {
- return
- {
- azrtti_typeid<ShaderPlatformInterfaceSystemComponent>(),
- };
- }
- };
- } // namespace Null
- } // namespace AZ
- #if defined(O3DE_GEM_NAME)
- AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME, _Builders), AZ::Null::BuilderModule)
- #else
- AZ_DECLARE_MODULE_CLASS(Gem_Atom_RHI_Null_Builders, AZ::Null::BuilderModule)
- #endif
|