/* * 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 #include #include namespace AZ::Render { void RenderDebugComponentConfig::Reflect(ReflectContext* context) { if (auto serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(0) // Auto-gen serialize context code... #define SERIALIZE_CLASS RenderDebugComponentConfig #include #include #include #undef SERIALIZE_CLASS ; } } void RenderDebugComponentConfig::CopySettingsFrom(RenderDebugSettingsInterface* settings) { if (!settings) { return; } #define COPY_SOURCE settings #include #include #include #undef COPY_SOURCE } void RenderDebugComponentConfig::CopySettingsTo(RenderDebugSettingsInterface* settings) { if (!settings) { return; } #define COPY_TARGET settings #include #include #include #undef COPY_TARGET } }