diff --git a/Code/Editor/Clipboard.h b/Code/Editor/Clipboard.h index 8dc276bf21..84b7bf0821 100644 --- a/Code/Editor/Clipboard.h +++ b/Code/Editor/Clipboard.h @@ -54,10 +54,9 @@ private: AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING static XmlNodeRef m_node; - AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING static QString m_title; - static QVariant s_pendingPut; + AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING QWidget* m_parent; QTimer m_putDebounce; diff --git a/Code/Editor/CryEditDoc.h b/Code/Editor/CryEditDoc.h index 73de671dd0..574f8eb7da 100644 --- a/Code/Editor/CryEditDoc.h +++ b/Code/Editor/CryEditDoc.h @@ -16,6 +16,7 @@ #include #include #include +#include #endif class CClouds; diff --git a/Code/Editor/Include/IEditorClassFactory.h b/Code/Editor/Include/IEditorClassFactory.h index d20474b043..0827dc96dc 100644 --- a/Code/Editor/Include/IEditorClassFactory.h +++ b/Code/Editor/Include/IEditorClassFactory.h @@ -15,6 +15,7 @@ #pragma once #include +#include #define DEFINE_UUID(l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ static const GUID uuid() { return { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }; } @@ -69,7 +70,6 @@ enum #include "SandboxAPI.h" class QObject; -class QString; //! System class IDs @@ -121,19 +121,9 @@ struct IClassDesc //! create panel. virtual QString Category() = 0; -#ifdef QSTRING_H virtual QString MenuSuggestion() { return QString(); } virtual QString Tooltip() { return QString(); } virtual QString Description() { return QString(); } -#else - //! This method returns the desired menu in which this plugin class would like to be placed in the editor. - //! It is up to the editor to determine if it can and wants to fulfill this request. - virtual QString MenuSuggestion(); - //! This method returns the tooltip for the pane - virtual QString Tooltip(); - //! This method returns the description for the pane - virtual QString Description(); -#endif //! This method returns if the plugin should have a menu item for its pane. virtual bool ShowInMenu() const { return true; } diff --git a/Code/Editor/Include/IIconManager.h b/Code/Editor/Include/IIconManager.h index c176d4ef8b..4925e47ae8 100644 --- a/Code/Editor/Include/IIconManager.h +++ b/Code/Editor/Include/IIconManager.h @@ -15,6 +15,8 @@ struct IStatObj; struct IMaterial; class CBitmap; +class QImage; + // Note: values are used as array indices enum EStatObject { diff --git a/Code/Editor/Include/IObjectManager.h b/Code/Editor/Include/IObjectManager.h index a61922a792..ce9d69681b 100644 --- a/Code/Editor/Include/IObjectManager.h +++ b/Code/Editor/Include/IObjectManager.h @@ -11,6 +11,10 @@ #define CRYINCLUDE_EDITOR_INCLUDE_IOBJECTMANAGER_H #pragma once +#include +#include +#include + // forward declarations. class CEntityObject; struct DisplayContext; @@ -24,6 +28,8 @@ class CViewport; struct HitContext; enum class ImageRotationDegrees; struct IStatObj; +class CBaseObject; +class XmlNodeRef; #include "ObjectEvent.h" diff --git a/Code/Editor/MainWindow.h b/Code/Editor/MainWindow.h index 1f82659ba2..e70355827c 100644 --- a/Code/Editor/MainWindow.h +++ b/Code/Editor/MainWindow.h @@ -11,6 +11,7 @@ #if !defined(Q_MOC_RUN) #include #include +#include #include #include diff --git a/Code/Editor/Objects/DisplayContext.h b/Code/Editor/Objects/DisplayContext.h index 2eaebad271..4b09d4afe9 100644 --- a/Code/Editor/Objects/DisplayContext.h +++ b/Code/Editor/Objects/DisplayContext.h @@ -31,6 +31,7 @@ struct IRenderAuxGeom; struct IIconManager; class CDisplaySettings; class CCamera; +class QPoint; enum DisplayFlags { diff --git a/Code/Editor/Objects/DisplayContextShared.inl b/Code/Editor/Objects/DisplayContextShared.inl index 0b727cf063..1791c22443 100644 --- a/Code/Editor/Objects/DisplayContextShared.inl +++ b/Code/Editor/Objects/DisplayContextShared.inl @@ -13,6 +13,7 @@ #include "IEditor.h" #include "Include/IIconManager.h" #include "Include/IDisplayViewport.h" +#include #include #include diff --git a/Code/Editor/Objects/SelectionGroup.h b/Code/Editor/Objects/SelectionGroup.h index fb30e34212..8f6feb32ad 100644 --- a/Code/Editor/Objects/SelectionGroup.h +++ b/Code/Editor/Objects/SelectionGroup.h @@ -20,6 +20,8 @@ class CBaseObject; #include "ObjectEvent.h" #include "Objects/BaseObject.h" +#include + /*! * CSelectionGroup is a named selection group of objects. */ diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp index 44f862c68d..3f4cd1b566 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp @@ -6,7 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" #include "ComponentEntityEditorPlugin.h" #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h deleted file mode 100644 index 4dc6a45790..0000000000 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * 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 - -///////////////////////////////////////////////////////////////////////////// -// Engine -///////////////////////////////////////////////////////////////////////////// -#include -#include -#include -#include -#include -#include - -///////////////////////////////////////////////////////////////////////////// -// STL -///////////////////////////////////////////////////////////////////////////// -#include -#include -#include -#include -#include - -#ifdef CreateDirectory -#undef CreateDirectory -#endif diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp index f02723f2c3..85730d327b 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "ComponentEntityObject.h" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp index d90fefa77b..874868b5bc 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "SandboxIntegration.h" #include @@ -83,6 +81,7 @@ #include #include #include +#include #include #include "CryEdit.h" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp index 7053a93599..2cd34ec1b9 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include #include #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp index 3296ca7462..03daae4f61 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp @@ -6,15 +6,11 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include #include #include -using namespace AZ; - // Handle asserts class ToolsFrameworkHook : public AZ::Test::ITestEnvironment @@ -22,12 +18,12 @@ class ToolsFrameworkHook public: void SetupEnvironment() override { - AllocatorInstance::Create(); + AZ::AllocatorInstance::Create(); } void TeardownEnvironment() override { - AllocatorInstance::Destroy(); + AZ::AllocatorInstance::Destroy(); } }; diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp index 081d219506..0d661349a9 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp @@ -6,8 +6,7 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - +#include #include "CryEdit.h" #include "AssetCatalogModel.h" #include "Objects/ComponentEntityObject.h" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp index 029f57f7c4..cd157fe838 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "CategoriesList.h" ComponentCategoryList::ComponentCategoryList(QWidget* parent /*= nullptr*/) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp index cc46d267ca..f7f2b721b7 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "ComponentDataModel.h" #include "Include/IObjectManager.h" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp index 3c1a6037c2..78d3e51e4d 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "ComponentPaletteWindow.h" #include "ComponentDataModel.h" #include "FavoriteComponentList.h" @@ -27,6 +25,7 @@ #include #include +#include ComponentPaletteWindow::ComponentPaletteWindow(QWidget* parent) : QMainWindow(parent) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h index 7f62fbf96a..f662f69342 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h @@ -9,7 +9,9 @@ #pragma once #if !defined(Q_MOC_RUN) +#include #include +#include #endif namespace AzToolsFramework diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp index 1aa021734e..41eed6f93f 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "FavoriteComponentList.h" #include #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp index 6d17b2a798..2431653e36 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "ComponentDataModel.h" #include "FavoriteComponentList.h" #include "FilteredComponentList.h" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp index 2698c06bf5..dd6a53f3ac 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "InformationPanel.h" // TODO: LMBR-28174 diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp index 7023b144d8..e3b8b8e39e 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "OutlinerDisplayOptionsMenu.h" #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp index eeb92bd162..50d111d9b3 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "OutlinerListModel.hxx" #include @@ -65,6 +63,7 @@ #include #include +#include //////////////////////////////////////////////////////////////////////////// // OutlinerListModel diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp index a0a9125c7d..e29c771628 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp @@ -5,10 +5,9 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "OutlinerSearchWidget.h" +#include #include #include #include @@ -16,6 +15,7 @@ #include #include #include +#include namespace AzQtComponents { diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h index 21b63d7a0d..7d35576ba3 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h @@ -19,6 +19,7 @@ #if !defined(DEFINED_QMETATYPE_UUID) #define DEFINED_QMETATYPE_UUID +#include Q_DECLARE_METATYPE(AZ::Uuid); #endif diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp index 2b10971fb6..1ae011c3fe 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "OutlinerSortFilterProxyModel.hxx" #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp index dca4b48f5f..017f59cdc3 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "OutlinerTreeView.hxx" #include "OutlinerListModel.hxx" @@ -19,6 +17,7 @@ #include #include #include +#include OutlinerTreeView::OutlinerTreeView(QWidget* pParent) : QTreeView(pParent) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp index 8f0db494db..6e16ab6557 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp @@ -5,8 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ComponentEntityEditorPlugin_precompiled.h" +#include #include "MainWindow.h" // for MainWindow #include "OutlinerListModel.hxx" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp index bcc639604e..4dba832414 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "UI/QComponentEntityEditorMainWindow.h" #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h index d161c64e80..0bafabeb9b 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h @@ -11,6 +11,8 @@ #include #include + +#include #endif class QObjectPropertyModel; diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp index 1469bff332..9d0b348eaf 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp @@ -6,8 +6,7 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - +#include #include "CryEdit.h" #include "UI/QComponentEntityEditorOutlinerWindow.h" #include "UI/Outliner/OutlinerWidget.hxx" diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp index 4d20aab9c1..55bef2429b 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp @@ -6,8 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - #include "UI/QComponentLevelEntityEditorMainWindow.h" #include diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake index cf5bde8aa6..c663926618 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake @@ -12,7 +12,6 @@ set(FILES ComponentEntityEditorPlugin.cpp SandboxIntegration.h SandboxIntegration.cpp - ComponentEntityEditorPlugin_precompiled.h UI/QComponentEntityEditorMainWindow.h UI/QComponentEntityEditorMainWindow.cpp UI/QComponentLevelEntityEditorMainWindow.h diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp index 225601f7b7..bdc0897c82 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp @@ -6,15 +6,6 @@ * */ -#include "ComponentEntityEditorPlugin_precompiled.h" - -// All plugins suffer from the following warning: -// warning C4273: 'GetIEditor' : inconsistent dll linkage -// GetIEditor() is forward-declared using EDITOR_CORE_API, which without EDITOR_CORE set, -// results in dllimport rather than dllexport. This define ensure it's consistently and -// properly defined for export. -#define EDITOR_CORE - #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp index fbc310d793..488c6728fd 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorAssetImporter_precompiled.h" #include #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp index 06c7100a79..db6e355799 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorAssetImporter_precompiled.h" #include #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp index 9e2810758b..4203bc67cd 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorAssetImporter_precompiled.h" #include #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp index 4deec553b2..f9b2c6c023 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorAssetImporter_precompiled.h" #include #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h index 88beacc18d..1c62b08c19 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h @@ -15,10 +15,12 @@ ///////////////////////////////////////////////////////////////////////////// #if !defined(Q_MOC_RUN) +#include #include #include #include #include +#include #endif namespace AZStd diff --git a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp index 9d865a7c41..34527e598a 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorAssetImporter_precompiled.h" #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/Main.cpp b/Code/Editor/Plugins/EditorAssetImporter/Main.cpp index 8cfa40397e..cc307b1d50 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/Main.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/Main.cpp @@ -12,14 +12,10 @@ // ///////////////////////////////////////////////////////////////////////////// -#include "EditorAssetImporter_precompiled.h" #include "AssetImporterPlugin.h" -#if defined(AZ_PLATFORM_WINDOWS) -#define WIN32_LEAN_AND_MEAN -#include -#endif +#include #include PLUGIN_API IPlugin* CreatePluginInstance(PLUGIN_INIT_PARAM* pInitParam) diff --git a/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp index 3922ada3b7..441fb362d6 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorAssetImporter_precompiled.h" #include #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake b/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake index 1df08818a6..0a7764696a 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake +++ b/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake @@ -20,7 +20,6 @@ set(FILES SceneSerializationHandler.h SceneSerializationHandler.cpp Main.cpp - EditorAssetImporter_precompiled.h AssetImporter.qrc AssetImporterWindow.ui ImporterRootDisplay.ui diff --git a/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp b/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp index 67d766a7da..e0bec93564 100644 --- a/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp +++ b/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorCommon_precompiled.h" #include #include diff --git a/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp b/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp index fe6ac09ac6..dab7511779 100644 --- a/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp +++ b/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp @@ -7,5 +7,4 @@ */ -#include "EditorCommon_precompiled.h" #include "../../Editor/RenderHelpers/AxisHelperShared.inl" diff --git a/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp b/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp index 2c19a4f228..f0a82ba13c 100644 --- a/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp +++ b/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp @@ -6,6 +6,4 @@ * */ - -#include "EditorCommon_precompiled.h" #include "../../Editor/Objects/DisplayContextShared.inl" diff --git a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp index babee8139f..866a8206d6 100644 --- a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp +++ b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp @@ -7,7 +7,6 @@ */ -#include "EditorCommon_precompiled.h" #include "Ruler.h" #include @@ -44,7 +43,7 @@ namespace DrawingPrimitives const float ticksMinPower = log10f(RULER_MIN_PIXELS_PER_TICK); const float ticksPowerDelta = ticksMinPower - log10f(pixelsPerUnit); - const int digitsAfterPoint = max(-int(ceil(ticksPowerDelta)) - 1, 0); + const int digitsAfterPoint = AZStd::max(-int(ceil(ticksPowerDelta)) - 1, 0); if (pRulerPrecision) { *pRulerPrecision = digitsAfterPoint; @@ -160,7 +159,7 @@ namespace DrawingPrimitives char format[16] = ""; - sprintf_s(format, "%%.%df", rulerPrecision); + azsprintf(format, "%%.%df", rulerPrecision); const int height = options.m_rect.height(); const int top = options.m_rect.top(); diff --git a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp index 7edcb3991f..4774520d0c 100644 --- a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp +++ b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp @@ -7,7 +7,6 @@ */ -#include "EditorCommon_precompiled.h" #include "TimeSlider.h" #include diff --git a/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp b/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp index 0ad05e73a1..dc4b021a91 100644 --- a/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp +++ b/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp @@ -5,13 +5,14 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "EditorCommon_precompiled.h" #include #include "EditorCommon.h" #include "EditorCommonAPI.h" +#include + CEditorCommonApp::CEditorCommonApp() { } diff --git a/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h b/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h deleted file mode 100644 index 94e66eb459..0000000000 --- a/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * 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 - -#ifndef VC_EXTRALEAN -#define VC_EXTRALEAN -#endif - -// These redicilous dependencies are needed just to be able to use -// Sandbox gizmos drawing and hit-testing code =( - -#include "ISystem.h" -#include "Include/EditorCoreAPI.h" -#include "Util/EditorUtils.h" - diff --git a/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp b/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp index 33deb3ec34..7d97e6f580 100644 --- a/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp +++ b/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp @@ -7,7 +7,6 @@ */ -#include "EditorCommon_precompiled.h" #include "platform.h" #pragma warning(disable: 4266) // disabled warning from afk overrides diff --git a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp index 517d4f70a8..0b514513ca 100644 --- a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp +++ b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorCommon_precompiled.h" #include #include #include diff --git a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp index e3da61a7e3..3ffa1b1b99 100644 --- a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp +++ b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp @@ -6,7 +6,6 @@ * */ -#include "EditorCommon_precompiled.h" #include namespace WinWidget diff --git a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h index 0585b80f85..968f3ea6d2 100644 --- a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h +++ b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h @@ -14,6 +14,8 @@ #include #include +class QWidget; + namespace WinWidget { class EDITOR_COMMON_API WinWidgetManager diff --git a/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake b/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake index 4956b275af..c1f1a531e8 100644 --- a/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake +++ b/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake @@ -11,7 +11,6 @@ set(FILES EditorCommon.cpp EditorCommon.rc EditorCommonAPI.h - EditorCommon_precompiled.h ActionOutput.h ActionOutput.cpp UiEditorDLLBus.h diff --git a/Code/Editor/Plugins/EditorCommon/stdafx.cpp b/Code/Editor/Plugins/EditorCommon/stdafx.cpp deleted file mode 100644 index be06122f1f..0000000000 --- a/Code/Editor/Plugins/EditorCommon/stdafx.cpp +++ /dev/null @@ -1,14 +0,0 @@ -/* - * 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 - * - */ - - -// stdafx.cpp : source file that includes just the standard includes -// EditorCommon.pch will be the pre-compiled header -// stdafx.obj will contain the pre-compiled type information - -#include "EditorCommon_precompiled.h" diff --git a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp index 1e5fbc82dc..dd2a1d602a 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp +++ b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp @@ -7,7 +7,6 @@ */ -#include "FFMPEGPlugin_precompiled.h" #include "FFMPEGPlugin.h" #include "CryString.h" typedef CryStringT string; diff --git a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h deleted file mode 100644 index 6849eacc2e..0000000000 --- a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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 - -#include "resource.h" - -///////////////////////////////////////////////////////////////////////////// -// CRY Stuff //////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////// -#include - -///////////////////////////////////////////////////////////////////////////// -// CRY Stuff //////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////// -#include -#include "EditorCoreAPI.h" diff --git a/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake b/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake index 20cbfccc7f..779fc816f4 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake +++ b/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake @@ -9,7 +9,6 @@ set(FILES FFMPEGPlugin.rc main.cpp - FFMPEGPlugin_precompiled.h FFMPEGPlugin.cpp FFMPEGPlugin.h ) diff --git a/Code/Editor/Plugins/FFMPEGPlugin/main.cpp b/Code/Editor/Plugins/FFMPEGPlugin/main.cpp index b0d3edc002..3432a9975e 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/main.cpp +++ b/Code/Editor/Plugins/FFMPEGPlugin/main.cpp @@ -6,8 +6,6 @@ * */ - -#include "FFMPEGPlugin_precompiled.h" #include "FFMPEGPlugin.h" #include "Include/IEditorClassFactory.h" diff --git a/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp index b1b25a2daa..f1f742949c 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp @@ -6,8 +6,6 @@ * */ - -#include "PerforcePlugin_precompiled.h" #include "PerforcePlugin.h" #include "PasswordDlg.h" #include // generated diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp index d6ee5191b5..1da288e2bc 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp @@ -6,8 +6,6 @@ * */ - -#include "PerforcePlugin_precompiled.h" #include "PerforcePlugin.h" #include "PerforceSourceControl.h" #include "Include/ISourceControl.h" diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h deleted file mode 100644 index 3c68ec3671..0000000000 --- a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * 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 - -#include "resource.h" - -///////////////////////////////////////////////////////////////////////////// -// CRY Stuff //////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////// -#include -#include "Util/EditorUtils.h" diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp index cde184be3e..aec613b8df 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp @@ -6,8 +6,6 @@ * */ - -#include "PerforcePlugin_precompiled.h" #include "CryFile.h" #include "PerforceSourceControl.h" #include "PasswordDlg.h" diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h index c3b9311c6c..ec06fdc82a 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h +++ b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h @@ -14,6 +14,7 @@ #include "Include/ISourceControl.h" +#include class CPerforceSourceControl : public ISourceControl diff --git a/Code/Editor/Plugins/PerforcePlugin/main.cpp b/Code/Editor/Plugins/PerforcePlugin/main.cpp index cc1bb2750a..de5b7caec0 100644 --- a/Code/Editor/Plugins/PerforcePlugin/main.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/main.cpp @@ -6,9 +6,6 @@ * */ - -#include "PerforcePlugin_precompiled.h" - #include "PerforcePlugin.h" #include "Include/ISourceControl.h" diff --git a/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake b/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake index bd6e23bbfc..7932c01015 100644 --- a/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake +++ b/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake @@ -17,5 +17,4 @@ set(FILES PerforceSourceControl.cpp PerforceSourceControl.h resource.h - PerforcePlugin_precompiled.h ) diff --git a/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp index 98ea539dfc..05a8298b35 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "DefaultImageValidator.h" #include "PropertyImagePreview.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp index d4f3c19698..b962959e3a 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "FunctorValidator.h" namespace ProjectSettingsTool diff --git a/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h b/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h index bef194bd5b..a41406480a 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h @@ -10,6 +10,7 @@ #include +#include namespace ProjectSettingsTool { diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp index 64695429b4..d11cc04ba0 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PlatformSettings_Android.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp index bbf5f6e1f1..eff524b13e 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PlatformSettings_Base.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp index 0e613f31d7..fd6aef019e 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PlatformSettings_Ios.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp index 04151e4399..3092e232e2 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PlistDictionary.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp index 1a0d2b73b4..a7a238d241 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp @@ -6,13 +6,13 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "ProjectSettingsContainer.h" #include #include #include +#include #include namespace ProjectSettingsTool diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h index be10e44c4c..8cba7c4cd4 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h @@ -15,6 +15,8 @@ #include #include #include +#include +#include #include diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp index a7e5de9f2f..8b959b93bc 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp @@ -6,7 +6,7 @@ * */ -#include "ProjectSettingsTool_precompiled.h" +#include #include "ProjectSettingsSerialization.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp index e4394c264a..6b454474be 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp @@ -6,7 +6,7 @@ * */ -#include "ProjectSettingsTool_precompiled.h" +#include #include "ProjectSettingsToolWindow.h" #include "ui_ProjectSettingsToolWidget.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h deleted file mode 100644 index 0412966e13..0000000000 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * 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 - -///////////////////////////////////////////////////////////////////////////// -// Engine -///////////////////////////////////////////////////////////////////////////// -#include -#include - diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp index ba7bfdf0ef..4193e29c99 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "ProjectSettingsValidator.h" #include "Validators.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp index f77f05ad6d..0cb66c436c 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PropertyFileSelect.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp index 29ffe2cf2e..6a49a93452 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PropertyFuncValBrowseEdit.h" #include "PlatformSettings_common.h" #include "ValidationHandler.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp index 16f785b01c..d74a72f28b 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PropertyFuncValLineEdit.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp index db99a15446..44cbf90ac0 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PropertyImagePreview.h" #include "DefaultImageValidator.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp index 8e7fc158e8..b48155f1f8 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "PropertyLinked.h" #include "PlatformSettings_common.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp b/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp index c44a4c25f7..0e171adf04 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "Utils.h" #include "LastPathBus.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp index 98c7265e39..f397740f12 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp @@ -6,8 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" - #include "ValidationHandler.h" #include "PropertyFuncValLineEdit.h" diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp b/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp index 6aaab92dbb..e8bb900be9 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp @@ -6,7 +6,6 @@ * */ -#include "ProjectSettingsTool_precompiled.h" #include "Validators.h" #include diff --git a/Code/Editor/Plugins/ProjectSettingsTool/main.cpp b/Code/Editor/Plugins/ProjectSettingsTool/main.cpp index a1b523c6d5..70c5779a68 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/main.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/main.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ProjectSettingsTool_precompiled.h" #include #include diff --git a/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake b/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake index 3a1853f709..b4585203a5 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake +++ b/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake @@ -8,7 +8,6 @@ set(FILES main.cpp - ProjectSettingsTool_precompiled.h DefaultImageValidator.cpp DefaultImageValidator.h FunctorValidator.cpp diff --git a/Code/Editor/QtViewPaneManager.h b/Code/Editor/QtViewPaneManager.h index 1b5766ef5f..49440068a0 100644 --- a/Code/Editor/QtViewPaneManager.h +++ b/Code/Editor/QtViewPaneManager.h @@ -8,10 +8,6 @@ #pragma once -#if !defined(Q_MOC_RUN) -#include "Include/EditorCoreAPI.h" -#endif - #if !defined(Q_MOC_RUN) #include "Include/EditorCoreAPI.h" #include diff --git a/Code/Editor/RenderHelpers/AxisHelper.h b/Code/Editor/RenderHelpers/AxisHelper.h index f1f75ac1b9..b7d246d48c 100644 --- a/Code/Editor/RenderHelpers/AxisHelper.h +++ b/Code/Editor/RenderHelpers/AxisHelper.h @@ -17,6 +17,8 @@ struct DisplayContext; struct HitContext; struct IDisplayViewport; +class QPoint; + ////////////////////////////////////////////////////////////////////////// struct SGizmoParameters { diff --git a/Code/Editor/StringDlg.h b/Code/Editor/StringDlg.h index 69ea3d2132..a1ee3908c7 100644 --- a/Code/Editor/StringDlg.h +++ b/Code/Editor/StringDlg.h @@ -14,6 +14,7 @@ #include #include +#include ///////////////////////////////////////////////////////////////////////////// // StringDlg Qt dialog diff --git a/Code/Editor/Util/EditorUtils.h b/Code/Editor/Util/EditorUtils.h index 661862c48d..fb767c98b3 100644 --- a/Code/Editor/Util/EditorUtils.h +++ b/Code/Editor/Util/EditorUtils.h @@ -14,7 +14,7 @@ #define CRYINCLUDE_EDITOR_UTIL_EDITORUTILS_H #pragma once - +#include #include #include "Util/FileUtil.h" #include diff --git a/Code/Editor/Util/Math.h b/Code/Editor/Util/Math.h index 8d3f54d6d7..66bbf883e8 100644 --- a/Code/Editor/Util/Math.h +++ b/Code/Editor/Util/Math.h @@ -13,6 +13,7 @@ #define CRYINCLUDE_EDITOR_UTIL_MATH_H #pragma once +#include //! Half PI #define PI_HALF (3.1415926535897932384626433832795f / 2.0f) diff --git a/Code/Editor/Util/RefCountBase.h b/Code/Editor/Util/RefCountBase.h index 7f2039bdeb..158d245a41 100644 --- a/Code/Editor/Util/RefCountBase.h +++ b/Code/Editor/Util/RefCountBase.h @@ -15,6 +15,7 @@ #pragma once #include +#include //! Derive from this class to get reference counting in your class. class EDITOR_CORE_API CRefCountBase diff --git a/Code/Editor/Util/StringHelpers.cpp b/Code/Editor/Util/StringHelpers.cpp index 6c9f8b765a..836090e923 100644 --- a/Code/Editor/Util/StringHelpers.cpp +++ b/Code/Editor/Util/StringHelpers.cpp @@ -15,11 +15,7 @@ #include #include -#if defined(AZ_PLATFORM_WINDOWS) -#define WIN32_LEAN_AND_MEAN -#include // WideCharToMultibyte(), CP_UTF8, etc. -#endif - +#include // WideCharToMultibyte(), CP_UTF8, etc. #include static inline char ToLower(const char c) diff --git a/Code/Editor/WipFeatureManager.cpp b/Code/Editor/WipFeatureManager.cpp index 21718ff704..6777065c1c 100644 --- a/Code/Editor/WipFeatureManager.cpp +++ b/Code/Editor/WipFeatureManager.cpp @@ -446,7 +446,7 @@ void CWipFeatureManager::SetFeatureUpdateCallback(int aFeatureId, TWipFeatureUpd m_features[aFeatureId].m_pfnUpdateFeature = pfnUpdate; } -std::map& CWipFeatureManager::GetFeatures() +AZStd::map& CWipFeatureManager::GetFeatures() { return m_features; } diff --git a/Code/Editor/WipFeatureManager.h b/Code/Editor/WipFeatureManager.h index cfd7fd2858..52ed364524 100644 --- a/Code/Editor/WipFeatureManager.h +++ b/Code/Editor/WipFeatureManager.h @@ -11,6 +11,9 @@ #define CRYINCLUDE_EDITOR_WIPFEATUREMANAGER_H #pragma once +#include +#include + /* This class is used to control work in progress features at runtime, so QA can test even if the end user will not see those features You can use the console command: e_wipfeature enable|disable|hide|show|safemode|fullmode @@ -73,14 +76,14 @@ public: {} int m_id; - string m_displayName, m_params; + AZStd::string m_displayName, m_params; bool m_bVisible, m_bEnabled, m_bSafeMode, // if true, this feature will be saved into the xml file when Save(...) will be called m_bSaveToXml, m_bLoadedFromXml; TWipFeatureUpdateCallback m_pfnUpdateFeature; }; - typedef std::map TWipFeatures; + typedef AZStd::map TWipFeatures; private: @@ -96,7 +99,7 @@ public: if (!s_pInstance) { s_pInstance = new CWipFeatureManager(); - assert(s_pInstance); + AZ_Assert(s_pInstance, "Could not construct CWipFeatureManager"); } return s_pInstance; diff --git a/Code/Framework/AzCore/AzCore/std/function/function_template.h b/Code/Framework/AzCore/AzCore/std/function/function_template.h index 7e744e44cc..4f7d41dbd9 100644 --- a/Code/Framework/AzCore/AzCore/std/function/function_template.h +++ b/Code/Framework/AzCore/AzCore/std/function/function_template.h @@ -10,6 +10,7 @@ #include #include #include +#include #if defined(AZ_COMPILER_MSVC) # pragma warning( push ) diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h index 63e8a4ce70..451ba1763a 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h @@ -9,3 +9,16 @@ #pragma once #include + +#define __STDC_FORMAT_MACROS +#include + +// types like AZ::u64 require an usigned long long, but inttypes.h has it as unsigned long +#undef PRIX64 +#undef PRIx64 +#undef PRId64 +#undef PRIu64 +#define PRIX64 "llX" +#define PRIx64 "llx" +#define PRId64 "lld" +#define PRIu64 "llu" diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h index 6a9a4476dd..616dbdab67 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h @@ -8,6 +8,7 @@ #pragma once #include "time_UnixLike.h" +#include /** * This file is to be included from the semaphore.h only. It should NOT be included by the user. diff --git a/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h b/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h index 04adc54a04..b6a2694417 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h @@ -13,6 +13,9 @@ namespace Physics { + class ShapeConfiguration; + class MaterialSelection; + /// Listens to requests for physics materials. class PhysicsMaterialRequests : public AZ::EBusTraits diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp b/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp index 835bd62aff..dc4b31c9be 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp @@ -5,10 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include -#include -#include -#include + +#include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp index aa3582dfc4..970f5aa28c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp index cdd14d9291..313106ed2e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp index 39993aecac..5a1e491b01 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" - #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp index 2a3ca5419a..3547cf57b3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp index ce4be98dbc..7daf573c99 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h index 189956d992..4d14e5c1bf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h @@ -11,6 +11,7 @@ #include #include #include +#include namespace AZ { namespace Data { class AssetData; } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp index 0efef45b52..6caea5a537 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "AssetEditorHeader.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h index 77f46600f6..0b615cb230 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h @@ -9,6 +9,7 @@ #include #include +#include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp index 3b31a8996c..744b87d753 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "AssetEditorWidget.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h deleted file mode 100644 index 44f895aac8..0000000000 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * 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 -#include - -// QT -AZ_PUSH_DISABLE_WARNING(4127, "-Wunknown-warning-option") // conditional expression is constant -#include -AZ_POP_DISABLE_WARNING -#include -#include -#include -#include - -#if defined(AZ_PLATFORM_APPLE_OSX) || defined(AZ_PLATFORM_LINUX) -typedef void* HWND; -typedef void* HMODULE; -typedef quint32 DWORD; -#define _MAX_PATH 260 -#define MAX_PATH 260 -#endif diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp index 03777c21dd..771e0df505 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "BaseSliceCommand.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp index 9c8d3cadf5..8060af3cf2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "CreateSliceCommand.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp index 63c931b047..e755e10e9f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "DetachSubSliceInstanceCommand.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp index 93d71b1576..9f251bee7a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EntityStateCommand.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp index 310bebe252..72719a1bf3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #if 0 diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp index 0920d60ac3..4d84089a74 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp index d63bc8d720..47a62d6915 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PushToSliceCommand.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp index db6e5269c0..33b2a14b89 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "SelectionCommand.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp index 9945e666b6..13d6cb605f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "SliceDetachEntityCommand.h" namespace AzToolsFramework diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp index 4be2c4a27a..b45ffdd31d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp index 2629d08852..97f8af1653 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp index aeff008908..860c12b11a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorEntityModel.h" #include "EditorEntitySortBus.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp index 25c9492808..f8e0b92b32 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "SliceDataFlagsCommand.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp index 9549a02154..f9cbb7722f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp index 9cb0524bec..36f647e4c2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp index 742987324d..15b330c65b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp index ea243788a3..6ef0c83991 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include #include @@ -62,6 +61,7 @@ #include AZ_PUSH_DISABLE_WARNING(4251 4244, "-Wunknown-warning-option") // 4251: class '...' needs to have dll-interface to be used by clients of class '...' // 4244: 'argument': conversion from 'int' to 'float', possible loss of data +#include #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp index 4fe90a57c5..5fa204da0b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp index 7fa93cf0e5..4ad409507e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp index bacc4efcde..eee1fe75d6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp index a042368e53..44ad9de7ad 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp index 6d950b781d..21b1ac01bc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentAssetMimeDataContainer.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h index 37948a148f..6cec35e2de 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h @@ -14,6 +14,8 @@ #include #include +#include + namespace AZ { struct ClassDataReflection; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp index 04213aca00..b5c7273920 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorAssetMimeDataContainer.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h index a9af21114f..8a79748bd7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h @@ -14,6 +14,8 @@ #include #include +#include + namespace AZ { struct ClassDataReflection; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp index b642603930..20750c5902 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorAssetReference.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp index 3daabb1484..5b88fda22a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorComponentBase.h" #include "TransformComponent.h" #include "SelectionComponent.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp index beeb336668..1ca9f2fe8e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorDisabledCompositionComponent.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp index 3e7d6978be..b600fda587 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorEntityIconComponent.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp index e46ad1dca7..3bc9aca0fe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorEntityIdContainer.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp index e4cf862957..6b897efdf8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorLayerComponent.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp index 1ac230e258..39b39fb144 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorLockComponent.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp index 178a708463..eba09bb18b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp index f0c21c2104..71408c8bca 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorPendingCompositionComponent.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp index e1391abce0..ff9eb025d7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorSelectionAccentSystemComponent.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp index 3a30be09da..ab30677219 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EditorVisibilityComponent.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp index ff1a2ccaa4..34fd62a054 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp index ef1b24c575..0e98400669 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp @@ -6,10 +6,10 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "LayerResult.h" #include +#include namespace AzToolsFramework { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h index b26ba37c21..e96eb218c5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h @@ -7,6 +7,8 @@ */ #pragma once +#include + namespace AzToolsFramework { namespace Layers diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp index 0885cddbf9..d5d50bc0d1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp @@ -7,7 +7,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp index 7cbdf17a5e..5bc4e9065e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "SelectionComponent.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp index 6def27fb78..f57e2828dc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "TransformComponent.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp index 8c5ec9d112..4d0297057b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentPaletteModel.hxx" namespace AzToolsFramework diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp index de459b5706..abc66d1a66 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentPaletteModelFilter.hxx" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp index 359eb8d701..3ccb4065bf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentPaletteUtil.hxx" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp index a57662a67f..afa7edc565 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentPaletteModel.hxx" #include "ComponentPaletteUtil.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp index 18027d305e..7227d303c4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp @@ -6,6 +6,7 @@ * */ +#include #include AZ_PUSH_DISABLE_WARNING(4251 4244 4458, "-Wunknown-warning-option") // 4251: 'QTextStream::d_ptr': class 'QScopedPointer>' needs to have dll-interface to be used by clients of class 'QTextStream' diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp index cdd3c3f93c..7d3b13b04f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "AddToLayerMenu.h" #include @@ -22,6 +21,7 @@ AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QLayoutItem::align #include #include AZ_POP_DISABLE_WARNING +#include namespace AzToolsFramework { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp index 2d057905a1..2ed70d81b8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp @@ -6,12 +6,13 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include #include "EditorFrameworkAPI.h" +#include + namespace LegacyFramework { const char* appName() diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h index 45847311a0..362812d7a2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h @@ -6,16 +6,15 @@ * */ -#ifndef EditorFrameworkAPI_H -#define EditorFrameworkAPI_H +#pragma once #include #include #include +#include +#include #include -#pragma once - // this file contains the API for the buses that the framework communicates on to NON-GUI-CLIENTS // note that this does not include UI messaging, this is for non-ui parts of it! @@ -24,10 +23,6 @@ namespace AZ class SerializeContext; } -#ifdef AZ_PLATFORM_WINDOWS - typedef HINSTANCE HMODULE; -#endif - namespace LegacyFramework { // we agree that an entity list is a list of entity IDs @@ -220,9 +215,7 @@ namespace LegacyFramework /** (Windows) retrieves the main module of the executable. * This is always going to be the main executable except in the situation where the framework may be running as a DLL belonging to another process or program. */ -#ifdef AZ_PLATFORM_WINDOWS - virtual HMODULE GetMainModule() = 0; -#endif + virtual void* GetMainModule() = 0; virtual const char* GetApplicationName() = 0; virtual const char* GetApplicationModule() = 0; @@ -329,5 +322,3 @@ namespace LegacyFramework typedef AZ::EBus IPCCommandBus; }; - -#endif diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp index 9c82299e77..503cbc1d65 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include "EditorFrameworkApplication.h" @@ -54,11 +53,12 @@ AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QFileInfo::d_ptr': AZ_POP_DISABLE_OVERRIDE_WARNING #include #include +#include namespace LegacyFramework { ApplicationDesc::ApplicationDesc(const char* name, int argc, char** argv) - : m_applicationModule(NULL) + : m_applicationModule(nullptr) , m_enableGridmate(true) , m_enablePerforce(true) , m_enableGUI(true) @@ -71,7 +71,7 @@ namespace LegacyFramework m_applicationName[0] = 0; if (name) { - azstrcpy(m_applicationName, _MAX_PATH, name); + azstrcpy(m_applicationName, AZ_MAX_PATH_LEN, name); } } @@ -91,7 +91,7 @@ namespace LegacyFramework m_enableGUI = other.m_enableGUI; m_enableGridmate = other.m_enableGridmate; m_enablePerforce = other.m_enablePerforce; - azstrcpy(m_applicationName, _MAX_PATH, other.m_applicationName); + azstrcpy(m_applicationName, AZ_MAX_PATH_LEN, other.m_applicationName); m_enableProjectManager = other.m_enableProjectManager; m_shouldRunAssetProcessor = other.m_shouldRunAssetProcessor; m_saveUserSettings = other.m_saveUserSettings; @@ -105,12 +105,12 @@ namespace LegacyFramework m_isPrimary = true; m_desiredExitCode = 0; m_abortRequested = false; - m_applicationEntity = NULL; - m_ptrSystemEntity = NULL; + m_applicationEntity = nullptr; + m_ptrSystemEntity = nullptr; m_applicationModule[0] = 0; } - HMODULE Application::GetMainModule() + void* Application::GetMainModule() { return m_desc.m_applicationModule; } @@ -372,7 +372,7 @@ namespace LegacyFramework applicationFilePath.append("_app.xml"); - AZ_Assert(applicationFilePath.size() <= _MAX_PATH, "Application path longer than expected"); + AZ_Assert(applicationFilePath.size() <= AZ_MAX_PATH_LEN, "Application path longer than expected"); qstrcpy(m_applicationFilePath, applicationFilePath.c_str()); // load all application entities, if present: diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h index ff15381fa9..bcd9d23203 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h @@ -25,7 +25,7 @@ namespace LegacyFramework { struct ApplicationDesc { - HMODULE m_applicationModule; // only necessary if you want to attach your application as a DLL plugin to another application, hosting it + void* m_applicationModule; // only necessary if you want to attach your application as a DLL plugin to another application, hosting it bool m_enableGUI; // false if you want none of the QT or GUI functionality to exist. You cannot use project manager if you do this. bool m_enableGridmate; // false if you want to not activate the network communications module. bool m_enablePerforce; // false if you want to not activate perforce SCM integration. note that this will eventually become a plugin anyway @@ -36,7 +36,7 @@ namespace LegacyFramework int m_argc; char** m_argv; - char m_applicationName[_MAX_PATH]; + char m_applicationName[AZ_MAX_PATH_LEN]; ApplicationDesc(const char* name = "Application", int argc = 0, char** argv = nullptr); ApplicationDesc(const ApplicationDesc& other); @@ -66,7 +66,7 @@ namespace LegacyFramework virtual bool IsRunningInGUIMode() { return m_desc.m_enableGUI; } virtual bool RequiresGameProject() { return m_desc.m_enableProjectManager; } virtual bool ShouldRunAssetProcessor() { return m_desc.m_shouldRunAssetProcessor; } - virtual HMODULE GetMainModule(); + virtual void* GetMainModule(); virtual const char* GetApplicationName(); virtual const char* GetApplicationModule(); virtual const char* GetApplicationDirectory(); @@ -132,11 +132,11 @@ namespace LegacyFramework void CreateApplicationComponent(); void SaveApplicationEntity(); - char m_applicationModule[_MAX_PATH]; + char m_applicationModule[AZ_MAX_PATH_LEN]; int m_desiredExitCode; bool m_isPrimary; volatile bool m_abortRequested; // if you CTRL+C in a console app, this becomes true. its up to you to check... - char m_applicationFilePath[_MAX_PATH]; + char m_applicationFilePath[AZ_MAX_PATH_LEN]; ApplicationDesc m_desc; AzFramework::CommandLine* m_ptrCommandLineParser; }; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp index a22fd4ebc5..5d2f79f867 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "IPCComponent.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp index 05207a0bc7..f294850214 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp index 0a6eb74bec..a9af59f3a8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "MainWindowSavedState.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp index 75ed4a5c7a..bc16b29830 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "UIFramework.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp index a59e2e1778..e4192b6a90 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "UIFrameworkAPI.h" #include #include @@ -18,6 +17,7 @@ #include #include +#include namespace AzToolsFramework { @@ -49,32 +49,6 @@ namespace AzToolsFramework }; } - static QWindow* windowForWidget(const QWidget* widget) - { - QWindow* window = widget->windowHandle(); - if (window) - { - return window; - } - const QWidget* nativeParent = widget->nativeParentWidget(); - if (nativeParent) - { - return nativeParent->windowHandle(); - } - return 0; - } - - HWND getHWNDForWidget(const QWidget* widget) - { - QWindow* window = windowForWidget(widget); - if (window && window->handle()) - { - QPlatformNativeInterface* itf = QGuiApplication::platformNativeInterface(); - return static_cast(itf->nativeResourceForWindow(QByteArrayLiteral("handle"), window)); - } - return 0; - } - bool GetOverwritePromptResult(QWidget* pParentWidget, const char* assetNameToOvewrite) { OverwritePromptDialog dlg(pParentWidget); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h index 809ed8b407..db1d5ba804 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h @@ -52,9 +52,6 @@ namespace AzToolsFramework // ------------------------------------------------ DESCRIPTOR STRUCTS ---------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------ - // helper function: - HWND getHWNDForWidget(const QWidget* widget); - struct HotkeyDescription { enum Scope diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp index 0327381674..6318bc3e6e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "UIFramework.hxx" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp index 4f498527bf..6db6aae662 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "GenericLogPanel.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp index 0e40959f0a..078dfb5fa2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "LogControl.h" #include "LoggingCommon.h" @@ -20,6 +19,7 @@ AZ_POP_DISABLE_WARNING #include #include #include +#include #include "LogPanel_Panel.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp index 7cf904c435..55c42e2535 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "LogPanel_Panel.h" @@ -33,6 +32,9 @@ AZ_PUSH_DISABLE_WARNING(4244 4251 4800, "-Wunknown-warning-option") // 4244: con // 4800 'QTextEngine *const ': forcing value to bool 'true' or 'false' (performance warning) #include AZ_POP_DISABLE_WARNING +#include +#include + #include #include "NewLogTabDialog.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp index 8d8674e2ce..ecee99f1e3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp index 0fd1052a68..aa37137c82 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "TracePrintFLogPanel.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp index 1ab2c05932..5fa8e9adbe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentEditor.hxx" #include "ComponentEditorHeader.hxx" @@ -36,6 +35,7 @@ AZ_PUSH_DISABLE_WARNING(4251 4244, "-Wunknown-warning-option") // 4251: 'QInputE // 4244: 'return': conversion from 'qreal' to 'int', possible loss of data #include AZ_POP_DISABLE_WARNING +#include #include namespace AzToolsFramework diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp index bf0bdfe914..04d5e1facc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "ComponentEditorHeader.hxx" #include "PropertyRowWidget.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp index ce19b34f41..6ac6270e67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "DHQComboBox.hxx" AZ_PUSH_DISABLE_WARNING(4244 4251, "-Wunknown-warning-option") // 4244: conversion from 'int' to 'float', possible loss of data diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp index e6d8f721cb..76cc168a69 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "DHQSlider.hxx" #include "PropertyQTConstants.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp index 31a5c518b8..2c794fabbb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EntityIdQLabel.hxx" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp index 45342a739d..b2c43751a3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "EntityIdQLineEdit.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp index 2326107b3a..6e54a72b0f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp @@ -8,7 +8,6 @@ #include AZ_PUSH_DISABLE_WARNING(4127, "-Wunknown-warning-option") // conditional expression is constant -#include "AzToolsFramework_precompiled.h" #include "EntityPropertyEditor.hxx" AZ_POP_DISABLE_WARNING diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp index 16580029b2..39faf06f08 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "InstanceDataHierarchy.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp index ba47612ab0..4d95479e33 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyAssetCtrl.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp index eff4247f44..6951d7ae8c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyAudioCtrl.h" #include "PropertyQTConstants.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp index 650b71f95c..094204e5a6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyBoolComboBoxCtrl.hxx" #include "PropertyQTConstants.h" #include "DHQComboBox.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp index a4b167b12c..3306ddf2a4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp index 48ac5d2050..1ffabcbc89 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp @@ -5,13 +5,13 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyButtonCtrl.hxx" #include "PropertyQTConstants.h" #include AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 4251: 'QLayoutItem::align': class 'QFlags' needs to have dll-interface to be used by clients of class 'QLayoutItem' #include AZ_POP_DISABLE_WARNING +#include namespace AzToolsFramework { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp index 7193ac36ad..84d7d37585 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyCRCCtrl.h" #include "PropertyQTConstants.h" #include @@ -15,6 +14,7 @@ AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 4251: 'QLayoutItem: #include AZ_POP_DISABLE_WARNING #include +#include namespace AzToolsFramework { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp index 7000ffcbbd..4bbff769d7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyCheckBoxCtrl.hxx" #include "PropertyQTConstants.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp index 55a5f440e7..2534df50b6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyColorCtrl.hxx" #include "PropertyQTConstants.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp index a966e7ee50..0b9120bcce 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include "PropertyDoubleSliderCtrl.hxx" #include "DHQSlider.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp index a99731983a..58f1192f7c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyDoubleSpinCtrl.hxx" #include "PropertyQTConstants.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp index 66ad87af28..8693ca2d48 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyEditorAPI.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp index be7f31a579..424a110c49 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyEntityIdCtrl.hxx" #include "PropertyQTConstants.h" @@ -34,6 +33,7 @@ AZ_PUSH_DISABLE_WARNING(4244 4251, "-Wunknown-warning-option") // 4244: conversi AZ_POP_DISABLE_WARNING #include #include +#include //just a test to see how it would work to pop a dialog diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp index 8d52c9e283..f49b555dfe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyEnumComboBoxCtrl.hxx" #include "PropertyQTConstants.h" #include "DHQComboBox.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp index ebcadbe415..5fa767d060 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyIntSliderCtrl.hxx" #include "DHQSlider.hxx" #include "PropertyQTConstants.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp index 033b94f85b..afa62bdc21 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyIntSpinCtrl.hxx" #include "PropertyQTConstants.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp index 7386a3d3dc..678693ea32 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyManagerComponent.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp index c8afd29b2a..b9578d4e3a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyRowWidget.hxx" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx index 7404dcff57..8248eb4b86 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx @@ -9,6 +9,7 @@ #pragma once #if !defined(Q_MOC_RUN) +#include AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // class '...' needs to have dll-interface to be used by clients of class '...' #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp index b2e7b26c17..dcf8674d4e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyStringComboBoxCtrl.hxx" #include "PropertyQTConstants.h" #include "DHQComboBox.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp index f1fe3747c3..ea02e93c96 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyStringLineEditCtrl.hxx" #include "PropertyQTConstants.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp index 9c6951a8e9..3e508b8d43 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "PropertyVectorCtrl.hxx" #include "PropertyQTConstants.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp index 33be5ff3ad..ae3bcd6849 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "ReflectedPropertyEditor.hxx" #include "PropertyRowWidget.hxx" #include @@ -18,6 +17,8 @@ #include #include #include +#include +#include AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QTextFormat::d': class 'QSharedDataPointer' needs to have dll-interface to be used by clients of class 'QTextFormat' #include AZ_POP_DISABLE_WARNING diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp index 14b546193b..849b8d1705 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" + +#include AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QLayoutItem::align': class 'QFlags' needs to have dll-interface to be used by clients of class 'QLayoutItem' #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp index 0d47f4c693..6dbc0beeb2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp @@ -5,7 +5,9 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" + +#include + AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 4251: 'QLayoutItem::align': class 'QFlags' needs to have dll-interface to be used by clients of class 'QLayoutItem' #include AZ_POP_DISABLE_WARNING diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx index 1ddb49f1bc..2f1a29b3d0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx @@ -7,12 +7,16 @@ */ #pragma once +#include + namespace Ui { class NotificationWindow; } class QToolButton; +class QLabel; +class QTimer; namespace AzToolsFramework { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp index c023ba77da..7aa8a133ed 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx index fe24a04c4a..6b20e1e953 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx @@ -12,6 +12,7 @@ #include "SliceOverridesNotificationWindow.hxx" #endif +#include namespace AzToolsFramework { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp index 699030b28d..04754ac8a4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp @@ -6,10 +6,9 @@ * */ -#include "AzToolsFramework_precompiled.h" +#include AZ_PUSH_DISABLE_WARNING(4244 4251, "-Wunknown-warning-option") - #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp index 21ba91daf0..f581e2ea8b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp @@ -6,8 +6,7 @@ * */ -#include "AzToolsFramework_precompiled.h" - +#include #include #include AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 4251: 'QTreeWidgetItemIterator::d_ptr': class 'QScopedPointer>' needs to have dll-interface to be used by clients of class 'QTreeWidgetItemIterator' @@ -20,6 +19,7 @@ AZ_POP_DISABLE_WARNING #include "SliceRelationshipWidget.hxx" +#include #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx index fc63e41dd2..64debe12bb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx @@ -19,6 +19,11 @@ class QTreeWidgetItem; class QLabel; class QVBoxLayout; +namespace AZ +{ + class EntityId; +} + namespace AzToolsFramework { /** diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp index 22f6feabc8..c8a3b28173 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "AZAutoSizingScrollArea.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp index 7240ab427d..b2b1670485 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp @@ -5,8 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" +#include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // 4251: 'QPainter::d_ptr': class 'QScopedPointer>' needs to have dll-interface to be used by clients of class 'QPainter' // 4800: 'QFlags::Int': forcing value to bool 'true' or 'false' (performance warning) #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp index 2f1da52ef2..b6f4c6d815 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "ClickableLabel.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp index 2f506b57f6..ca5e89f6f1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include #include "ColorPickerDelegate.hxx" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp index f646e7c70a..e796db8b87 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "OverwritePromptDialog.hxx" AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QLayoutItem::align': class 'QFlags' needs to have dll-interface to be used by clients of class 'QLayoutItem' diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp index cad4bcf197..9f4fb347bf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp @@ -6,11 +6,12 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "PlainTextEdit.hxx" #include +#include + namespace AzToolsFramework { QRectF PlainTextEdit::GetBlockBoundingGeometry(const QTextBlock& block) const diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp index 5232c97f00..f993660116 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp index 1972692476..75c8c607c6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "QTreeViewStateSaver.hxx" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp index 065bea8aaa..0222fa4c05 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "QWidgetSavedState.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp index 4a5ec39791..099d758a10 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "SaveChangesDialog.hxx" AZ_PUSH_DISABLE_WARNING(4244 4251, "-Wunknown-warning-option") diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp index 10e8869202..2a408ee885 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp index 01bc31fc58..6f6d9f32ab 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AzToolsFramework_precompiled.h" #include "UndoSystem.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp index a353d5757e..0d03271b93 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp index 65ac3b5e2c..5e4a8eb60c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp index 337cd586f9..24ca3d7c39 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp index 280320bcd8..a6a472a181 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp @@ -6,10 +6,10 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include +#include namespace AzToolsFramework::ViewportUi::Internal { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp index 9f9f2341c4..0ef00e006f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp index 3e8d90fef4..d216749f99 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "ViewportUiTextField.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h index 82298d63e9..ad56e78671 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h @@ -17,6 +17,8 @@ AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") #include AZ_POP_DISABLE_WARNING +#include + namespace AzToolsFramework::ViewportUi::Internal { //! Helper class for a widget that holds and manages multiple LabelTextFields. diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp index 89b72173ba..d86a4b7f06 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp @@ -6,7 +6,6 @@ * */ -#include "AzToolsFramework_precompiled.h" #include "ViewportUiWidgetCallbacks.h" diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h index 0b7e3341c7..36d969ac8c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h @@ -8,6 +8,7 @@ #pragma once +#include #include #include #include diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake index 1111020f48..53173f83af 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake @@ -7,7 +7,6 @@ # set(FILES - AzToolsFramework_precompiled.h AssetEditor/AssetEditorBus.h AssetEditor/AssetEditorToolbar.ui AssetEditor/AssetEditorStatusBar.ui diff --git a/Code/Legacy/CryCommon/CryAssert_impl.h b/Code/Legacy/CryCommon/CryAssert_impl.h index cfff8aab34..27c4024d42 100644 --- a/Code/Legacy/CryCommon/CryAssert_impl.h +++ b/Code/Legacy/CryCommon/CryAssert_impl.h @@ -48,8 +48,7 @@ #include -#define WIN32_LEAN_AND_MEAN -#include +#include //----------------------------------------------------------------------------------------------------- diff --git a/Code/Legacy/CryCommon/CryThreadImpl_windows.h b/Code/Legacy/CryCommon/CryThreadImpl_windows.h index a3ac94b6d0..0451258aac 100644 --- a/Code/Legacy/CryCommon/CryThreadImpl_windows.h +++ b/Code/Legacy/CryCommon/CryThreadImpl_windows.h @@ -9,13 +9,9 @@ #pragma once -#ifndef WIN32_LEAN_AND_MEAN -#define WIN32_LEAN_AND_MEAN -#endif - -#include -#include +#include #include // for CreateSemaphore + struct SThreadNameDesc { DWORD dwType; diff --git a/Code/Legacy/CryCommon/CryWindows.h b/Code/Legacy/CryCommon/CryWindows.h index 87c96f5cf0..77684384c6 100644 --- a/Code/Legacy/CryCommon/CryWindows.h +++ b/Code/Legacy/CryCommon/CryWindows.h @@ -14,32 +14,6 @@ #define CRYINCLUDE_CRYCOMMON_CRYWINDOWS_H #pragma once - -#if defined(WIN32) || defined(WIN64) - -#ifndef FULL_WINDOWS_HEADER - #define WIN32_LEAN_AND_MEAN -#endif - -#include - -#undef GetCommandLine -#undef GetObject -#undef PlaySound -#undef GetClassName -#undef DrawText -#undef GetCharWidth -#undef GetUserName -#undef LoadLibrary -#undef RegisterClass - -#undef min -#undef max - -#undef NOMINMAX -#undef WIN32_LEAN_AND_MEAN -#undef FULL_WINDOWS_HEADER - -#endif +#include #endif // CRYINCLUDE_CRYCOMMON_CRYWINDOWS_H diff --git a/Code/Legacy/CryCommon/IMNM.h b/Code/Legacy/CryCommon/IMNM.h index 77c94d2e61..cdf3c19f2a 100644 --- a/Code/Legacy/CryCommon/IMNM.h +++ b/Code/Legacy/CryCommon/IMNM.h @@ -12,6 +12,8 @@ #pragma once +#include + namespace MNM { namespace Constants @@ -63,7 +65,7 @@ namespace MNM GlobalIslandID(const uint64 defaultValue = MNM::Constants::eGlobalIsland_InvalidIslandID) : id(defaultValue) { - STATIC_ASSERT(sizeof(StaticIslandID) <= 4, "The maximum supported size for StaticIslandIDs is 4 bytes."); + static_assert(sizeof(StaticIslandID) <= 4, "The maximum supported size for StaticIslandIDs is 4 bytes."); } GlobalIslandID(const uint32 navigationMeshID, const MNM::StaticIslandID islandID) diff --git a/Code/Legacy/CryCommon/IMovieSystem.h b/Code/Legacy/CryCommon/IMovieSystem.h index b1a171410b..074c7ab01d 100644 --- a/Code/Legacy/CryCommon/IMovieSystem.h +++ b/Code/Legacy/CryCommon/IMovieSystem.h @@ -63,7 +63,7 @@ typedef IMovieSystem* (* PFNCREATEMOVIESYSTEM)(struct ISystem*); typedef std::vector AnimSequences; typedef AZStd::vector TrackEvents; -// Forward declare, including will cause much pain with the precompiled headers +// Forward declare enum class SequenceType; enum class AnimNodeType; enum class AnimValueType; diff --git a/Code/Legacy/CryCommon/IWindowMessageHandler.h b/Code/Legacy/CryCommon/IWindowMessageHandler.h index ec1af4c9fb..a6c4214589 100644 --- a/Code/Legacy/CryCommon/IWindowMessageHandler.h +++ b/Code/Legacy/CryCommon/IWindowMessageHandler.h @@ -9,12 +9,10 @@ #ifndef _CRY_WINDOW_MESSAGE_HANDLER_H_ #define _CRY_WINDOW_MESSAGE_HANDLER_H_ -#include "platform.h" + #if defined(WIN32) -#ifndef WIN32_LEAN_AND_MEAN -#define WIN32_LEAN_AND_MEAN -#endif -#include +#include "platform.h" +#include // Summary: // Window message handler for Windows OS diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h index 930c7ddb14..fb30a78aac 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h @@ -10,6 +10,7 @@ #include #include #include +#include //////////////////////////////////////////////////////////////////////////////////////////////////// class UiTransform2dInterface diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h index 99856e00d3..c8af118517 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h @@ -429,26 +429,26 @@ inline AZ::Vector2 UiTransformInterface::RectPoints::GetAxisAlignedSize() const inline AZ::Vector2 UiTransformInterface::RectPoints::GetAxisAlignedTopLeft() const { - return AZ::Vector2(min(min(min(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), - min(min(min(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); + return AZ::Vector2(AZStd::min(AZStd::min(AZStd::min(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), + AZStd::min(AZStd::min(AZStd::min(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); } inline AZ::Vector2 UiTransformInterface::RectPoints::GetAxisAlignedTopRight() const { - return AZ::Vector2(max(max(max(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), - min(min(min(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); + return AZ::Vector2(AZStd::max(AZStd::max(AZStd::max(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), + AZStd::min(AZStd::min(AZStd::min(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); } inline AZ::Vector2 UiTransformInterface::RectPoints::GetAxisAlignedBottomRight() const { - return AZ::Vector2(max(max(max(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), - max(max(max(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); + return AZ::Vector2(AZStd::max(AZStd::max(AZStd::max(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), + AZStd::max(AZStd::max(AZStd::max(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); } inline AZ::Vector2 UiTransformInterface::RectPoints::GetAxisAlignedBottomLeft() const { - return AZ::Vector2(min(min(min(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), - max(max(max(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); + return AZ::Vector2(AZStd::min(AZStd::min(AZStd::min(TopLeft().GetX(), TopRight().GetX()), BottomRight().GetX()), BottomLeft().GetX()), + AZStd::max(AZStd::max(AZStd::max(TopLeft().GetY(), TopRight().GetY()), BottomRight().GetY()), BottomLeft().GetY())); } inline void UiTransformInterface::RectPoints::SetAxisAligned(float left, float right, float top, float bottom) diff --git a/Code/Legacy/CryCommon/LyShine/IDraw2d.h b/Code/Legacy/CryCommon/LyShine/IDraw2d.h index 9b03ff8c1e..a8c7af7411 100644 --- a/Code/Legacy/CryCommon/LyShine/IDraw2d.h +++ b/Code/Legacy/CryCommon/LyShine/IDraw2d.h @@ -10,6 +10,7 @@ #include #include #include +#include // Forward declarations struct IFFont; diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h index 3729d7309e..fce33b9650 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h @@ -11,8 +11,6 @@ #define CRYINCLUDE_CRYCOMMON_MAESTRO_TYPES_ANIMNODETYPE_H #pragma once -// **NOTE**: Do not include into the precompiled header hierarchy! - ////////////////////////////////////////////////////////////////////////// //! Node-Types // diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h index b0fe5471b8..b9efc599a7 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h @@ -11,10 +11,6 @@ #define CRYINCLUDE_CRYCOMMON_MAESTRO_TYPES_ANIMPARAMTYPE_H #pragma once -// **NOTES**: Do not include into the precompiled header hierarchy! -// There are a couple legacy defines in IMovieSystem.h that -// correspond to these values. ByString and Invalid. - // Static common parameters IDs of animation node. // // You need to register new params in Movie.cpp/RegisterParamTypes for serialization. diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h b/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h index cc72063d89..77748a6ced 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h @@ -11,8 +11,6 @@ #define CRYINCLUDE_CRYCOMMON_MAESTRO_TYPES_ANIMVALUE_H #pragma once -// **NOTE**: Do not include into the precompiled header hierarchy! - //! Values that animation track can hold. // Do not change values! they are serialized // diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h index 615e17e12b..217327e295 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h @@ -11,10 +11,6 @@ #define CRYINCLUDE_CRYCOMMON_MAESTRO_TYPES_ANIMVALUETYPE_H #pragma once -// **NOTES**: Do not include into the precompiled header hierarchy! -// There are a couple legacy defines in IMovieSystem.h that -// correspond to these values. Unknown and Float. - //! Values that animation track can hold. // Do not change values! they are serialized // diff --git a/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h b/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h index 7b74197750..91f48ec5ab 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h @@ -11,10 +11,6 @@ #define CRYINCLUDE_CRYCOMMON_MAESTRO_TYPES_SEQUENCETYPE_H #pragma once -// **NOTES**: Do not include into the precompiled header hierarchy! -// There is a legacy define in IMovieSystem.h that -// correspond to a value, Legacy. - enum class SequenceType { Legacy = 0, // legacy CryEntity Sequence Object diff --git a/Code/Legacy/CryCommon/Mocks/StubTimer.h b/Code/Legacy/CryCommon/Mocks/StubTimer.h index e6a772b8e1..95df46a49d 100644 --- a/Code/Legacy/CryCommon/Mocks/StubTimer.h +++ b/Code/Legacy/CryCommon/Mocks/StubTimer.h @@ -7,7 +7,8 @@ */ #pragma once -#include +#include +#include //! Simple stub timer that exposes a single simple interface for setting the current time. class StubTimer diff --git a/Code/Legacy/CryCommon/TimeValue.h b/Code/Legacy/CryCommon/TimeValue.h index 9f93c794a5..abe37c8608 100644 --- a/Code/Legacy/CryCommon/TimeValue.h +++ b/Code/Legacy/CryCommon/TimeValue.h @@ -12,6 +12,8 @@ #pragma once +#include +#include class CTimeValue { diff --git a/Code/Legacy/CrySystem/System.cpp b/Code/Legacy/CrySystem/System.cpp index b3112c7d3e..7fa7f7d2b0 100644 --- a/Code/Legacy/CrySystem/System.cpp +++ b/Code/Legacy/CrySystem/System.cpp @@ -49,9 +49,7 @@ #endif #ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -// If app hasn't chosen, set to work with Windows 98, Windows Me, Windows 2000, Windows XP and beyond -#include +#include LRESULT WINAPI WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { diff --git a/Code/Legacy/CrySystem/WindowsErrorReporting.cpp b/Code/Legacy/CrySystem/WindowsErrorReporting.cpp index 11fca95510..a02f55b69e 100644 --- a/Code/Legacy/CrySystem/WindowsErrorReporting.cpp +++ b/Code/Legacy/CrySystem/WindowsErrorReporting.cpp @@ -15,7 +15,7 @@ #ifdef WIN32 #include "System.h" -#include +#include #include #include "errorrep.h" #include "ISystem.h" diff --git a/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp b/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp index d19fe902e3..eb0416f125 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp @@ -700,7 +700,7 @@ Please note that only those seed files will get updated that are active for your { report.append(AZStd::string::format( "SOURCEID: %" PRId64 ", CURRENT PATH: %s, NEW PATH: %s, CURRENT GUID: %s, NEW GUID: %s\n", - static_cast(relocationInfo.m_sourceEntry.m_sourceID), + relocationInfo.m_sourceEntry.m_sourceID, relocationInfo.m_oldRelativePath.c_str(), relocationInfo.m_newRelativePath.c_str(), relocationInfo.m_sourceEntry.m_sourceGuid.ToString().c_str(), @@ -710,7 +710,7 @@ Please note that only those seed files will get updated that are active for your { report.append(AZStd::string::format( "SOURCEID: %" PRId64 ", CURRENT PATH: %s, CURRENT GUID: %s\n", - static_cast(relocationInfo.m_sourceEntry.m_sourceID), + relocationInfo.m_sourceEntry.m_sourceID, relocationInfo.m_oldRelativePath.c_str(), relocationInfo.m_sourceEntry.m_sourceGuid.ToString().c_str())); } diff --git a/Code/Tools/AssetProcessor/native/precompiled.h b/Code/Tools/AssetProcessor/native/precompiled.h deleted file mode 100644 index 7e87baaa73..0000000000 --- a/Code/Tools/AssetProcessor/native/precompiled.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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 - * - */ -#ifndef ASSETPROCESSOR_PRECOMPILED_H -#define ASSETPROCESSOR_PRECOMPILED_H - -#if 1 // change to 0 to temporarily turn off pch to make sure includes are ok - -#include -#include -#include -#include -#include -#include -#if !defined(BATCH_MODE) -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#endif - -#endif // ASSETPROCESSOR_PRECOMPILED_H diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp index 4644312de7..5e005c117d 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp @@ -1026,7 +1026,7 @@ namespace AssetUtilities AZStd::string ComputeJobLogFileName(const AzToolsFramework::AssetSystem::JobInfo& jobInfo) { - return AZStd::string::format("%s-%u-%" PRIu64 ".log", jobInfo.m_sourceFile.c_str(), jobInfo.GetHash(), static_cast(jobInfo.m_jobRunKey)); + return AZStd::string::format("%s-%u-%" PRIu64 ".log", jobInfo.m_sourceFile.c_str(), jobInfo.GetHash(), jobInfo.m_jobRunKey); } AZStd::string ComputeJobLogFileName(const AssetBuilderSDK::CreateJobsRequest& createJobsRequest) @@ -1246,7 +1246,7 @@ namespace AssetUtilities return 0; } - std::uint64_t AdjustTimestamp(QDateTime timestamp) + AZ::u64 AdjustTimestamp(QDateTime timestamp) { timestamp = timestamp.toUTC(); @@ -1281,7 +1281,7 @@ namespace AssetUtilities else { bool useHash = ShouldUseFileHashing(); - std::uint64_t fileIdentifier; + AZ::u64 fileIdentifier; if(useHash) { fileIdentifier = GetFileHash(absolutePath.c_str()); @@ -1295,13 +1295,13 @@ namespace AssetUtilities // so we add the size of it too. // its also possible that it moved to a different file with the same modtime/hash AND size, // but with a different name. So we add that too. - return AZStd::string::format("%" PRIX64 ":%" PRIu64 ":%s", fileIdentifier, aznumeric_cast(fileStateInfo.m_fileSize), nameToUse.c_str()); + return AZStd::string::format("%" PRIX64 ":%" PRIu64 ":%s", fileIdentifier, fileStateInfo.m_fileSize, nameToUse.c_str()); } } AZStd::string ComputeJobLogFileName(const AssetProcessor::JobEntry& jobEntry) { - return AZStd::string::format("%s-%u-%" PRIu64 ".log", jobEntry.m_databaseSourceName.toUtf8().constData(), jobEntry.GetHash(), static_cast(jobEntry.m_jobRunKey)); + return AZStd::string::format("%s-%u-%" PRIu64 ".log", jobEntry.m_databaseSourceName.toUtf8().constData(), jobEntry.GetHash(), jobEntry.m_jobRunKey); } bool CreateTempRootFolder(QString startFolder, QDir& tempRoot) diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.h b/Code/Tools/AssetProcessor/native/utilities/assetUtils.h index 35dfde6450..2145c3e0e6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.h +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.h @@ -241,7 +241,7 @@ namespace AssetUtilities inline constexpr AZ::u64 FileHashBufferSize = 1024 * 64; //! Adjusts a timestamp to fix timezone settings and account for any precision adjustment needed - std::uint64_t AdjustTimestamp(QDateTime timestamp); + AZ::u64 AdjustTimestamp(QDateTime timestamp); // Generates a fingerprint string based on details of the file, will return the string "0" if the file does not exist. // note that the 'name to use' can be blank, but it used to disambiguate between files that have the same diff --git a/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp b/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp index ff659a4acd..3cd51b7084 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp +++ b/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp @@ -8,12 +8,11 @@ // LY Editor Crashpad Upload Handler Extension +#include #include #include #include -#include - namespace { int HandlerMain(int argc, char* argv[]) diff --git a/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h b/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h index 035eac20c2..d31551270a 100644 --- a/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h +++ b/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h @@ -9,6 +9,7 @@ #pragma once +#include #include #include #include diff --git a/Code/Tools/GridHub/GridHub/gridhub.cpp b/Code/Tools/GridHub/GridHub/gridhub.cpp index c607f0d0fd..f6f0988022 100644 --- a/Code/Tools/GridHub/GridHub/gridhub.cpp +++ b/Code/Tools/GridHub/GridHub/gridhub.cpp @@ -6,7 +6,7 @@ * */ -#include +#include AZ_PUSH_DISABLE_WARNING(4244 4251, "-Wunknown-warning-option") #include #include @@ -14,8 +14,7 @@ AZ_PUSH_DISABLE_WARNING(4244 4251, "-Wunknown-warning-option") AZ_POP_DISABLE_WARNING #ifdef AZ_PLATFORM_WINDOWS -// windows include must be first so we get the full version (AZCore bring the trimmed one) -#include +#include #else #include #endif diff --git a/Code/Tools/GridHub/GridHub/gridhub.hxx b/Code/Tools/GridHub/GridHub/gridhub.hxx index 738261696c..468cf525a0 100644 --- a/Code/Tools/GridHub/GridHub/gridhub.hxx +++ b/Code/Tools/GridHub/GridHub/gridhub.hxx @@ -24,10 +24,7 @@ AZ_POP_DISABLE_WARNING #include #include #include - -#if defined(AZ_PLATFORM_WINDOWS) -#include -#endif +#include #endif namespace AZ diff --git a/Code/Tools/GridHub/GridHub/main.cpp b/Code/Tools/GridHub/GridHub/main.cpp index 55c953e3ec..f02906e0d4 100644 --- a/Code/Tools/GridHub/GridHub/main.cpp +++ b/Code/Tools/GridHub/GridHub/main.cpp @@ -8,7 +8,7 @@ // windows include must be first so we get the full version (AZCore bring the trimmed one) #ifdef _WIN32 -#include +#include #include #include #include diff --git a/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp b/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp index 17e14df757..b517719ce6 100644 --- a/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp +++ b/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include namespace StandaloneTools diff --git a/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp b/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp index 135c7d1294..524374494d 100644 --- a/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp +++ b/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include diff --git a/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp b/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp index 1529c5d7b6..193886d04e 100644 --- a/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp +++ b/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include namespace StandaloneTools diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp index 01aaaa224e..3152862d80 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "AnnotationHeaderView.hxx" #include "AnnotationsDataView.hxx" #include "Annotations.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp index 065efef15f..c59a956670 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "Annotations.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx index b7cd48d382..d87e8d61e4 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx @@ -14,6 +14,7 @@ #include #include #include +#include #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp index 322f63e684..a928abd564 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "AnnotationsDataView.hxx" #include "AnnotationHeaderView.hxx" #include "Annotations.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp index afe51a4423..b107e6be23 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "AnnotationsDataView_Events.hxx" #include "AnnotationsHeaderView_Events.hxx" #include "Annotations.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp index ebf446c6e5..f8db607b51 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "AnnotationsHeaderView_Events.hxx" #include "AnnotationsDataView_Events.hxx" #include "Annotations.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp index 4514a9f04a..b66ffa1047 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include "ConfigureAnnotationsWindow.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/AreaChart.cpp b/Code/Tools/Standalone/Source/Driller/AreaChart.cpp index 538d516a9c..c672e4414a 100644 --- a/Code/Tools/Standalone/Source/Driller/AreaChart.cpp +++ b/Code/Tools/Standalone/Source/Driller/AreaChart.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Axis.cpp b/Code/Tools/Standalone/Source/Driller/Axis.cpp index ad4443f82b..6c55f668da 100644 --- a/Code/Tools/Standalone/Source/Driller/Axis.cpp +++ b/Code/Tools/Standalone/Source/Driller/Axis.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp index 214233e803..6e943ae2c0 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h index 77efa04766..3947d593c8 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h @@ -11,6 +11,7 @@ #include #include +#include #include "Source/Driller/DrillerEvent.h" namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp index 9e34447c3b..1595487994 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "CarrierDataEvents.h" #include "CarrierDataAggregator.hxx" #include "CarrierDataParser.h" diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp index 12793f41e7..f7d456522a 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include "CarrierDataEvents.h" #include "CarrierDataAggregator.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp index a14f06a476..95fb586500 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/ChannelConfigurationDialog.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp index 31eaa4824f..689b87f2b2 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp b/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp index 27669871ba..a98f93be98 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ChannelControl.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp b/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp index 21d2465fba..27922f47a3 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include "ChannelDataView.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp index c8393e8491..b596fa023a 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/ChannelProfilerWidget.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp index 667c83f2b7..33c1dc66d4 100644 --- a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ChartNumberFormats.h" namespace DrillerCharts diff --git a/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp b/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp index 93b0afb40a..3a01b80c41 100644 --- a/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/ChartTypes.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp index 1b9560e24a..9ef3779849 100644 --- a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp +++ b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "CollapsiblePanel.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp index 23732fc869..72130b5300 100644 --- a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp +++ b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include #include "CombinedEventsControl.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp index e8e9010c26..16650d0852 100644 --- a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/CustomizeCSVExportWidget.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp index 17c55bfc09..d352719e22 100644 --- a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp +++ b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "DoubleListSelector.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp index 138c4b53db..bd88e8afbb 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "DrillerAggregator.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp index 6b4b58d44b..7f39136649 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "DrillerCaptureWindow.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp b/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp index 4bc46bee19..ab69fe714c 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "DrillerContext.h" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp index afee02f64e..061ead6b03 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "DrillerDataContainer.h" #include diff --git a/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp b/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp index 6814b046f5..e16d6ee8d4 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "DrillerEvent.h" namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp index 37f0772786..4fa06ecdc0 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "DrillerMainWindow.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp index 64df040059..9c2d19c9de 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include "DrillerMainWindowMessages.h" diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp index f873751526..1d90140dd4 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include #include diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp index 0efb2cdf4b..73f2452212 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "EventTraceDataParser.h" #include "EventTraceDataAggregator.h" #include "EventTraceEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp b/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp index e70a279385..66e32e7d05 100644 --- a/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp +++ b/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp @@ -6,13 +6,12 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/FilteredListView.hxx" #include #include #include +#include #include diff --git a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp index bd282bdd46..59884c9b0e 100644 --- a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/GenericCustomizeCSVExportWidget.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp index 30cbbeb689..5e4f0a2323 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "Woodpecker_precompiled.h" - #include "StreamerDataAggregator.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp index 099adb16f0..733f32c004 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "Woodpecker_precompiled.h" - #include "StreamerDataAggregator.hxx" namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp index 0027e5e64a..6e9786e1cd 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp @@ -6,8 +6,6 @@ * */ -#include "Woodpecker_precompiled.h" - #include "StreamerDataView.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp index 8a1bb72ebb..98262c5311 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp @@ -6,8 +6,6 @@ * */ -#include "Woodpecker_precompiled.h" - #include "StreamerDrillerDialog.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp index fd0cb15fe2..78e2e1c611 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp @@ -6,8 +6,6 @@ * */ -#include "Woodpecker_precompiled.h" - #include "StreamerEvents.h" #include "StreamerDataAggregator.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp index 99ebe14f21..71d0cf3975 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "MemoryDataAggregator.hxx" #include #include "MemoryDataView.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp index c1a1ad8d72..4ced538257 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "MemoryDataParser.h" #include "MemoryDataAggregator.hxx" #include "MemoryEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp index c9bc9a52c3..3ccad8fae0 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "MemoryDataView.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp index 3a5a6a45c9..3ed07f5f29 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "MemoryEvents.h" #include "MemoryDataAggregator.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp index 09b4b4e333..e67f8e329f 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ProfilerDataAggregator.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp index cabfbd8a85..5714d75b0f 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp index c0afc3b598..d8daa26b53 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ProfilerDataParser.h" #include "ProfilerDataAggregator.hxx" #include "ProfilerEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp index f2f676c9f6..26bcb82fea 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ProfilerDataView.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp index d9ec4a5d62..aa1ad4ae89 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ProfilerEvents.h" #include "ProfilerDataAggregator.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h index e39ced9dc2..7963a080b8 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h @@ -10,6 +10,7 @@ #define DRILLER_PROFILER_EVENTS_H #include "Source/Driller/DrillerEvent.h" +#include namespace Driller { diff --git a/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp b/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp index 5229cdae9e..bf87f7da43 100644 --- a/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp +++ b/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "RacetrackChart.hxx" #include #include "DrillerMainWindowMessages.h" diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp index 97e6786fb4..09cda0d0b8 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "VRAMDataAggregator.hxx" #include #include "VRAMEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp index 1be9e9ebcd..419f48d9a3 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "VRAMDataParser.h" #include "VRAMDataAggregator.hxx" #include "VRAMEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp index 360301e3f1..b0b85beb6b 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "VRAMEvents.h" #include "VRAMDataAggregator.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp index d5926be7fa..4c71c2bf57 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "BaseDetailViewQObject.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h index 48efae4576..8c16507c42 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h @@ -11,6 +11,7 @@ #include #include +#include namespace Driller { diff --git a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp index bdb0e5578c..54bdf1a77e 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp index 59dd1d6026..d455f8ae29 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include "ReplicaBandwidthChartData.h" diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp index bbcb4e65c3..5a35b095e3 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp index 18bb246716..28bcf29daa 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ReplicaChunkUsageDataContainers.h" #include "Source/Driller/StripChart.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp index 8a6da41572..9cc2c9ae10 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp index ae9cd118a8..91098eab54 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp index 761a09651a..26a40f46c3 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ReplicaDataParser.h" #include "ReplicaDataAggregator.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp index 99d3035699..e538b47429 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp index 8bc4dbd51a..0e653e982b 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp index 62cc618f5b..0fad38a2ea 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp index 2e7b825c3b..fcd4a3e237 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/Replica/ReplicaDisplayTypes.h" namespace ReplicaDisplayTypes diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp index 9185c1ce7a..aca8deb616 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ReplicaDrillerConfigToolbar.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp index 8dbce6cef9..0321a64f62 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "Source/Driller/Replica/ReplicaTreeViewModel.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp index 44396f96d4..929fb85d2c 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ReplicaUsageDataContainers.h" #include "Source/Driller/StripChart.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/StripChart.cpp b/Code/Tools/Standalone/Source/Driller/StripChart.cpp index fee9794261..56bc15af39 100644 --- a/Code/Tools/Standalone/Source/Driller/StripChart.cpp +++ b/Code/Tools/Standalone/Source/Driller/StripChart.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include "StripChart.hxx" diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp index b55c8bdd99..63e9de9b1e 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "TraceDrillerDialog.hxx" #include "TraceMessageDataAggregator.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp index 1ff03b7bfa..64c389daa1 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "TraceMessageDataAggregator.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp index e57508f09d..9d2981cafc 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "TraceMessageDataParser.h" #include "TraceMessageDataAggregator.hxx" #include "TraceMessageEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp index 1521ebb798..53bdc4fcd1 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "UnsupportedDataAggregator.hxx" #include diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp index b665e4e6d7..110b274d6c 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "UnsupportedDataParser.h" #include "UnsupportedDataAggregator.hxx" #include "UnsupportedEvents.h" diff --git a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp index 9e8401734d..591fdd3922 100644 --- a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp +++ b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include #include diff --git a/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp b/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp index af72171642..89ab8207ff 100644 --- a/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp +++ b/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "LuaEditor.h" #include diff --git a/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp b/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp index 392a7ee096..6ad05a08b2 100644 --- a/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp +++ b/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "ProfilerEditor.h" #include diff --git a/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp b/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp index 993396d7e1..56379a3f07 100644 --- a/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "BreakpointPanel.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp b/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp index da043698ac..a8584bef73 100644 --- a/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp +++ b/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include #include diff --git a/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp b/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp index e96efcd113..d714e68ccf 100644 --- a/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ClassReferencePanel.hxx" #include diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp index d8b9692adf..7ca3684608 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "LUACompleter.hxx" #include diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp index d2e024080c..8fadc230cd 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "LUACompletionModel.hxx" #include diff --git a/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp b/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp index d2b0e4f64c..a983028011 100644 --- a/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp +++ b/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "DebugAttachmentButton.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp b/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp index 6f8da125cd..a68d9729f3 100644 --- a/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include "LUABreakpointTrackerMessages.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp b/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp index d55fd44dca..dbccef7221 100644 --- a/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "LUADebuggerComponent.h" #include "LUAEditorContextMessages.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp index 2b3b865d98..8cce681a74 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include "LUAEditorBreakpointWidget.hxx" #include "LUAEditorPlainTextEdit.hxx" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp index a630f5c1f5..0c9b3a1d77 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp @@ -6,7 +6,7 @@ * */ -#include "StandaloneTools_precompiled.h" +#include #include "LUAEditorContext.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h b/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h index 659ac20bd5..e475193af4 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h @@ -14,10 +14,8 @@ #include #include #include - -#if defined(AZ_PLATFORM_WINDOWS) -#include -#endif +#include +#include namespace LUAEditor { diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp index 3694b2d87f..69108a1ad2 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include #include diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp index 5cbf16aacb..5223c0e7d9 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "LUAEditorFindResults.hxx" #include "LUAEditorStyleMessages.h" #include "LUAEditorBlockState.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp index aa47417bf8..98bf18e7ca 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "LUAEditorFoldingWidget.hxx" #include "LUAEditorBlockState.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp index d723ebc2be..085e4736b8 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "LUAEditorGoToLineDialog.hxx" #include diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp index 9957fc5663..45484f2815 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp @@ -6,7 +6,7 @@ * */ -#include "StandaloneTools_precompiled.h" +#include #include "LUAEditorMainWindow.hxx" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp index b5e2199861..226ccb1a3d 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "LUAEditorPlainTextEdit.hxx" #include "LUAEditorBlockState.h" #include "LUAEditorStyleMessages.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp index 19916600c5..5ca0a6f2bb 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include #include diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp index 279484901b..e7ebb43eb7 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "LUAEditorStyleMessages.h" #include #include "LUAEditorViewMessages.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp index 281a47186f..a0c4d175a7 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "LUAEditorSyntaxHighlighter.hxx" #include #include "LUAEditorStyleMessages.h" diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp index a221c25bca..092d3f4b8c 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "LUAEditorView.hxx" #include diff --git a/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp b/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp index 12b615a1de..a54135993d 100644 --- a/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include #include "LUATargetContextTrackerMessages.h" diff --git a/Code/Tools/Standalone/Source/LUA/StackPanel.cpp b/Code/Tools/Standalone/Source/LUA/StackPanel.cpp index 1a52b444e5..d8531ceb92 100644 --- a/Code/Tools/Standalone/Source/LUA/StackPanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/StackPanel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "StackPanel.hxx" #include diff --git a/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp b/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp index 9d63c62fcb..d6f433b7c6 100644 --- a/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp +++ b/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "TargetContextButton.hxx" #include #include diff --git a/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp b/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp index dccd824085..6aea56b28e 100644 --- a/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "WatchesPanel.hxx" #include #include "LUAEditorDebuggerMessages.h" diff --git a/Code/Tools/Standalone/Source/LuaIDEApplication.cpp b/Code/Tools/Standalone/Source/LuaIDEApplication.cpp index 653e8d7096..4169326250 100644 --- a/Code/Tools/Standalone/Source/LuaIDEApplication.cpp +++ b/Code/Tools/Standalone/Source/LuaIDEApplication.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "LuaIDEApplication.h" #include diff --git a/Code/Tools/Standalone/Source/ProfilerApplication.cpp b/Code/Tools/Standalone/Source/ProfilerApplication.cpp index 9eb28bf9fd..b42c5a21a1 100644 --- a/Code/Tools/Standalone/Source/ProfilerApplication.cpp +++ b/Code/Tools/Standalone/Source/ProfilerApplication.cpp @@ -6,8 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" - #include "ProfilerApplication.h" #include diff --git a/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp b/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp index 29ebf19d4c..6f7f2e8705 100644 --- a/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp +++ b/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp @@ -6,7 +6,6 @@ * */ -#include "StandaloneTools_precompiled.h" #include "StandaloneToolsApplication.h" #include diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp b/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp index 95f09eb08c..84519b8114 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp @@ -5,10 +5,10 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include "TelemetryComponent.h" +#include + namespace Telemetry { void TelemetryComponent::Reflect(AZ::ReflectContext* context) diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp b/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp index 897179d7f6..24dc381ad7 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp @@ -5,8 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StandaloneTools_precompiled.h" - #include "TelemetryEvent.h" #include "TelemetryBus.h" diff --git a/Code/Tools/Standalone/StandaloneTools_precompiled.h b/Code/Tools/Standalone/StandaloneTools_precompiled.h deleted file mode 100644 index 0adb35b3ed..0000000000 --- a/Code/Tools/Standalone/StandaloneTools_precompiled.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * 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 - -// CryCommon legacy platform configuration -#include - -// AzCore common includes -#include -#include -#include -#include -#include diff --git a/Code/Tools/Standalone/standalone_tools_files.cmake b/Code/Tools/Standalone/standalone_tools_files.cmake index 14081da21a..d463f932a7 100644 --- a/Code/Tools/Standalone/standalone_tools_files.cmake +++ b/Code/Tools/Standalone/standalone_tools_files.cmake @@ -7,7 +7,6 @@ # set(FILES - StandaloneTools_precompiled.h targetver.h Source/StandaloneToolsApplication.cpp Source/StandaloneToolsApplication.h diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp index 7df543a870..f98ae7b6f1 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp @@ -145,7 +145,7 @@ namespace AWSGameLift Aws::GameLift::GenericOutcome processEndingOutcome = m_gameLiftServerSDKWrapper->ProcessEnding(); AZ_TracePrintf(AWSGameLiftServerManagerName, "ProcessEnding request against Amazon GameLift service is complete."); - bool processEndingIsSuccess = processEndingOutcome.IsSuccess(); + [[maybe_unused]] bool processEndingIsSuccess = processEndingOutcome.IsSuccess(); AZ_Error(AWSGameLiftServerManagerName, processEndingIsSuccess, AWSGameLiftServerProcessEndingErrorMessage, processEndingOutcome.GetError().GetErrorMessage().c_str()); diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp index 39028ef3aa..edcdef3c26 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp @@ -110,7 +110,7 @@ namespace AWSGameLift if (auto console = AZ::Interface::Get(); console != nullptr) { - AZ::GetValueResult getCvarResult = console->GetCvarValue("sv_port", serverProcessDesc.m_port); + [[maybe_unused]] AZ::GetValueResult getCvarResult = console->GetCvarValue("sv_port", serverProcessDesc.m_port); AZ_Error( "AWSGameLift", getCvarResult == AZ::GetValueResult::Success, "Lookup of 'sv_port' console variable failed with error %s", AZ::GetEnumString(getCvarResult)); diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp index e152e31a54..f111b972e4 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" #include "AssetMemoryAnalyzer.h" diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h index 963fd88e3c..408f2f7f7e 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h @@ -9,6 +9,9 @@ #include #include +#include +#include +#include namespace AssetMemoryAnalyzer { diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp index 5680436704..668c8a5b33 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" + #include #include diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp index eaf9480d49..987444dd3c 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" #include #include // For AZ_MAX_PATH_LEN diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h deleted file mode 100644 index 3c81ad1779..0000000000 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 // Many CryCommon files require that this is included first. diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp index 499c0e46a9..6e9fe1855c 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" #include "AssetMemoryAnalyzer.h" #include "AssetMemoryAnalyzerSystemComponent.h" diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp index d0bb62b7ac..d5728b9a21 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" #include "ExportCSV.h" diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp index 467d7f1e60..20a6089323 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" #include "ExportJSON.h" diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp index 34b459667d..190de6c0eb 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "AssetMemoryAnalyzer_precompiled.h" #include "FormatUtils.h" diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h index 5b56942a9f..f207794e41 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h @@ -7,6 +7,8 @@ */ #pragma once +#include + namespace AssetMemoryAnalyzer { namespace Data diff --git a/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp b/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp index 5b6c33bc8d..2a3ac1e4fe 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp @@ -6,8 +6,6 @@ * */ -#include "AssetMemoryAnalyzer_precompiled.h" - #include #include #include diff --git a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake index e93b695dd4..5b422502e1 100644 --- a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake +++ b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/AssetMemoryAnalyzer_precompiled.h Include/AssetMemoryAnalyzer/AssetMemoryAnalyzerBus.h Source/AssetMemoryAnalyzer.cpp Source/AssetMemoryAnalyzer.h diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h index c4deb17bb9..fbde69abb2 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h @@ -7,6 +7,7 @@ */ #pragma once +#include namespace ImageProcessingAtom { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp index 6ce8fd2a1d..46b684493b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include "BuilderSettingManager.h" #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp index f17eec2ccc..20a52d3b64 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp index 5763223314..6be5648159 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp index dd2fa73c1f..1f4668235c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp index db037a68e7..7ffabc45a9 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp index 85f9207c45..863b3358c5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp index ceebab2a14..bfe5e283b5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp index f8d7989670..99205edb01 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp index 3539a0f04b..ea9b3fb23c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp @@ -7,7 +7,6 @@ */ -#include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp index 27e007d431..67d0da54b8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp @@ -7,7 +7,6 @@ */ -#include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp index d4e567617b..12fbc084a5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp @@ -7,7 +7,6 @@ */ -#include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h index 157ae37c8b..f9d3374f38 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h @@ -6,9 +6,10 @@ * */ - #pragma once +#include + namespace ImageProcessingAtom { // 32 bit 8888 RGBA color diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp index edd9111480..26f94d14e9 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp @@ -7,7 +7,6 @@ */ -#include #include #include "ColorBlockRGBA4x4c.h" #include "ColorBlockRGBA4x4s.h" diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp index 5f42be95f9..9c002952be 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp index 43d1f44e17..be6eb9511d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp @@ -6,7 +6,6 @@ * */ -#include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp index f4c7e7ffbb..7e11a83cae 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp index 0098fbde09..11d141b17e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp index fc12c339e9..c6046bb5a2 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp index 2e43deda35..004f17c33d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp index 41676b1eeb..cd01d955d1 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h index 0f242fa051..51e434e7ab 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h @@ -8,6 +8,8 @@ #pragma once +#include + namespace ImageProcessingAtom { // note: O3DE is right hand Z up coordinate diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp index e75ab3ffac..0bfdf6d672 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp index 4573e67457..a7689a86ba 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp @@ -6,17 +6,20 @@ * */ - -#include - #include #include "FIR-Weights.h" +#include /* #################################################################################################################### */ namespace ImageProcessingAtom { + float round(float x) + { + return ((x) >= 0) ? floor((x) + 0.5) : ceil((x)-0.5); + } + void calculateFilterRange(unsigned int srcFactor, int& srcFirst, int& srcLast, unsigned int dstFactor, int dstFirst, int dstLast, double blurFactor, class IWindowFunction* windowFunction) diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h index 68aaff870a..141d850e1d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h @@ -23,11 +23,7 @@ namespace ImageProcessingAtom inline DataType minimum(const DataType& ths, const DataType& tht) { return (ths < tht ? ths : tht); } template inline DataType maximum(const DataType& ths, const DataType& tht) { return (ths > tht ? ths : tht); } - - #ifndef round - #define round(x) ((x) >= 0) ? floor((x) + 0.5) : ceil((x) - 0.5) - #endif - + /* #################################################################################################################### */ diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h index 9a834b174a..6e70851faa 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h @@ -14,6 +14,7 @@ #pragma once #include #include +#include /* #################################################################################################################### */ diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp index c5cae00e5b..e00af4ab88 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp index a1290f5c98..eefd5332be 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp index 9d34b448c5..4f6855deba 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp index 6f77fcf5ed..5f6f6ed9ba 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp @@ -7,7 +7,6 @@ */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp index e256a0fb1c..3e897078fa 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp @@ -6,7 +6,6 @@ * */ -#include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h index 02f882e354..b858661368 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h @@ -9,6 +9,7 @@ #pragma once #include +#include namespace ImageProcessingAtom { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp index ffcb0fd22b..9938d55502 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp index a52baefec8..4b3a4f6bfa 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp @@ -6,7 +6,6 @@ * */ -#include #include "ImagePopup.h" AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp index d2e3a7baa7..606268889b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp @@ -6,7 +6,6 @@ * */ -#include #include "MipmapSettingWidget.h" #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp index 162ea1325d..daaac5176b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp @@ -6,7 +6,6 @@ * */ -#include #include "PresetInfoPopup.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp index 7baebd4ddf..6df7b8f3df 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp @@ -6,7 +6,6 @@ * */ -#include #include "ResolutionSettingItemWidget.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp index fc09eaed4b..36d00298d3 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp @@ -6,7 +6,6 @@ * */ -#include #include "ResolutionSettingWidget.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp index 66798edb68..5b34133f96 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp @@ -6,7 +6,6 @@ * */ -#include #include "TexturePresetSelectionWidget.h" #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp index 0dc2f14561..2ecf043e9a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp @@ -6,7 +6,6 @@ * */ -#include #include "TexturePreviewWidget.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp index 96e81bf507..509ff80e70 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp @@ -6,7 +6,6 @@ * */ -#include #include "TexturePropertyEditor.h" // warning C4251: 'QBrush::d': class 'QScopedPointer' needs to have dll-interface to be used by clients of class 'QBrush' diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h index e2c2d0ceb2..988561f3ce 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h @@ -9,6 +9,7 @@ #pragma once #if !defined(Q_MOC_RUN) +#include // warning C4251: 'QBrush::d': class 'QScopedPointer' needs to have dll-interface to be used by clients of class 'QBrush' // warning C4800: 'uint': forcing value to bool 'true' or 'false' (performance warning) AZ_PUSH_DISABLE_WARNING(4800 4251, "-Wunknown-warning-option") diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp index f86cd81a61..40d1429f4b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp index 0dff318184..c1d2d7bf19 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp index c853ccc91a..43334d6fb4 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp index 4ede1c82fc..e756174810 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp index 7476fda99e..3ac36b8b17 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp @@ -5,10 +5,10 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ImageProcessing_precompiled.h" #include #include +#include // warning C4251: class QT_Type needs to have dll-interface to be used by clients of class 'QT_Type' AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp index 104593dd6e..057605a089 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp index 653112a628..e6e6f637af 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include "ImageProcessingSystemComponent.h" #include "ImageBuilderComponent.h" diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp index 7821444762..0436ef0215 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h deleted file mode 100644 index ab090b3ab8..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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 - -///////////////////////////////////////////////////////////////////////////// -// Qt -///////////////////////////////////////////////////////////////////////////// -#include -#include -#include - -///////////////////////////////////////////////////////////////////////////// -// AZCore -///////////////////////////////////////////////////////////////////////////// -#include -#include -#include -#include -#include - -///////////////////////////////////////////////////////////////////////////// -//Type definitions -///////////////////////////////////////////////////////////////////////////// -#include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp index 867fecc1a5..573efba602 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp @@ -5,10 +5,9 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include +#include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT - #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp index c2f29768ee..cd5b357e73 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp @@ -5,8 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include +#include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h index 640f75325f..785424a9b1 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h @@ -7,9 +7,11 @@ */ #pragma once + #include #include #include +#include #define IMAGE_BUIDER_MAKEFOURCC(ch0, ch1, ch2, ch3) \ ((AZ::u32)(AZ::u8)(ch0) | ((AZ::u32)(AZ::u8)(ch1) << 8) | \ diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp index 70508097e3..0b0a241d40 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp index d05506e450..9abb6de300 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include #include @@ -25,10 +23,6 @@ #include -// qt has convenience functions to handle file -#include -#include - // for texture splitting // minimum number of low level mips will be saved in the base file. #define MinPersistantMips 3 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h index 6b44292a65..db34c46e2a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h @@ -21,6 +21,7 @@ #include #include +#include namespace ImageProcessingAtom { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp index 8db732e12f..1465e7993f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h index cd206d11d5..96393f4a1f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h @@ -8,6 +8,8 @@ #pragma once +#include + namespace ImageProcessingAtom { // flags to propagate from the RC to the engine through GetImageFlags() diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp index 67a926c730..fd3923d7bf 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp index 92f7066581..b73157744c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp @@ -6,8 +6,7 @@ * */ -#include - +#include #include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h index 0fb196f606..e6fe6ce142 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h @@ -11,6 +11,7 @@ #include #include #include +#include namespace ImageProcessingAtom { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp index 2d09279151..94fce9bc1f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h index 7c9388cbd4..5f1cbf938a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h @@ -15,6 +15,8 @@ #include #include +#include + namespace ImageProcessingAtom { //The original implementation was from cryhalf's CryConvertFloatToHalf and CryConvertHalfToFloat function diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp index a1ff35586d..d282e9b02b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp index 1d11f0bdaa..7e4d29e23c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "ImageProcessing_precompiled.h" #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp index 5b881d3457..3ac9c334c5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake index 46499f9c22..e8bc033f08 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/ImageProcessing_precompiled.h Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp Source/Compressors/CryTextureSquisher/CryTextureSquisher.h Include/Atom/ImageProcessing/ImageProcessingBus.h diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp index 271013adef..805a25ce38 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp @@ -8,7 +8,6 @@ //============================================================================= // Modified from original -#include #include "CBBoxInt32.h" diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h index 53f32f8cd5..bc259ec4be 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h @@ -9,6 +9,8 @@ #pragma once +#include + namespace ImageProcessingAtom { //bounding box class with coords specified as int32 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp index 8264003b0b..fa861c739a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp @@ -3,7 +3,6 @@ //============================================================================= // Modified from original -#include #include "CCubeMapProcessor.h" #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp index 9a582c90fb..0d741af774 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp @@ -15,11 +15,8 @@ //-------------------------------------------------------------------------------------- // Modified from original -#include - #include "CImageSurface.h" - namespace ImageProcessingAtom { //-------------------------------------------------------------------------------------- @@ -276,7 +273,7 @@ namespace ImageProcessingAtom SAFE_DELETE_ARRAY(m_ImgData); //safe delete old image data - m_ImgData = new(std::nothrow) CP_ITYPE[m_Width * m_Height * m_NumChannels]; //assume tight data packing + m_ImgData = new CP_ITYPE[m_Width * m_Height * m_NumChannels]; //assume tight data packing if (!m_ImgData) { FatalError(L"Unable to allocate data for image in CImageSurface::Init."); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h index 6ad8f68ebc..848cbd1dbe 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h @@ -13,7 +13,7 @@ #include #include "VectorMacros.h" - +#include #ifndef WCHAR #define WCHAR wchar_t diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp index 53f1c17e5a..3c8f304cb6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp @@ -7,7 +7,7 @@ */ #include -#include +#include namespace LuxCoreUI { diff --git a/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp b/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp index 981004fd1d..fa4c14089f 100644 --- a/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp @@ -13,12 +13,12 @@ #include #include -using namespace AZ; - #define PRINTF(...) do { UnitTest::ColoredPrintf(UnitTest::COLOR_GREEN, "[ ] "); UnitTest::ColoredPrintf(UnitTest::COLOR_YELLOW, __VA_ARGS__); } while(0) namespace UnitTest { + using namespace AZ; + class AllocatorTest : public RHITestFixture { diff --git a/Gems/Atom/RHI/Code/Tests/BufferTests.cpp b/Gems/Atom/RHI/Code/Tests/BufferTests.cpp index 38e2ee4a01..0ce4626b92 100644 --- a/Gems/Atom/RHI/Code/Tests/BufferTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/BufferTests.cpp @@ -10,10 +10,10 @@ #include #include -using namespace AZ; - namespace UnitTest { + using namespace AZ; + class BufferTests : public RHITestFixture { diff --git a/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp b/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp index 9b0d54c4fb..a50b56ef00 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp @@ -16,10 +16,10 @@ #include #include -using namespace AZ; - namespace UnitTest { + using namespace AZ; + class FrameGraphTests : public RHITestFixture { diff --git a/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp b/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp index a99219c5dd..badde5e1aa 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp @@ -13,10 +13,10 @@ #include #include -using namespace AZ; - namespace UnitTest { + using namespace AZ; + struct ImportedImage { RHI::AttachmentId m_id; diff --git a/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp b/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp index b02bd89e45..3a40da8ba6 100644 --- a/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp @@ -19,10 +19,10 @@ #include #include -using namespace AZ; - namespace UnitTest { + using namespace AZ; + class IndirectBufferTests : public RHITestFixture { diff --git a/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp b/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp index bbad120fa5..ceddc69827 100644 --- a/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp @@ -17,10 +17,10 @@ #include -using namespace AZ; - namespace UnitTest { + using namespace AZ; + class PipelineStateTests : public RHITestFixture { diff --git a/Gems/Atom/RHI/Code/Tests/Query.cpp b/Gems/Atom/RHI/Code/Tests/Query.cpp index 69e4440c1e..f8fe4a7e7b 100644 --- a/Gems/Atom/RHI/Code/Tests/Query.cpp +++ b/Gems/Atom/RHI/Code/Tests/Query.cpp @@ -10,6 +10,7 @@ namespace UnitTest { using namespace AZ; + RHI::ResultCode Query::BeginInternal([[maybe_unused]] RHI::CommandList& commandList, [[maybe_unused]] RHI::QueryControlFlags flags) { return RHI::ResultCode::Success; diff --git a/Gems/Atom/RHI/Code/Tests/QueryTests.cpp b/Gems/Atom/RHI/Code/Tests/QueryTests.cpp index 1de6ee68a7..f883f6a8bd 100644 --- a/Gems/Atom/RHI/Code/Tests/QueryTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/QueryTests.cpp @@ -12,10 +12,10 @@ #include #include -using namespace AZ; - namespace UnitTest { + using namespace AZ; + class QueryTests : public RHITestFixture { diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp index 4ff508baa1..bd90e9ae1f 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp index 7ec1c500f6..d0b07743ed 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h index ce29163da3..b07b9e9e58 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h @@ -8,6 +8,8 @@ #pragma once +#include + #if !defined(AZ_DX12_REFCOUNTED) #error "Incorrect include of DX12_Windows.h, please include DX12.h instead of this header" #endif diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp index 157e21e007..7cf83e28bc 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" + +#include #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp index e330f20d95..368ad5f4d0 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp index cc59d7cfec..4ee35b7675 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp index 091dc6fd5d..6e5206fc00 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h index f048ce6b13..5446fd7abf 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h @@ -8,6 +8,7 @@ #pragma once #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp index 5eca48ef47..9a6d7e44d1 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp index d827c9563f..809ca14f20 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" + +#include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp index e04889b8b9..0301d48454 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp @@ -5,8 +5,9 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" + #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h index b017c8896b..14bfcd824e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h @@ -7,6 +7,8 @@ */ #pragma once +#include + namespace AZ { namespace DX12 diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp index dc1722758b..8c1ce4b3b2 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h index fdcf6bdda3..c5ca1fabbb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h @@ -9,6 +9,7 @@ #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp index 7954274d98..bc9d245245 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp index 06f87bed83..70c6aa0b7c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h deleted file mode 100644 index efd12227ae..0000000000 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h +++ /dev/null @@ -1,12 +0,0 @@ -/* - * 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 -#include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp index 2ee9f1f7c5..c1d90bb56a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "CryRenderOther_precompiled.h" + #include "AttachmentImagePool.h" #include "Conversions.h" #include "Image.h" diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp index 87d0ae1a44..7f8403a4c8 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp index 88dd0672d0..d0e7d5364e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp index 802db80b2f..62696b8a9d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp index 6b376065d3..680669776c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp index d7e617620a..2c565f997e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp index 31a2e4df8b..a38de024d5 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp index ca71acc394..7aa9f5391a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h index 5338015884..5337228614 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h @@ -11,6 +11,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp index a1c7f954fc..3d3ec472a7 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h index f6c31030a5..79153c65a3 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h @@ -13,6 +13,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp index 418fd5b636..9de706cbe1 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp index 392b557581..1c5fd6fa05 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp index d287ed1771..98dc2965fb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h index 594c076666..fed5700c33 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h @@ -23,6 +23,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp index 95a13e7db1..f37753769e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp index 5866ad2bbf..64e96e9ff1 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp index a4685cd8fd..942b514b97 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp index ea9151637e..7a6d96a519 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp index 697e204cc9..88c9098952 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp index b701f90a71..db15930c01 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h index ac274d2faf..064efe5722 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h @@ -12,6 +12,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp index 6be5aeafc6..c98fd51fbb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h index 33ee7668de..abdf0fe9f9 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp index 5e9d2f24a4..7889d56807 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp index 10dfa98401..0fa4c4ab66 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp index dc048eded7..d17439ef02 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp index bd6d71143e..156dd6e38e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp index e9827d1a53..c7ac17bfdc 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp index 8fc9a44018..bbbc1ac943 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp index 7e009e875a..9684975263 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp index a3295735cd..42c5f91817 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h index 11e1570625..844c2efcb1 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp index 80120faa97..c39aa248b0 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp index 0af564a003..5692befedf 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp index 91bcaa5385..1246fb5b1a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp index 76a35ff974..44730e5439 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" + +#include #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp index 89dffc16a2..1336642d8b 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h index eadd363f72..406733d37e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h @@ -15,6 +15,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp index cd19af9a25..06a0511162 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp index 22a2458983..a2876398eb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp index 7c44990f12..d4b69dd72f 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp index aa5211676e..5bb2be662d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp index 8e0996e19d..4d0388aaea 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp index 9cb1773334..917e1a4d98 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h index 69d3b5f6f7..67cc306f36 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp index ef7941ae2a..aebf705790 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h index 9e32f45beb..36780973f6 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp index c6a541915a..eefb1a28aa 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp index 9ee5ef2809..8c4f63aacc 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h index 4b7cb266d4..accc43ec92 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp index c9d6a97dc2..1d5df8c892 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp index 724f660499..80e41434b9 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp index d99753eb7a..c6e6b9a03d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp index bf9db53c23..7437c3b339 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -6,7 +6,6 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp index 6740ff570e..1a32f06fa2 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp index 858a346ce2..6f35bb32ae 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp @@ -5,14 +5,12 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include #include #include #include -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp index bff4a7af2f..bb5acc878a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h index f38e6d10c2..8035ae1e38 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h @@ -8,6 +8,7 @@ #pragma once #include +#include namespace AZ { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp index d28014f43d..1f6cea1151 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp @@ -6,7 +6,7 @@ * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" +#include #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp index 51d6c384aa..016953d60d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "RHI/Atom_RHI_DX12_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake index 146bf832e4..3ad79398b4 100644 --- a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/RHI/Atom_RHI_DX12_precompiled.h Source/RHI/Buffer.cpp Source/RHI/Buffer.h Source/RHI/BufferPool.cpp diff --git a/Gems/Atom/RHI/Metal/Code/CMakeLists.txt b/Gems/Atom/RHI/Metal/Code/CMakeLists.txt index 072b2b9d5f..11876e0a30 100644 --- a/Gems/Atom/RHI/Metal/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Metal/Code/CMakeLists.txt @@ -72,7 +72,6 @@ ly_add_target( NAME Atom_RHI_Metal.Private.Static STATIC NAMESPACE Gem FILES_CMAKE - atom_rhi_metal_common_files.cmake atom_rhi_metal_private_common_files.cmake Source/Platform/${PAL_PLATFORM_NAME}/platform_private_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake PLATFORM_INCLUDE_FILES diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_Platform.h similarity index 100% rename from Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_precompiled_Platform.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_Platform.h diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_Platform.h similarity index 100% rename from Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_precompiled_Platform.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_Platform.h diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Mac.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_Mac.h similarity index 100% rename from Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Mac.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_Mac.h diff --git a/Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_Platform.h similarity index 88% rename from Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_Platform.h index 4c459365cd..f27381bbcd 100644 --- a/Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_Platform.h @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - #pragma once -#include +#include diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h deleted file mode 100644 index 99f23aecce..0000000000 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake index e6298613c7..81b410ed95 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Metal_precompiled_Mac.h - Atom_RHI_Metal_precompiled_Platform.h + Atom_RHI_Metal_Mac.h + Atom_RHI_Metal_Platform.h ) diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake index e6298613c7..81b410ed95 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Metal_precompiled_Mac.h - Atom_RHI_Metal_precompiled_Platform.h + Atom_RHI_Metal_Mac.h + Atom_RHI_Metal_Platform.h ) diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_Platform.h similarity index 100% rename from Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_precompiled_Platform.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_Platform.h diff --git a/Gems/Blast/Code/Source/StdAfx.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_Platform.h similarity index 88% rename from Gems/Blast/Code/Source/StdAfx.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_Platform.h index b6f31c17d0..abc4d97d9c 100644 --- a/Gems/Blast/Code/Source/StdAfx.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_Platform.h @@ -7,4 +7,4 @@ */ #pragma once -#include +#include diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_iOS.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_iOS.h similarity index 100% rename from Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_iOS.h rename to Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_iOS.h diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h deleted file mode 100644 index c803342689..0000000000 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake index b39a52dc32..aa8a84ced1 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake @@ -7,7 +7,7 @@ # set(FILES - Atom_RHI_Metal_precompiled_iOS.h - Atom_RHI_Metal_precompiled_Platform.h + Atom_RHI_Metal_iOS.h + Atom_RHI_Metal_Platform.h ) diff --git a/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h b/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h deleted file mode 100644 index 304481aaa1..0000000000 --- a/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * 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 -#include diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index f30d2d3c11..249210d885 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp index 235d5b539e..47919194e6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp index 7dd5926e8d..de20ea1a18 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #import #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp index d50b0721a2..ce6c3ff0f7 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp index d5b6e429d0..0f07323525 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #import #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp index ab58f1163b..440615d77f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp index 840bc7a3b6..9f109636c4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp index 51c718db06..383c5e5a79 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp index 01b84e7101..2c9eb95ad4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp index ff20cf6a1d..bdc6739c3c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp index c630a1a629..7676459154 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp index 2b6a70c933..2a59d04305 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp index 1a2ec6cc5b..a1bd9533bc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp index 4677189487..de7bdf0187 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp index b42003ce4c..9b67f5c6e2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp index 5a81312f21..2614addfe3 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp index af6adb6741..b3dd209926 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp index 3f6061aff3..62091b794a 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp index 6438562ee8..5db3cfb0d3 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp index 88a0400358..e18b94bfba 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp index d150b25c29..f0771d7c45 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp index e7e6e45b6c..f3b3f53027 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp index 57868abd15..520e417f6b 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp index 1536eaa829..2915ab1caf 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp index 9ea47b2548..85f1acd1c0 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp index 672b09eb0d..f9cf9a48e7 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp index 74f8c222c9..73bdcde9a0 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp index e7472a9e01..700dda1234 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp index af627e0750..8522d3edbc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp index a352a73689..94dacb2488 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp index c84b00288c..647cafdefd 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp index 080bcb0b64..619a6e5b8a 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp index 9a1559e0d3..15845b09ce 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h index 6488685a4e..dcbfcb8bb8 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h @@ -8,7 +8,7 @@ #pragma once -#include +#include #import diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h index 59d9d814e7..3adc306abc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h @@ -8,7 +8,7 @@ #pragma once -#include +#include @interface RHIMetalViewController : NativeViewControllerType {} - (BOOL)prefersStatusBarHidden; diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm index 2c5e773dc3..1c0661fc05 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Metal_precompiled.h" #import #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp index 91f98df79d..92a017b5b5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp index d888e5e81a..5288ec8e5a 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp index 9b675cf0ea..d9eac78a48 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp index 261bf5ccf6..cd0d152f7c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp index e22e5a5cec..f1d9fdc3a6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp index b606295a4b..548ee59d29 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp index ecc62c6af9..c8f2b89346 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp index 83b4e85939..aad1b848e5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp index 88a892ad99..9c4e13f713 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp index fb8743d28c..3862885395 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp index d5d66e0183..03d898bc60 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp index 929772d9cc..0a9aaf60d6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp index 3f0e8e84c6..638f9bd184 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp index e144f69e74..840bef2b1b 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp index 976c56395e..9ce55f9283 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Metal_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake deleted file mode 100644 index da02f7b697..0000000000 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake +++ /dev/null @@ -1,11 +0,0 @@ -# -# 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 -# -# - -set(FILES - Source/Atom_RHI_Metal_precompiled.h -) diff --git a/Gems/Atom/RHI/Null/Code/CMakeLists.txt b/Gems/Atom/RHI/Null/Code/CMakeLists.txt index 8796e25841..71df9f696f 100644 --- a/Gems/Atom/RHI/Null/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Null/Code/CMakeLists.txt @@ -29,7 +29,6 @@ ly_add_target( NAME Atom_RHI_Null.Private.Static STATIC NAMESPACE Gem FILES_CMAKE - atom_rhi_null_common_files.cmake atom_rhi_null_private_common_files.cmake INCLUDE_DIRECTORIES PRIVATE diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_Platform.h similarity index 100% rename from Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_precompiled_Platform.h rename to Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_Platform.h diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_Platform.h similarity index 100% rename from Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_precompiled_Platform.h rename to Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_Platform.h diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_Platform.h similarity index 100% rename from Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_precompiled_Platform.h rename to Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_Platform.h diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_Platform.h similarity index 100% rename from Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_precompiled_Platform.h rename to Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_Platform.h diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_Platform.h similarity index 100% rename from Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_precompiled_Platform.h rename to Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_Platform.h diff --git a/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h b/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null.h similarity index 88% rename from Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h rename to Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null.h index 43886a13f2..1ba88e7faf 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h +++ b/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null.h @@ -5,9 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - #pragma once #include - -#include +#include diff --git a/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h b/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h deleted file mode 100644 index f00a198dfa..0000000000 --- a/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * 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 -#include diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index 696f9a8150..fc050f24b1 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp index 5df22065fa..678390948f 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp index 94daf5f022..6f3a0f3995 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp index e282a7b1e0..ee1ca78f9e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp index 2b036aad9f..babca59e7d 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp index 3b12b41d4e..035d3418bc 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp index 9709ef7b2f..250d7a7f7c 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp index 91dfc8ab89..7b94efb69f 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp index dd60daf4ad..4089957f6f 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp index 9d5c1d99da..ce2c10fc29 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp index bdd7ecbd51..6a388fa6f2 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp index 25737468f7..275c787d15 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp index a9bb3464d3..53adc3231a 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp index abf4eb95e8..b670e15258 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp index e3a253eada..6405db18c8 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp index ffb8a6e366..d63b45ad9e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp index fd9c7106f5..7f29a8d17e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp index 0de092fa65..9eec007490 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp index 537f11f7f7..5204aeaf71 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp index df0a83a1e3..c1440b9867 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp index 2239b15208..e42a39bd58 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp index b711a7e0f3..7445b24a19 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp index 57fa99c342..2d42748cee 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp index aa8d94d9f6..265949cecb 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp index 0b8b349afb..b49f6a7f6b 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp index ce29f40517..eebe142631 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp index b683bfe304..66a11cfb6a 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp index 57cd3b5b59..9e77a5141f 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp index b5f7a2d0b2..d72de7996e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp index 85c8d2a3d7..616e156a3f 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Null_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake deleted file mode 100644 index 10b1424dde..0000000000 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake +++ /dev/null @@ -1,11 +0,0 @@ -# -# 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 -# -# - -set(FILES - Source/Atom_RHI_Null_precompiled.h -) diff --git a/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt b/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt index 2842660b37..39c49ab07f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt @@ -67,7 +67,6 @@ ly_add_target( NAME Atom_RHI_Vulkan.Reflect STATIC NAMESPACE Gem FILES_CMAKE - atom_rhi_vulkan_common_files.cmake atom_rhi_vulkan_reflect_common_files.cmake ${pal_source_dir}/platform_reflect_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake INCLUDE_DIRECTORIES diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h index b7625810e6..cd33840caf 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h @@ -7,6 +7,8 @@ */ #pragma once + +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Android.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Android.h similarity index 100% rename from Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Android.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Android.h diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Platform.h new file mode 100644 index 0000000000..431b5a3828 --- /dev/null +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Platform.h @@ -0,0 +1,9 @@ +/* + * 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 diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h deleted file mode 100644 index 85453766e4..0000000000 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake index 0911ae90c7..57d4a32cef 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h - Atom_RHI_Vulkan_precompiled_Android.h + Atom_RHI_Vulkan_Platform.h + Atom_RHI_Vulkan_Android.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake index 0911ae90c7..57d4a32cef 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h - Atom_RHI_Vulkan_precompiled_Android.h + Atom_RHI_Vulkan_Platform.h + Atom_RHI_Vulkan_Android.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Linux.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_Linux.h similarity index 100% rename from Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Linux.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_Linux.h diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_Platform.h similarity index 87% rename from Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_Platform.h index cb344157fa..ce050aa204 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_Platform.h @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - #pragma once -#include +#include diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h deleted file mode 100644 index 5d2bc336a5..0000000000 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * 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 - diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake index d3fa6cd051..41f78ec944 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake @@ -7,5 +7,5 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h + Atom_RHI_Vulkan_Platform.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake index d3fa6cd051..41f78ec944 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake @@ -7,5 +7,5 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h + Atom_RHI_Vulkan_Platform.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Mac.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_Mac.h similarity index 100% rename from Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Mac.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_Mac.h diff --git a/Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_Platform.h similarity index 87% rename from Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_Platform.h index d2963c0bf0..75727bdade 100644 --- a/Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_Platform.h @@ -5,5 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - #pragma once + +#include diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h deleted file mode 100644 index ef6b923286..0000000000 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake index d3fa6cd051..41f78ec944 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake @@ -7,5 +7,5 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h + Atom_RHI_Vulkan_Platform.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake index f299a3e582..f894a1afd2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h - Atom_RHI_Vulkan_precompiled_Mac.h + Atom_RHI_Vulkan_Platform.h + Atom_RHI_Vulkan_Mac.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h index 957d8c6c96..8a046ae864 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h @@ -7,13 +7,4 @@ */ #pragma once -#ifndef WIN32_LEAN_AND_MEAN - #define WIN32_LEAN_AND_MEAN 1 - #define LEAN_AND_MEAN_DEFINED 1 -#endif - -#include - -#if defined(LEAN_AND_MEAN_DEFINED) - #undef WIN32_LEAN_AND_MEAN -#endif +#include diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_Platform.h new file mode 100644 index 0000000000..b3f5d2105e --- /dev/null +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_Platform.h @@ -0,0 +1,9 @@ +/* + * 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 diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Windows.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_Windows.h similarity index 100% rename from Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Windows.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_Windows.h diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h deleted file mode 100644 index 6a94dc4ffc..0000000000 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake index 6d817f3586..e19093f37b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h - Atom_RHI_Vulkan_precompiled_Windows.h + Atom_RHI_Vulkan_Platform.h + Atom_RHI_Vulkan_Windows.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake index 6d817f3586..e19093f37b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake @@ -7,6 +7,6 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h - Atom_RHI_Vulkan_precompiled_Windows.h + Atom_RHI_Vulkan_Platform.h + Atom_RHI_Vulkan_Windows.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_Platform.h similarity index 100% rename from Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_precompiled_Platform.h rename to Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_Platform.h diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake index d3fa6cd051..41f78ec944 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake @@ -7,5 +7,5 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h + Atom_RHI_Vulkan_Platform.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake index d3fa6cd051..41f78ec944 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake @@ -7,5 +7,5 @@ # set(FILES - Atom_RHI_Vulkan_precompiled_Platform.h + Atom_RHI_Vulkan_Platform.h ) diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h b/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h deleted file mode 100644 index 14534e665b..0000000000 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * 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 -#include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp index cb6733ba0f..9bcfa61263 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp index cbea2b8b15..87b75d8609 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp index ab50dd1568..02c776293d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp index fbd7734a8d..c0166e95b5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp index 08eaf39969..b0ef12ae59 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp index 87ee5530a8..18b5d83ed3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp index 547a20aab4..be3c0fb3eb 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp index 908753737d..ab04667beb 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp index 846ba77f29..07b18266f5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp index 9e1dfed8bd..6371b12526 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp index 9d664c6795..ba67f11c32 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp index 8e3fb3b3f7..d07ee5dde3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h index 39a633eaa2..dd6b54c8b4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp index a427cf9c27..d90f1c33d5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp index 0725cda05b..09179c7110 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp index 5fe5e2357d..c1d89c717f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp index 4a135fb9be..ca6c829cca 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp index 8d8336b005..8635e8edcf 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp index 269aaa9819..282ac1bb80 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp index 9c84a1f4ad..18ddc0f4df 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp index 91f518e0d8..ab6956f303 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp index 552620da32..c192b49a48 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp index 78bac0dbe1..8dcd4b3462 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp index d8feab65b8..564614a0a8 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp index 515a55335e..4e7a13444b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp index bced8d2cba..961b828f98 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp index 543632102f..372ebc273d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp index 0200cca3de..12efb488fb 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp index 73927cf96e..0aa33503d4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp index 3f48c6d751..38972c6802 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp index 9210f7c1ce..e85c86f3f4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp index f2009cff73..5314fc2aa1 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp index e7fedc7c14..90e6d63044 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp index 25a550b000..e91b158629 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp index 7708ce181d..c43e69d782 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp index 265c189fca..cb60d30152 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp index a9f64b6d1b..2cb5a64f93 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp index d5a6f7764d..deb252c841 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp index 0d72148e1c..df2bc5529f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp index 7dcca29f0d..d4697cbd32 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp index 62a906fdb6..5b3487b189 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" + +#include #include namespace AZ diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp index ccf976a3be..700cf7dbb8 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp index ac70904b06..c2fe16b551 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp index 6c9f2e38f6..a316a5eacb 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h index 5fb703ba8d..56726a82f6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp index ab73f402d7..7535b19106 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp index a5adf3d2c5..e11fbe2ca7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp index b4f663bbaa..b9833deae7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp index d89a370608..cc987b690e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp index e812818176..1b3a533f34 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp index 524d973e14..76a5486953 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp index 53eedf17d4..b4eba096ce 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp index 4c014666bb..5c7a78fd89 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp index e540f812f9..a797285981 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp index a1a8520235..9430b0b391 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp index 52226bfd28..ebdb59d00c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp index 8588f8d741..23b37ccc84 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp index 47d011fdb1..fb27762841 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp index 531b179cb8..55e804aac9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h index 0a6f4610cc..73881e9f75 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp index 034812744a..3ab1433b51 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp index aa6bfffb4e..b4c153a38c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h index 6f2004f8d9..3c4bb7fcf2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp index 017958e776..0c5cda7008 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp index 1547ef775c..e36afd0b7a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h index 9c737f2fbf..96d5f8f5f6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp index aaf6476eb3..a3282067a7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h index 1f47e5211d..3cc2ff3ba7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp index ecc6f171a9..ec031b5212 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp index 724ca77913..65a502a2e7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h index c7bb4596bd..610de6aad9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h @@ -6,6 +6,8 @@ * */ #pragma once + +#include #include namespace AZ diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp index 146895a281..9b2593a761 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp index efb62cc7cd..fee2e0e1ca 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h index 4f32830619..691e966fce 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp index 22ae007c0e..f406383743 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp index 8941ff3610..cba4c71709 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp index 09dffc8794..2dcc4ab9c1 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp index 7b2155f54b..c5ca07eb27 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp index 202773c766..f68b7720b7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include namespace AZ diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp index 9c4636dc63..9189c2e177 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp index 3d5837a17b..14241397be 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp index 937be84c84..0ae3ae1114 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" + +#include "Atom_RHI_Vulkan_Platform.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp index 289d91520f..36e0c2b2f5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp index 07211ff7fa..3ce200d0d7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp index f6dcbeff54..39dd817b39 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp @@ -6,7 +6,6 @@ * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp index da3d4437de..74cf7a4c85 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Atom_RHI_Vulkan_precompiled.h" #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h index fda542bd67..5d6e5e50ef 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h @@ -7,6 +7,7 @@ */ #pragma once +#include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake deleted file mode 100644 index 7818d31ecc..0000000000 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake +++ /dev/null @@ -1,11 +0,0 @@ -# -# 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 -# -# - -set(FILES - Source/Atom_RHI_Vulkan_precompiled.h -) diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h index 6e59e26eef..a0a35907e5 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h @@ -7,7 +7,7 @@ */ #pragma once -#include +#include #include #include diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp index 7138a12c87..c78951ed45 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp @@ -64,5 +64,3 @@ namespace MaterialEditor return false; } } // namespace MaterialEditor - -#include diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h index 384933476d..7f8ff571d7 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h @@ -7,7 +7,7 @@ */ #pragma once -#include +#include #include #include diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h index 0efc4c6a4c..7dd2629bd0 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h @@ -14,6 +14,7 @@ #include #include +#include #include #include #include diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h deleted file mode 100644 index 44cb7bfc89..0000000000 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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 - -#define ATOMFONT_EXPORTS - -#include - -#include - -#include -#include -#include -#include - -#define USE_NULLFONT - -#if defined(DEDICATED_SERVER) -#define USE_NULLFONT_ALWAYS 1 -#endif - diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h index ac800ea30f..ebbdaf09d0 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h @@ -9,9 +9,9 @@ // Description : Dummy font implementation (dedicated server) - #pragma once +#define USE_NULLFONT #if defined(USE_NULLFONT) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h index a752e02d29..795c823fd6 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h @@ -19,6 +19,8 @@ #include #include #include +#include +#include #include "AtomFont.h" #include diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h index d1f4d01656..1f3aa6955f 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h @@ -14,6 +14,8 @@ #include #include +class ICrySizer; + namespace AZ { class GlyphBitmap diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp index 521f7a849f..02cbb5a7a4 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp @@ -6,7 +6,6 @@ * */ -#include #if !defined(USE_NULLFONT_ALWAYS) #include diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp index 185dbec61b..5aae754a7d 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp @@ -6,7 +6,6 @@ * */ -#include #if !defined(USE_NULLFONT_ALWAYS) #include diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp index 6df6017498..35c2b26b48 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp @@ -10,7 +10,6 @@ // Description : AtomFont class. -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp index 13d550861b..0c311a670b 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp @@ -6,7 +6,8 @@ * */ -#include +#define USE_NULLFONT + #include "AtomFontSystemComponent.h" #include @@ -96,8 +97,8 @@ namespace AZ #else // The NULL font implementation must be present for all platforms // supporting running as a pure dedicated server. - system->GetILog()->LogError("Missing NULL font implementation for dedicated server"); - env.pCryFont = NULL; + system.GetILog()->LogError("Missing NULL font implementation for dedicated server"); + gEnv->pCryFont = NULL; #endif } else diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp index ac725b180a..efccbe7335 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp @@ -9,7 +9,7 @@ // Description : Dummy font implementation (dedicated server) -#include +#define USE_NULLFONT #if defined(USE_NULLFONT) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp index d98a3628a8..c07717945a 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp @@ -10,7 +10,6 @@ // Description : Font class. -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp index 40e03c251f..89af6b077b 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp @@ -10,7 +10,6 @@ // Description : XML parsing to load a font. -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h index 626031c169..2cae7b45ee 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h @@ -9,7 +9,6 @@ #pragma once -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp index 583ba465a9..101a506ddc 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp @@ -11,7 +11,6 @@ // Purpose: // - Render a glyph outline into a bitmap using FreeType 2 -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp index 2652a03302..6008881ec3 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp @@ -10,7 +10,6 @@ // Purpose: // - Create and update a texture with the most recently used glyphs -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp index b8fa6f2462..09bc27783b 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp @@ -10,10 +10,9 @@ // Purpose: // - Hold a glyph bitmap and blit it to the main texture -#include #include #include - +#include //------------------------------------------------------------------------------------------------- AZ::GlyphBitmap::GlyphBitmap() diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp index 2c3e556b1f..12ebd99183 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp @@ -10,7 +10,6 @@ // Purpose: // - Manage and cache glyphs, retrieving them from the renderer as needed -#include #if !defined(USE_NULLFONT_ALWAYS) diff --git a/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake index ef71512a93..f12dc84f90 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake @@ -29,5 +29,4 @@ set(FILES Include/AtomLyIntegration/AtomFont/GlyphCache.h Include/AtomLyIntegration/AtomFont/AtomNullFont.h Include/AtomLyIntegration/AtomFont/resource.h - Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h ) diff --git a/Gems/Blast/Code/Editor/ConfigurationWidget.cpp b/Gems/Blast/Code/Editor/ConfigurationWidget.cpp index 30a4da8010..f13802ada9 100644 --- a/Gems/Blast/Code/Editor/ConfigurationWidget.cpp +++ b/Gems/Blast/Code/Editor/ConfigurationWidget.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include #include diff --git a/Gems/Blast/Code/Editor/EditorWindow.cpp b/Gems/Blast/Code/Editor/EditorWindow.cpp index b07c91d728..73c9e447f1 100644 --- a/Gems/Blast/Code/Editor/EditorWindow.cpp +++ b/Gems/Blast/Code/Editor/EditorWindow.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include #include diff --git a/Gems/Blast/Code/Editor/MaterialIdWidget.cpp b/Gems/Blast/Code/Editor/MaterialIdWidget.cpp index 4c8483c741..a39ef8ca4c 100644 --- a/Gems/Blast/Code/Editor/MaterialIdWidget.cpp +++ b/Gems/Blast/Code/Editor/MaterialIdWidget.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include #include diff --git a/Gems/Blast/Code/Editor/SettingsWidget.cpp b/Gems/Blast/Code/Editor/SettingsWidget.cpp index 27561e4f2e..2cdeef17e2 100644 --- a/Gems/Blast/Code/Editor/SettingsWidget.cpp +++ b/Gems/Blast/Code/Editor/SettingsWidget.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include #include diff --git a/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp b/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp index c6a30c0d9c..704661c716 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp +++ b/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp b/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp index 606739400d..762546c7ce 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp +++ b/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include #include diff --git a/Gems/Blast/Code/Source/Actor/EntityProvider.cpp b/Gems/Blast/Code/Source/Actor/EntityProvider.cpp index 3620021d29..d69ae7b936 100644 --- a/Gems/Blast/Code/Source/Actor/EntityProvider.cpp +++ b/Gems/Blast/Code/Source/Actor/EntityProvider.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include #include diff --git a/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp b/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp index f628b63351..d28f02dd2c 100644 --- a/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp +++ b/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp index 43c4bf656c..bfd27448c0 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include #include diff --git a/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp b/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp index a397f71e0f..f1dd072fd7 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include diff --git a/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp b/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp index 1f70b7a7fe..acb3043c19 100644 --- a/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include diff --git a/Gems/Blast/Code/Source/BlastModule.cpp b/Gems/Blast/Code/Source/BlastModule.cpp index bc152b14b8..cbb93a86f7 100644 --- a/Gems/Blast/Code/Source/BlastModule.cpp +++ b/Gems/Blast/Code/Source/BlastModule.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include #include diff --git a/Gems/Blast/Code/Source/Common/BlastMaterial.cpp b/Gems/Blast/Code/Source/Common/BlastMaterial.cpp index c14c130aee..f8919599d8 100644 --- a/Gems/Blast/Code/Source/Common/BlastMaterial.cpp +++ b/Gems/Blast/Code/Source/Common/BlastMaterial.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include #include diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp index 2fcd5f90ab..d05a679733 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp b/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp index ca2ec8ce28..87f78be944 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include namespace Blast diff --git a/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp b/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp index 06d5f78a85..17848a53d3 100644 --- a/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include #include diff --git a/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp b/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp index 0374957079..b7a7443daa 100644 --- a/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp b/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp index 97f50176b3..76a40db66e 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp b/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp index d14f30579a..3c29d1498e 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include #include diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp b/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp index 431a3fcf62..52df273254 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include #include diff --git a/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp b/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp index e8f03883eb..d8d703e51f 100644 --- a/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include #include diff --git a/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp b/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp index a83c86a166..98ea7d6741 100644 --- a/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp +++ b/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp @@ -6,8 +6,6 @@ * */ -#include "StdAfx.h" - #include #include #include diff --git a/Gems/Blast/Code/Source/Family/ActorTracker.cpp b/Gems/Blast/Code/Source/Family/ActorTracker.cpp index 3ae9f84e57..4c81c2d934 100644 --- a/Gems/Blast/Code/Source/Family/ActorTracker.cpp +++ b/Gems/Blast/Code/Source/Family/ActorTracker.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include #include diff --git a/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp b/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp index 0719a53272..ec4925fe51 100644 --- a/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp +++ b/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp @@ -6,7 +6,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/Source/Family/DamageManager.cpp b/Gems/Blast/Code/Source/Family/DamageManager.cpp index 8f072ba668..9067b7c332 100644 --- a/Gems/Blast/Code/Source/Family/DamageManager.cpp +++ b/Gems/Blast/Code/Source/Family/DamageManager.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include diff --git a/Gems/Blast/Code/Source/StdAfx.cpp b/Gems/Blast/Code/Source/StdAfx.cpp deleted file mode 100644 index 45fa4f70a3..0000000000 --- a/Gems/Blast/Code/Source/StdAfx.cpp +++ /dev/null @@ -1,8 +0,0 @@ -/* - * 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 "StdAfx.h" diff --git a/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp b/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp index 47a8c03a6a..1abb729792 100644 --- a/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp +++ b/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include diff --git a/Gems/Blast/Code/Tests/BlastActorTest.cpp b/Gems/Blast/Code/Tests/BlastActorTest.cpp index 282a6cfe71..2100d8a151 100644 --- a/Gems/Blast/Code/Tests/BlastActorTest.cpp +++ b/Gems/Blast/Code/Tests/BlastActorTest.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include diff --git a/Gems/Blast/Code/Tests/BlastFamilyTest.cpp b/Gems/Blast/Code/Tests/BlastFamilyTest.cpp index 5ae383ed93..af1c81e8ae 100644 --- a/Gems/Blast/Code/Tests/BlastFamilyTest.cpp +++ b/Gems/Blast/Code/Tests/BlastFamilyTest.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include diff --git a/Gems/Blast/Code/Tests/BlastTest.cpp b/Gems/Blast/Code/Tests/BlastTest.cpp index e0e0bbff5a..40217ff9bc 100644 --- a/Gems/Blast/Code/Tests/BlastTest.cpp +++ b/Gems/Blast/Code/Tests/BlastTest.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/Tests/DamageManagerTest.cpp b/Gems/Blast/Code/Tests/DamageManagerTest.cpp index 2aa522a694..ed94211729 100644 --- a/Gems/Blast/Code/Tests/DamageManagerTest.cpp +++ b/Gems/Blast/Code/Tests/DamageManagerTest.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include diff --git a/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp b/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp index fef92d2372..3df22d081f 100644 --- a/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp +++ b/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include #include diff --git a/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp b/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp index e0e0bbff5a..40217ff9bc 100644 --- a/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp +++ b/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "StdAfx.h" #include diff --git a/Gems/Blast/Code/blast_files.cmake b/Gems/Blast/Code/blast_files.cmake index 3b8358da69..1707ec46a0 100644 --- a/Gems/Blast/Code/blast_files.cmake +++ b/Gems/Blast/Code/blast_files.cmake @@ -7,8 +7,6 @@ # set(FILES - Source/StdAfx.cpp - Source/StdAfx.h Include/Blast/BlastActor.h Include/Blast/BlastActorData.h Include/Blast/BlastFamilyComponentBus.h diff --git a/Gems/Camera/Code/Source/CameraComponent.cpp b/Gems/Camera/Code/Source/CameraComponent.cpp index 7ed9ed49b6..814fd1c4e7 100644 --- a/Gems/Camera/Code/Source/CameraComponent.cpp +++ b/Gems/Camera/Code/Source/CameraComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include #include #include diff --git a/Gems/Camera/Code/Source/CameraComponentConverter.cpp b/Gems/Camera/Code/Source/CameraComponentConverter.cpp index 7ca6ae6aad..a0dd9ae9ba 100644 --- a/Gems/Camera/Code/Source/CameraComponentConverter.cpp +++ b/Gems/Camera/Code/Source/CameraComponentConverter.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include #if defined(CAMERA_EDITOR) diff --git a/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp b/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp index 186cfdb9c5..bf3083bf59 100644 --- a/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp +++ b/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include "CameraEditorSystemComponent.h" #include "EditorCameraComponent.h" diff --git a/Gems/Camera/Code/Source/CameraGem.cpp b/Gems/Camera/Code/Source/CameraGem.cpp index 31dcbe758f..11da0310bd 100644 --- a/Gems/Camera/Code/Source/CameraGem.cpp +++ b/Gems/Camera/Code/Source/CameraGem.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include #include diff --git a/Gems/Camera/Code/Source/Camera_precompiled.h b/Gems/Camera/Code/Source/Camera_precompiled.h deleted file mode 100644 index b27de64581..0000000000 --- a/Gems/Camera/Code/Source/Camera_precompiled.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * 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 -#if defined(CAMERA_EDITOR) - -#include - -///////////////////////////////////////////////////////////////////////////// -// Engine -///////////////////////////////////////////////////////////////////////////// -#include -#include -#include -#include - -///////////////////////////////////////////////////////////////////////////// -// Editor -///////////////////////////////////////////////////////////////////////////// -#include -#include - -///////////////////////////////////////////////////////////////////////////// -// STL -///////////////////////////////////////////////////////////////////////////// -#include -#include -#include -#include -#include - -#endif // defined(CAMERA_EDITOR) diff --git a/Gems/Camera/Code/Source/EditorCameraComponent.cpp b/Gems/Camera/Code/Source/EditorCameraComponent.cpp index 902a5b8a59..dfa662f206 100644 --- a/Gems/Camera/Code/Source/EditorCameraComponent.cpp +++ b/Gems/Camera/Code/Source/EditorCameraComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include #include #include diff --git a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp index f81c65b71f..9644aa76f9 100644 --- a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp +++ b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include "ViewportCameraSelectorWindow.h" #include "ViewportCameraSelectorWindow_Internals.h" #include diff --git a/Gems/Camera/Code/Tests/CameraEditorUITests.cpp b/Gems/Camera/Code/Tests/CameraEditorUITests.cpp index 19166fd211..4005c2d516 100644 --- a/Gems/Camera/Code/Tests/CameraEditorUITests.cpp +++ b/Gems/Camera/Code/Tests/CameraEditorUITests.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Camera_precompiled.h" #include #include diff --git a/Gems/Camera/Code/camera_files.cmake b/Gems/Camera/Code/camera_files.cmake index dcc0db1594..295589e453 100644 --- a/Gems/Camera/Code/camera_files.cmake +++ b/Gems/Camera/Code/camera_files.cmake @@ -13,5 +13,4 @@ set(FILES camera_files.cmake Source/CameraComponentController.cpp Source/CameraComponentController.h Source/CameraViewRegistrationBus.h - Source/Camera_precompiled.h ) diff --git a/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp b/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp index c9ef659975..b29b4f4519 100644 --- a/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp +++ b/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp @@ -6,8 +6,6 @@ * */ -#include "CameraFramework_precompiled.h" - #include "CameraRigComponent.h" #include diff --git a/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp b/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp index e17e84a6f9..e8df095ed0 100644 --- a/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp +++ b/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "CameraFramework_precompiled.h" + #include "CameraRigComponent.h" #include #include diff --git a/Gems/CameraFramework/Code/cameraframework_files.cmake b/Gems/CameraFramework/Code/cameraframework_files.cmake index 9c9ed9397d..dc3e61cc9d 100644 --- a/Gems/CameraFramework/Code/cameraframework_files.cmake +++ b/Gems/CameraFramework/Code/cameraframework_files.cmake @@ -13,5 +13,4 @@ set(FILES Include/CameraFramework/ICameraTransformBehavior.h Source/CameraRigComponent.h Source/CameraRigComponent.cpp - Source/CameraFramework_precompiled.h ) diff --git a/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp index fee37af30a..7e39720285 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" - #include #include diff --git a/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp b/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp index 46c19bd7d8..31a1c6028a 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include "DebugDrawSystemComponent.h" #include "DebugDrawLineComponent.h" diff --git a/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp index bf09d6f8dd..5b5cb4b2ab 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp index 267bb5d08e..0f6378da7f 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp index 457fa07cac..1622cd6f00 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp index 4bf4fdfb1e..cf306ad635 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp index a10fe6889f..5ed19ded98 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp index e8f8d2dcd6..f91308d663 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp index 2e422c21d1..946833b583 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp index 60409b48e3..b21fc6e9cb 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp index 161ed8d2b8..ecbc6e0062 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp index addc3dfc3a..3b1464135f 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp index ce7d877827..95bc907d41 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "DebugDraw_precompiled.h" #include #include diff --git a/Gems/DebugDraw/Code/debugdraw_editor_files.cmake b/Gems/DebugDraw/Code/debugdraw_editor_files.cmake index e84992bc1b..e265ff58d2 100644 --- a/Gems/DebugDraw/Code/debugdraw_editor_files.cmake +++ b/Gems/DebugDraw/Code/debugdraw_editor_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/DebugDraw_precompiled.h Include/DebugDraw/DebugDrawBus.h Source/DebugDrawModule.cpp Source/DebugDrawLineComponent.cpp diff --git a/Gems/DebugDraw/Code/debugdraw_files.cmake b/Gems/DebugDraw/Code/debugdraw_files.cmake index 072cb5e0f6..0b05946c77 100644 --- a/Gems/DebugDraw/Code/debugdraw_files.cmake +++ b/Gems/DebugDraw/Code/debugdraw_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/DebugDraw_precompiled.h Include/DebugDraw/DebugDrawBus.h Source/DebugDrawLineComponent.cpp Source/DebugDrawLineComponent.h diff --git a/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h b/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h deleted file mode 100644 index 639bb181d9..0000000000 --- a/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * 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 - -// Minimal integration system bits, such as allocator definition, smart pointers, etc. -#include // Many CryCommon files require that this is included first. -#include -// When we go full-source for EMotion FX, we'll want to ensure we're no longer pulling it all in via PCH, -// and instead apply our normal philosophy around minimal includes. -// Though if EMotion FX has any internal defines that drive behavior, we'd still potentially want an include wrapper. -#include -#include diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp index 2b32ee5c70..d3e39840ab 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp @@ -6,11 +6,13 @@ * */ -#include "EMotionFX_precompiled.h" #include #include #include - +#include +#include +#include +#include namespace EMotionFX { diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp index f2f94134a3..e47cfcf162 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp @@ -6,10 +6,10 @@ * */ - -#include "EMotionFX_precompiled.h" - #include +#include +#include +#include namespace EMotionFX { diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp index 03ce50c7db..5ca9a34e72 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp @@ -6,13 +6,14 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include +#include #include +#include +#include +#include namespace EMotionFX { @@ -153,9 +154,9 @@ namespace EMotionFX { AZStd::string assetSourcePath = devAssetsPath; - AzFramework::StringFunc::AssetDatabasePath::Normalize(assetSourcePath); + AZ::StringFunc::AssetDatabasePath::Normalize(assetSourcePath); AZStd::string filename; - AzFramework::StringFunc::AssetDatabasePath::Join(assetSourcePath.c_str(), assetFilename.c_str(), filename); + AZ::StringFunc::AssetDatabasePath::Join(assetSourcePath.c_str(), assetFilename.c_str(), filename); assetData->m_emfxMotionSet->SetFilename(filename.c_str()); } diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp index 42cc58d66a..74133997e4 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "EMotionFX_precompiled.h" - #include #include #include @@ -27,6 +25,12 @@ #include #include #include +#include +#include +#include +#include + +#include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp index b425dc9fc2..eac3705300 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp @@ -8,8 +8,6 @@ #include -#include "EMotionFX_precompiled.h" - #include #include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h index 3bfc29d563..4fd3814a1a 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h @@ -14,6 +14,7 @@ #include #include #include +#include namespace EMotionFX { diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp index 8004152130..ade713efa6 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp @@ -6,16 +6,17 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include #include #include #include +#include #include +#include +#include +#include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp index ca2601d083..356f5f934a 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp @@ -9,8 +9,6 @@ #include -#include "EMotionFX_precompiled.h" - #include #include #include @@ -18,6 +16,7 @@ #include #include +#include #include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp index 023fec2a7a..fa7ea7f2a7 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp @@ -6,9 +6,6 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include #include @@ -17,6 +14,9 @@ #include #include +#include +#include +#include namespace EMotionFX { diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp index 65c2d9cef6..941b087592 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "EMotionFX_precompiled.h" - #include #include #include @@ -30,6 +28,8 @@ #include #include #include +#include +#include #include namespace EMotionFX diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp index 3da6aeb7f8..9b79003271 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "EMotionFX_precompiled.h" - #include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp index 66cf2daf16..b1e8aabf40 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp @@ -6,9 +6,6 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include #include @@ -22,6 +19,7 @@ #include #include #include +#include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp index 8a6a268cf3..08a15ed0d4 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp @@ -8,7 +8,6 @@ #include -#include "EMotionFX_precompiled.h" #include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp index 9a251991fc..b0cef343b6 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp @@ -6,9 +6,6 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include #include @@ -20,6 +17,8 @@ #include #include #include +#include +#include namespace EMotionFX { diff --git a/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp b/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp index 982a3050bf..043778e615 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp @@ -6,9 +6,6 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include #include diff --git a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp index d2cf64d9fd..c1b7be1239 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp @@ -6,9 +6,6 @@ * */ - -#include "EMotionFX_precompiled.h" - #include #include #include @@ -30,6 +27,13 @@ #include #include #include +#include +#include +#include +#include +#include +#include +#include #include #include diff --git a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp index a376374f3a..6543a115c5 100644 --- a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp @@ -6,13 +6,17 @@ * */ -#include "EMotionFX_precompiled.h" #include "EMotionFXBuilderFixture.h" #include #include #include #include +#include +#include +#include +#include +#include #include #include diff --git a/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp b/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp index e412dc4550..43422dd654 100644 --- a/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp +++ b/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp @@ -6,8 +6,6 @@ * */ -#include "EMotionFX_precompiled.h" - #include #include #include diff --git a/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp b/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp index 2ca923a13f..bf7eee3afc 100644 --- a/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp +++ b/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp @@ -6,8 +6,6 @@ * */ - -#include "EMotionFX_precompiled.h" #include "SystemComponentFixture.h" #include diff --git a/Gems/EMotionFX/Code/emotionfx_editor_files.cmake b/Gems/EMotionFX/Code/emotionfx_editor_files.cmake index 294b50696b..6fd3a3118e 100644 --- a/Gems/EMotionFX/Code/emotionfx_editor_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_editor_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/EMotionFX_precompiled.h ../Assets/Editor/Layouts/Layouts.qrc ../Assets/Editor/Images/Icons/Resources.qrc ../Assets/Editor/Images/Icons/ActorComponent.svg diff --git a/Gems/EMotionFX/Code/emotionfx_files.cmake b/Gems/EMotionFX/Code/emotionfx_files.cmake index ef71ecdfa8..3460beaf19 100644 --- a/Gems/EMotionFX/Code/emotionfx_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/EMotionFX_precompiled.h Include/Integration/AnimationBus.h Include/Integration/MotionExtractionBus.h Source/Integration/System/SystemComponent.cpp diff --git a/Gems/FastNoise/Code/External/FastNoise/FastNoise.cpp b/Gems/FastNoise/Code/External/FastNoise/FastNoise.cpp index 7c8748c46f..51980ca08a 100644 --- a/Gems/FastNoise/Code/External/FastNoise/FastNoise.cpp +++ b/Gems/FastNoise/Code/External/FastNoise/FastNoise.cpp @@ -28,8 +28,6 @@ // Modified from original -#include "FastNoise_precompiled.h" - #include "FastNoise.h" #include diff --git a/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp b/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp index 6a8e877173..a1b5dd9172 100644 --- a/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp +++ b/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "FastNoise_precompiled.h" #include "EditorFastNoiseGradientComponent.h" namespace FastNoiseGem diff --git a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp index 2e72f9e389..b7d1a7a89a 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp @@ -6,7 +6,6 @@ * */ -#include "FastNoise_precompiled.h" #include #include #include diff --git a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h index 1bc317e3c6..bec3bf5271 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h +++ b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h @@ -8,7 +8,6 @@ #pragma once -#include "FastNoise_precompiled.h" #include namespace FastNoiseGem diff --git a/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp b/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp index ac25c93b36..0f8ce4c5da 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "FastNoise_precompiled.h" - #include "FastNoiseGradientComponent.h" #include #include diff --git a/Gems/FastNoise/Code/Source/FastNoiseModule.cpp b/Gems/FastNoise/Code/Source/FastNoiseModule.cpp index b03a20649a..0b65d92905 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseModule.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseModule.cpp @@ -6,8 +6,6 @@ * */ -#include "FastNoise_precompiled.h" - #include #include #include diff --git a/Gems/FastNoise/Code/Source/FastNoiseModule.h b/Gems/FastNoise/Code/Source/FastNoiseModule.h index aa52d6a21b..ce79f3694b 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseModule.h +++ b/Gems/FastNoise/Code/Source/FastNoiseModule.h @@ -8,7 +8,6 @@ #pragma once -#include "FastNoise_precompiled.h" #include namespace FastNoiseGem diff --git a/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp b/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp index 57b2a852a5..9e6205dace 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "FastNoise_precompiled.h" - #include #include diff --git a/Gems/FastNoise/Code/Source/FastNoise_precompiled.h b/Gems/FastNoise/Code/Source/FastNoise_precompiled.h deleted file mode 100644 index 3c81ad1779..0000000000 --- a/Gems/FastNoise/Code/Source/FastNoise_precompiled.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 // Many CryCommon files require that this is included first. diff --git a/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp b/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp index 0be44b7c62..4e06b832e1 100644 --- a/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp +++ b/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "FastNoise_precompiled.h" #include #include diff --git a/Gems/FastNoise/Code/fastnoise_files.cmake b/Gems/FastNoise/Code/fastnoise_files.cmake index 76bb194077..9ef409a19a 100644 --- a/Gems/FastNoise/Code/fastnoise_files.cmake +++ b/Gems/FastNoise/Code/fastnoise_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/FastNoise_precompiled.h Include/FastNoise/Ebuses/FastNoiseBus.h Include/FastNoise/Ebuses/FastNoiseGradientRequestBus.h Source/FastNoiseSystemComponent.cpp diff --git a/Gems/Gestures/Code/Source/GesturesModule.cpp b/Gems/Gestures/Code/Source/GesturesModule.cpp index 037babce7f..a840f7699b 100644 --- a/Gems/Gestures/Code/Source/GesturesModule.cpp +++ b/Gems/Gestures/Code/Source/GesturesModule.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include #include "GesturesSystemComponent.h" diff --git a/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp b/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp index c8e4fd6567..8507ce02aa 100644 --- a/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp +++ b/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "GesturesSystemComponent.h" #include diff --git a/Gems/Gestures/Code/Source/Gestures_precompiled.h b/Gems/Gestures/Code/Source/Gestures_precompiled.h deleted file mode 100644 index 28b54bfd3a..0000000000 --- a/Gems/Gestures/Code/Source/Gestures_precompiled.h +++ /dev/null @@ -1,12 +0,0 @@ -/* - * 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 -#include diff --git a/Gems/Gestures/Code/Source/InputChannelGesture.cpp b/Gems/Gestures/Code/Source/InputChannelGesture.cpp index e70ef918b8..25c780198e 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesture.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGesture.cpp @@ -6,7 +6,6 @@ * */ -#include "Gestures_precompiled.h" #include #include diff --git a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp index 135fd694ac..e2cfd47c15 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureClickOrTap.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp b/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp index 27f528b607..a58e156521 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureDrag.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp b/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp index ccf2cbef3a..5cee4ddc6c 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureHold.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp b/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp index 2aaf9a6b0b..3d3d721d6b 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGesturePinch.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp b/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp index 08c8688f76..30c67ee697 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureRotate.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp index e203347c56..3ddc5b6415 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureSwipe.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputDeviceGestures.cpp b/Gems/Gestures/Code/Source/InputDeviceGestures.cpp index 9bf9e900af..4078fa9ed6 100644 --- a/Gems/Gestures/Code/Source/InputDeviceGestures.cpp +++ b/Gems/Gestures/Code/Source/InputDeviceGestures.cpp @@ -6,8 +6,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputDeviceGestures.h" #include diff --git a/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp b/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp index c114a96da8..72fca0498d 100644 --- a/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp +++ b/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Gestures_precompiled.h" + #include #include #include diff --git a/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp b/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp index aab52e3944..bb7ac4a75a 100644 --- a/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp +++ b/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Gestures_precompiled.h" + #include #include #include diff --git a/Gems/Gestures/Code/gestures_files.cmake b/Gems/Gestures/Code/gestures_files.cmake index b9b5ce2511..f6fe41dbed 100644 --- a/Gems/Gestures/Code/gestures_files.cmake +++ b/Gems/Gestures/Code/gestures_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/Gestures_precompiled.h Include/Gestures/GestureRecognizerClickOrTap.h Include/Gestures/GestureRecognizerClickOrTap.inl Include/Gestures/GestureRecognizerDrag.h diff --git a/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp index 40018106bb..3bb27b00f3 100644 --- a/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "ConstantGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp index 69f8b26cb9..3b71278f86 100644 --- a/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "DitherGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp b/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp index ea0e85f984..d07f3a2e66 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "GradientSurfaceDataComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp index 14a5591e62..af92a0e16c 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "GradientTransformComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp index 8e744a5ca6..650dba209a 100644 --- a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "ImageGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp index 194e751190..11ae5a67da 100644 --- a/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "InvertGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp index 338f6c7387..97dd8faa3c 100644 --- a/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "LevelsGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp index c19358f127..ddf349645b 100644 --- a/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "MixedGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp index 9a3f64010d..6bc7108c64 100644 --- a/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "PerlinGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp index bc744bd7c2..89beb15f32 100644 --- a/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "PosterizeGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp index 1f909a769e..4e02e92db3 100644 --- a/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "RandomGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp index 1fea14da13..3c1fea6563 100644 --- a/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "ReferenceGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp index 79cf397ccb..3a3b9a2efd 100644 --- a/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "ShapeAreaFalloffGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp index 7d0e5dbeef..13b641426b 100644 --- a/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "SmoothStepGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp index ce8ee69f03..c321fe2a54 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "SurfaceAltitudeGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp index fea6bb41fc..389fcf3678 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "SurfaceMaskGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp index 8d79e536c2..15b462f292 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "SurfaceSlopeGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp index 28f75f1be6..97acbb4441 100644 --- a/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "ThresholdGradientComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp index d049b1ce39..ca52812be1 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorConstantGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp index 919c1bf0d5..8c7d47e1d4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorDitherGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp index 182db4270b..9edfd92c3a 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp index 80141c8876..b715df1f92 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorGradientSurfaceDataComponent.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp index 4212c9f42c..4517c30711 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorGradientTransformComponent.h" #include diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp index 7800a6aaac..062f34b644 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorImageBuilderComponent.h" #include diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp index 5be27da4e6..a8770c50fa 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorImageGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp index 74c4533f32..52c96c143c 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorImageProcessingSystemComponent.h" #include diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp index 2cca66bf07..77de25d9d7 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorInvertGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp index 5d171d8abc..6a6251cc02 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorLevelsGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp index c5ab81454b..b6297e0744 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorMixedGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp index 5dd99ad68d..7698cdfec7 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorPerlinGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp index 9a25cf405a..93a7a8b830 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorPosterizeGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp index 25030ef6cf..4ba19118e4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorRandomGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp index 94a4101f18..568af22dcb 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorReferenceGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp index 75a6772e33..01b23f3747 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorShapeAreaFalloffGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp index 3d8bbd7575..0862654ef7 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorSmoothStepGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp index c512f50d46..d709bc83d4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorSurfaceAltitudeGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp index ebc58c46c0..f7e22a5d81 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorSurfaceMaskGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp index 30adc48bd7..d89ce27ecf 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorSurfaceSlopeGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp index b327862d42..b8e0d87434 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "EditorThresholdGradientComponent.h" namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp b/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp index 2d4a08a36b..4ed3ff1718 100644 --- a/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp +++ b/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp @@ -6,8 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" - #include #include diff --git a/Gems/GradientSignal/Code/Source/GradientSampler.cpp b/Gems/GradientSignal/Code/Source/GradientSampler.cpp index b06d2a1b06..bb17ef3557 100644 --- a/Gems/GradientSignal/Code/Source/GradientSampler.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSampler.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include #include diff --git a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp index c1229bf744..134de83d3b 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include #include diff --git a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h index 28d3c9c74c..d8c1221b0e 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h +++ b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h @@ -8,7 +8,6 @@ #pragma once -#include "GradientSignal_precompiled.h" #include namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp b/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp index 34b6491930..9986e62b34 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/GradientSignalModule.h b/Gems/GradientSignal/Code/Source/GradientSignalModule.h index 3d5d9b3fc8..c5928026eb 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalModule.h +++ b/Gems/GradientSignal/Code/Source/GradientSignalModule.h @@ -8,7 +8,6 @@ #pragma once -#include "GradientSignal_precompiled.h" #include namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp b/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp index 28e592f926..090fbe8e5d 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "GradientSignal_precompiled.h" #include "GradientSignalSystemComponent.h" #include diff --git a/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h b/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h deleted file mode 100644 index 3c81ad1779..0000000000 --- a/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * 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 // Many CryCommon files require that this is included first. diff --git a/Gems/GradientSignal/Code/Source/ImageAsset.cpp b/Gems/GradientSignal/Code/Source/ImageAsset.cpp index 2dd28c6a9b..5d3397bbbd 100644 --- a/Gems/GradientSignal/Code/Source/ImageAsset.cpp +++ b/Gems/GradientSignal/Code/Source/ImageAsset.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "GradientSignal_precompiled.h" #include diff --git a/Gems/GradientSignal/Code/Source/ImageSettings.cpp b/Gems/GradientSignal/Code/Source/ImageSettings.cpp index cd03f1023c..e209fb1877 100644 --- a/Gems/GradientSignal/Code/Source/ImageSettings.cpp +++ b/Gems/GradientSignal/Code/Source/ImageSettings.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include namespace GradientSignal diff --git a/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp b/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp index 22dffdad17..28c2bd98e3 100644 --- a/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp +++ b/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include diff --git a/Gems/GradientSignal/Code/Source/SmoothStep.cpp b/Gems/GradientSignal/Code/Source/SmoothStep.cpp index 19b8646160..179fea4013 100644 --- a/Gems/GradientSignal/Code/Source/SmoothStep.cpp +++ b/Gems/GradientSignal/Code/Source/SmoothStep.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include #include diff --git a/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp b/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp index c29ab7d97d..6c64c947d5 100644 --- a/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp +++ b/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "GradientPreviewDataWidget.h" #include diff --git a/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp b/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp index 3c01e3ddf8..b8c461e769 100644 --- a/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp +++ b/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/Source/Util.cpp b/Gems/GradientSignal/Code/Source/Util.cpp index 0a3423ddd9..d9ebf36aec 100644 --- a/Gems/GradientSignal/Code/Source/Util.cpp +++ b/Gems/GradientSignal/Code/Source/Util.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp b/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp index 226974bf22..7e98aa1361 100644 --- a/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp +++ b/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "Tests/GradientSignalTestMocks.h" #include diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp index feb8e6b9c1..b1aa74c397 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "Tests/GradientSignalTestMocks.h" diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp index 74d1ea5812..25a1aa28bb 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp index 0085d4dd5e..b8c0f85cf3 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "Tests/GradientSignalTestMocks.h" #include diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp index e36dafb5fe..809bbf2fe6 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp index 16f6d70a54..11407d6be5 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include "Tests/GradientSignalTestMocks.h" diff --git a/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp b/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp index 6c9f66e17c..54ca51f579 100644 --- a/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp +++ b/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp @@ -6,7 +6,6 @@ * */ -#include "GradientSignal_precompiled.h" #include #include diff --git a/Gems/GradientSignal/Code/gradientsignal_files.cmake b/Gems/GradientSignal/Code/gradientsignal_files.cmake index a645990654..5b28150eb4 100644 --- a/Gems/GradientSignal/Code/gradientsignal_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/GradientSignal_precompiled.h Include/GradientSignal/GradientSampler.h Include/GradientSignal/SmoothStep.h Include/GradientSignal/ImageAsset.h diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp index ff913c5351..a77442e391 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp index 06898ff82f..3ac4f3a099 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp index ec1bbfdeb2..0abdbfc9cb 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp index 4b463aa727..690026e477 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h index d8d8f6fa74..dc35772b87 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp index 4773f9cc7e..24b5429cc0 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp index 077f5d9380..61d7247efb 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h index 193a010371..36dfb3335a 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp index f4bba1dff7..f4ec0bfa1d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp index b204226c42..662f99d634 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp index 5643fd429a..c68994aa54 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp index 7af03e906c..8f3c156b3d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp index 16b5736e7d..5c519fd966 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp index 357cfeb54f..ebada96225 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp index 2427761f5c..771dcd80e3 100644 --- a/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp index 5ffd9e42c0..afafa8350d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp index 31eec40da2..a76bc54618 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp index d892c1f898..9206d32d65 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp index d3ba80796d..01dab4c53b 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp index 249e9988d4..ef9c351eb0 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp index 5a138c7507..5ce8b57e45 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp index fb4cf34a4c..2b30b1c325 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp index 79b444af8a..2d8ff18c3a 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp index 3195811493..7bf1b89096 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp index 78b0c50d64..708520fe9d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp @@ -5,6 +5,5 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp index a58384167b..bc247deaa4 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp index 891ff1c24e..02496630e4 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp index 6a32f7f309..c3569fdf33 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp @@ -5,9 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" -#include +#include AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp index 12facdb300..2928f20f32 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp @@ -5,9 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" -#include +#include AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h index 07586d21d8..1f6a4ce9a7 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #if !defined(Q_MOC_RUN) #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp index dd6e1d318c..7db20cb07e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" + +#include AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h index 737e11b0de..f38157e82e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #include AZ_POP_DISABLE_WARNING diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp index 8625bbd82c..aa144e26be 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp index 90506316e2..3ee00ddff9 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp index 942ee94464..ddb5f11714 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp index 94222ef6cf..5b0169cb05 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp index 63dcca5327..fa265ad644 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp index 6849c45b34..52f6f2aeb5 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp index c6e39a23ab..f7e743c886 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp index c11822832f..4fca555a42 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h index 600940e172..cafc5ac32a 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") #include AZ_POP_DISABLE_WARNING diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp index 05eda6d6c6..c79e043427 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp index 35a154cd21..58618d2127 100644 --- a/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp index 312d056ed0..eefde088bb 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp @@ -6,7 +6,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp index cec0fae0e1..661334df47 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp @@ -6,7 +6,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp index 4996da0472..db62b29de5 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp index fdcdd99c1e..41fa2c7e8c 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp index 3463d425bf..95c6ecff11 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp index a729da0cfc..6fa45718a1 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp index 325a354e33..ec0ab5e3b2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp index a735d10055..bf46b6910e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp index 97770d4b03..099e99cbe6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp index 8cd7bd575b..4af537535a 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp index 05a97e9ab1..0d2a36350a 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp index 49c1f61dcb..54a592bbce 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp index 87eea244ee..135921727c 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp index 8dcfee38b7..342c1e4dd6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp index 11001c9416..c4246ac44c 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp index b77ec2d3b9..c09a627be4 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp index e1c43ece60..58f408a7d3 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp index 99ebc39f6f..2a04a40b14 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include diff --git a/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp index c08da5b5ea..ffb0f134b1 100644 --- a/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp index 3e7c242fdd..33cc99e2d5 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include + #include #include diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp index 433454bf97..a1ee26b3c3 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include + #include #include diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp index 0ae6163979..a80cfb6f78 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp @@ -6,7 +6,6 @@ * */ -#include #include namespace GraphCanvas diff --git a/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp b/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp index d7a060ebb5..ac97502eb2 100644 --- a/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp +++ b/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include class GraphCanvasTest diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp index c8f811638e..c2253467d3 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp index a6cd7ca326..d212fe3073 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" + +#include AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #include diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h index 8079f6b6cc..32939f8e59 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") #if !defined(Q_MOC_RUN) #include diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp index 5725da1df4..fd7ac05cd2 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp b/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp index 44e0902752..916590ea06 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/Source/tools.cpp b/Gems/GraphCanvas/Code/Source/tools.cpp index 778d18e1ae..79d32dbf5e 100644 --- a/Gems/GraphCanvas/Code/Source/tools.cpp +++ b/Gems/GraphCanvas/Code/Source/tools.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp index 73a351a803..53db222422 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp @@ -5,7 +5,8 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" + +#include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") #include diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h index bc21ce5d48..3d007dda91 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h @@ -7,6 +7,8 @@ */ #pragma once +#include + AZ_PUSH_DISABLE_WARNING(4251 4800 4244, "-Wunknown-warning-option") #include AZ_POP_DISABLE_WARNING diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp index f55801eeb6..93ee795ec6 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "precompiled.h" #include #include diff --git a/Gems/GraphCanvas/Code/graphcanvas_files.cmake b/Gems/GraphCanvas/Code/graphcanvas_files.cmake index ff4390d080..cf586e16ac 100644 --- a/Gems/GraphCanvas/Code/graphcanvas_files.cmake +++ b/Gems/GraphCanvas/Code/graphcanvas_files.cmake @@ -7,7 +7,6 @@ # set(FILES - precompiled.h Include/GraphCanvas/Widgets/RootGraphicsItem.h Include/GraphCanvas/tools.h Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilterBus.h diff --git a/Gems/GraphCanvas/Code/precompiled.h b/Gems/GraphCanvas/Code/precompiled.h deleted file mode 100644 index 51902d14ea..0000000000 --- a/Gems/GraphCanvas/Code/precompiled.h +++ /dev/null @@ -1,9 +0,0 @@ -/* - * 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 diff --git a/Gems/HttpRequestor/Code/Source/ComponentStub.cpp b/Gems/HttpRequestor/Code/Source/ComponentStub.cpp index c4e10b1e40..2f5c7295e1 100644 --- a/Gems/HttpRequestor/Code/Source/ComponentStub.cpp +++ b/Gems/HttpRequestor/Code/Source/ComponentStub.cpp @@ -6,7 +6,6 @@ * */ -#include "HttpRequestor_precompiled.h" #include AZ_DECLARE_MODULE_CLASS(Gem_HttpRequestor, AZ::Module) diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp b/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp index 84f3e9113a..8ed40c1599 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp +++ b/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp @@ -5,9 +5,9 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "HttpRequestor_precompiled.h" #include +#include // The AWS Native SDK AWSAllocator triggers a warning due to accessing members of std::allocator directly. // AWSAllocator.h(70): warning C4996: 'std::allocator::pointer': warning STL4010: Various members of std::allocator are deprecated in C++17. diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp b/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp index 244adf1d81..d70c4f4cbf 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp +++ b/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp @@ -6,7 +6,6 @@ * */ -#include "HttpRequestor_precompiled.h" #include "HttpRequestorSystemComponent.h" #include diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp b/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp index a95e9c8e0f..9df015ce36 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp +++ b/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "HttpRequestor_precompiled.h" #include #include diff --git a/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp b/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp index 48f6d75d41..c7540d091f 100644 --- a/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp +++ b/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "HttpRequestor_precompiled.h" + #include #include #include diff --git a/Gems/HttpRequestor/Code/httprequestor_files.cmake b/Gems/HttpRequestor/Code/httprequestor_files.cmake index c9582c60eb..3e5dcb08d3 100644 --- a/Gems/HttpRequestor/Code/httprequestor_files.cmake +++ b/Gems/HttpRequestor/Code/httprequestor_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/HttpRequestor_precompiled.h Source/HttpRequestManager.cpp Source/HttpRequestManager.h Include/HttpRequestor/HttpRequestorBus.h diff --git a/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake b/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake index 6ec25caa3a..75af4f3844 100644 --- a/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake +++ b/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake @@ -7,6 +7,5 @@ # set(FILES - Source/HttpRequestor_precompiled.h Source/ComponentStub.cpp ) diff --git a/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp b/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp index b110672f33..ac3d65c1bd 100644 --- a/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp +++ b/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp @@ -6,8 +6,6 @@ * */ -#include "ImGui_precompiled.h" - #include "ImGuiGem.h" namespace ImGui diff --git a/Gems/ImGui/Code/Source/ImGuiGem.cpp b/Gems/ImGui/Code/Source/ImGuiGem.cpp index 98425a54a9..ba7a101219 100644 --- a/Gems/ImGui/Code/Source/ImGuiGem.cpp +++ b/Gems/ImGui/Code/Source/ImGuiGem.cpp @@ -6,7 +6,6 @@ * */ -#include "ImGui_precompiled.h" #include "ImGuiGem.h" namespace ImGui diff --git a/Gems/ImGui/Code/Source/ImGuiManager.cpp b/Gems/ImGui/Code/Source/ImGuiManager.cpp index aa8fce6474..cd8486b711 100644 --- a/Gems/ImGui/Code/Source/ImGuiManager.cpp +++ b/Gems/ImGui/Code/Source/ImGuiManager.cpp @@ -6,7 +6,6 @@ * */ -#include "ImGui_precompiled.h" #include "ImGuiManager.h" #include #include diff --git a/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp b/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp index dab4d72e32..8c473b8b8f 100644 --- a/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp +++ b/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp @@ -6,8 +6,6 @@ * */ -#include "ImGui_precompiled.h" - namespace ImGui { /*! diff --git a/Gems/ImGui/Code/Source/ImGui_precompiled.h b/Gems/ImGui/Code/Source/ImGui_precompiled.h deleted file mode 100644 index e6d9194566..0000000000 --- a/Gems/ImGui/Code/Source/ImGui_precompiled.h +++ /dev/null @@ -1,13 +0,0 @@ -/* - * 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 -#include -#include -#include diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp index 1a00ecbe4d..af37e0139a 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp @@ -6,7 +6,6 @@ * */ -#include "ImGui_precompiled.h" #include "ImGuiLYAssetExplorer.h" #ifdef IMGUI_ENABLED diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp index 7a0fbeb73a..1df74903e6 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp @@ -6,8 +6,6 @@ * */ -#include "ImGui_precompiled.h" - #ifdef IMGUI_ENABLED #include "ImGuiLYCameraMonitor.h" #include diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp index 1bcf0d4921..28a5a30e9c 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp @@ -6,7 +6,6 @@ * */ -#include "ImGui_precompiled.h" #include "ImGuiLYCommonMenu.h" #ifdef IMGUI_ENABLED diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp index 1c41ff354c..e61ba25e9c 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp @@ -6,7 +6,6 @@ * */ -#include "ImGui_precompiled.h" #include "ImGuiLYCurveEditor.h" #ifdef IMGUI_ENABLED diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp index 2c39873334..39778d241b 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp @@ -6,7 +6,6 @@ * */ -#include "ImGui_precompiled.h" #include "ImGuiLYEntityOutliner.h" #ifdef IMGUI_ENABLED diff --git a/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp b/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp index 34cacd9c98..e3fd3f2054 100644 --- a/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp +++ b/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp @@ -5,7 +5,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ImGui_precompiled.h" + #include "LYImGuiUtils/HistogramContainer.h" #ifdef IMGUI_ENABLED diff --git a/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp b/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp index ceebbf6ca6..a08aa55fff 100644 --- a/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp +++ b/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "ImGui_precompiled.h" #ifdef IMGUI_ENABLED #include "LYImGuiUtils/ImGuiDrawHelpers.h" diff --git a/Gems/ImGui/Code/imgui_common_files.cmake b/Gems/ImGui/Code/imgui_common_files.cmake index 210038a2c1..04b414e4be 100644 --- a/Gems/ImGui/Code/imgui_common_files.cmake +++ b/Gems/ImGui/Code/imgui_common_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/ImGui_precompiled.h Include/ImGuiBus.h Include/ImGuiContextScope.h Include/OtherActiveImGuiBus.h diff --git a/Gems/ImGui/Code/imgui_lyutils_static_files.cmake b/Gems/ImGui/Code/imgui_lyutils_static_files.cmake index 5cdd678461..d63730e6cb 100644 --- a/Gems/ImGui/Code/imgui_lyutils_static_files.cmake +++ b/Gems/ImGui/Code/imgui_lyutils_static_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/ImGui_precompiled.h Include/LYImGuiUtils/HistogramContainer.h Include/LYImGuiUtils/ImGuiDrawHelpers.h Source/LYImGuiUtils/HistogramContainer.cpp diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp b/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp index 1f6c491c82..5504236e3e 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp @@ -6,8 +6,6 @@ * */ -#include "InAppPurchases_precompiled.h" - #include namespace InAppPurchases diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp b/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp index 18559d2c28..5751651f92 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp @@ -6,8 +6,6 @@ * */ -#include "InAppPurchases_precompiled.h" - #include "InAppPurchasesModule.h" #include "InAppPurchasesSystemComponent.h" diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp b/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp index eacbc96136..8b91b72a60 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp @@ -6,8 +6,6 @@ * */ -#include "InAppPurchases_precompiled.h" - #include #include #include diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h b/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h deleted file mode 100644 index 0d981197e0..0000000000 --- a/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h +++ /dev/null @@ -1,14 +0,0 @@ -/* - * 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 -#include -#include -#include diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp b/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp index 8b5fcbe31e..f62abdc646 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp @@ -6,8 +6,6 @@ * */ -#include "InAppPurchases_precompiled.h" - #include namespace InAppPurchases diff --git a/Gems/InAppPurchases/Code/inapppurchases_files.cmake b/Gems/InAppPurchases/Code/inapppurchases_files.cmake index cf66d070de..5eab792206 100644 --- a/Gems/InAppPurchases/Code/inapppurchases_files.cmake +++ b/Gems/InAppPurchases/Code/inapppurchases_files.cmake @@ -7,7 +7,6 @@ # set(FILES - Source/InAppPurchases_precompiled.h Include/InAppPurchases/InAppPurchasesBus.h Include/InAppPurchases/InAppPurchasesInterface.h Include/InAppPurchases/InAppPurchasesResponseBus.h diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp index 7276bfdd10..0cb9d2d9d0 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "EditorNavigationAreaComponent.h" #include "EditorNavigationUtil.h" diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp index bf83594f95..018ddbb9db 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "EditorNavigationSeedComponent.h" #include "EditorNavigationUtil.h" diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp index a370dbf4d1..822fd6ca59 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "EditorNavigationUtil.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp index ac3e0462de..69f75ec826 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "LmbrCentral_precompiled.h" #include "NavigationComponent.h" #include "EditorNavigationUtil.h" diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp index 8018b7a95b..a0dee0be41 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "LmbrCentral_precompiled.h" #include "NavigationSystemComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp index 2a1feefe7c..827e20b02b 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioAreaEnvironmentComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp index 818e325e46..0d2ec6d164 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioEnvironmentComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp index 957bb6968c..05d8061856 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioListenerComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp index a47e122250..066eb7b3fe 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioMultiPositionComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp index e57a73eff5..0e940ea0dc 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioPreloadComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp index 6c99a151a7..030b126653 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioProxyComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp index d8e4eb281c..a099c86e60 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioRtpcComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp index 4d3e545b0a..01007c1d9b 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp @@ -6,7 +6,6 @@ * */ -#include "LmbrCentral_precompiled.h" #include "AudioSwitchComponent.h" #include diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp index 0b330d34f7..b12146af3a 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp @@ -6,7 +6,6 @@ * */ -#include #include