Everything compiling again after moving preview renderer to atom tools framework
Signed-off-by: Guthrie Adams <guthadam@amazon.com>monroegm-disable-blank-issue-2
parent
569318e9e1
commit
76b4dafbb3
@ -0,0 +1,35 @@
|
|||||||
|
/*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
namespace AtomToolsFramework
|
||||||
|
{
|
||||||
|
class PreviewRenderer;
|
||||||
|
|
||||||
|
//! PreviewRendererState decouples PreviewRenderer logic into easy-to-understand and debug pieces
|
||||||
|
class PreviewRendererState
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit PreviewRendererState(PreviewRenderer* renderer)
|
||||||
|
: m_renderer(renderer)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual ~PreviewRendererState() = default;
|
||||||
|
|
||||||
|
//! Start is called when state begins execution
|
||||||
|
virtual void Start() = 0;
|
||||||
|
|
||||||
|
//! Stop is called when state ends execution
|
||||||
|
virtual void Stop() = 0;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
PreviewRenderer* m_renderer = {};
|
||||||
|
};
|
||||||
|
} // namespace AtomToolsFramework
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
||||||
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <AzCore/EBus/EBus.h>
|
||||||
|
#include <AzCore/std/containers/unordered_set.h>
|
||||||
|
#include <AzCore/std/string/string.h>
|
||||||
|
|
||||||
|
namespace AtomToolsFramework
|
||||||
|
{
|
||||||
|
//! PreviewerFeatureProcessorProviderRequests allows registering custom Feature Processors for preview image generation
|
||||||
|
class PreviewerFeatureProcessorProviderRequests : public AZ::EBusTraits
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//! Get a list of custom feature processors to register with preview image renderer
|
||||||
|
virtual void GetRequiredFeatureProcessors(AZStd::unordered_set<AZStd::string>& featureProcessors) const = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
using PreviewerFeatureProcessorProviderBus = AZ::EBus<PreviewerFeatureProcessorProviderRequests>;
|
||||||
|
} // namespace AtomToolsFramework
|
||||||
@ -1,37 +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
|
|
||||||
|
|
||||||
namespace AZ
|
|
||||||
{
|
|
||||||
namespace LyIntegration
|
|
||||||
{
|
|
||||||
namespace Thumbnails
|
|
||||||
{
|
|
||||||
class CommonPreviewRenderer;
|
|
||||||
|
|
||||||
//! CommonPreviewRendererState decouples CommonPreviewRenderer logic into easy-to-understand and debug pieces
|
|
||||||
class CommonPreviewRendererState
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
explicit CommonPreviewRendererState(CommonPreviewRenderer* renderer) : m_renderer(renderer) {}
|
|
||||||
virtual ~CommonPreviewRendererState() = default;
|
|
||||||
|
|
||||||
//! Start is called when state begins execution
|
|
||||||
virtual void Start() {}
|
|
||||||
//! Stop is called when state ends execution
|
|
||||||
virtual void Stop() {}
|
|
||||||
|
|
||||||
protected:
|
|
||||||
CommonPreviewRenderer* m_renderer;
|
|
||||||
};
|
|
||||||
} // namespace Thumbnails
|
|
||||||
} // namespace LyIntegration
|
|
||||||
} // namespace AZ
|
|
||||||
|
|
||||||
@ -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 <AzCore/EBus/EBus.h>
|
|
||||||
#include <AzCore/std/string/string.h>
|
|
||||||
|
|
||||||
namespace AZ
|
|
||||||
{
|
|
||||||
namespace LyIntegration
|
|
||||||
{
|
|
||||||
namespace Thumbnails
|
|
||||||
{
|
|
||||||
//! PreviewerFeatureProcessorProviderRequests allows registering custom Feature Processors for preview image generation
|
|
||||||
//! Duplicates will be ignored
|
|
||||||
//! You can check minimal feature processors that are already registered in CommonPreviewRenderer.cpp
|
|
||||||
class PreviewerFeatureProcessorProviderRequests
|
|
||||||
: public AZ::EBusTraits
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
//! Get a list of custom feature processors to register with preview image renderer
|
|
||||||
virtual void GetRequiredFeatureProcessors(AZStd::unordered_set<AZStd::string>& featureProcessors) const = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
using PreviewerFeatureProcessorProviderBus = AZ::EBus<PreviewerFeatureProcessorProviderRequests>;
|
|
||||||
} // namespace Thumbnails
|
|
||||||
} // namespace LyIntegration
|
|
||||||
} // namespace AZ
|
|
||||||
Loading…
Reference in New Issue