| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * 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 <RHI/BasicRHIComponent.h>
- #include <AzCore/Component/TickBus.h>
- namespace AtomSampleViewer
- {
- class SwapchainExampleComponent final
- : public BasicRHIComponent
- , public AZ::TickBus::Handler
- {
- public:
- static constexpr const char* ContentWarning = CommonPhotosensitiveWarning;
- static constexpr const char* ContentWarningTitle = CommonPhotosensitiveWarningTitle;
- AZ_COMPONENT(SwapchainExampleComponent, "{F8A990AD-63C0-43D8-AE9B-FB9D84CB58E2}", AZ::Component);
- static void Reflect(AZ::ReflectContext* context);
- SwapchainExampleComponent();
- ~SwapchainExampleComponent() override = default;
- protected:
- AZ_DISABLE_COPY(SwapchainExampleComponent);
- // Component
- virtual void Activate() override;
- virtual void Deactivate() override;
- // TickBus::Handler
- void OnTick(float deltaTime, AZ::ScriptTimePoint time) override;
- uint32_t m_timeInSeconds = 0;
- };
- } // namespace AtomSampleViewer
|