12345678910111213141516171819202122232425 |
- /*
- * 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
- *
- */
- #if !defined(AZ_MONOLITHIC_BUILD)
- #include <Atom/RPI.Public/SceneBus.h>
- #include <Atom/RPI.Public/Shader/ShaderReloadNotificationBus.h>
- #include <AzCore/PlatformDef.h>
- #include <AzCore/Serialization/SerializeContext.h>
- extern "C" AZ_DLL_EXPORT void CleanUpRpiPublicGenericClassInfo()
- {
- AZ::GetCurrentSerializeContextModule().Cleanup();
- }
- #endif
- DECLARE_EBUS_INSTANTIATION_DLL_MULTI_ADDRESS(RPI::SceneNotification);
- DECLARE_EBUS_INSTANTIATION_DLL_MULTI_ADDRESS(RPI::ShaderReloadNotifications);
|