| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*
- * 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/Math/Vector3.h>
- #include <Atom/RHI/BufferPool.h>
- #include <Atom/RHI/Device.h>
- #include <Atom/RHI/DrawItem.h>
- #include <Atom/RHI/ImagePool.h>
- #include <Atom/RHI/PipelineState.h>
- namespace AtomSampleViewer
- {
- /*
- * Testing different Stencil Comparison Function
- * First render all color triangles with stencil set to 1
- * Then render white triangles with different functions
- * From top left to bottom right :
- * Never, Less, Equal, LessEqual, Greater, NotEqual, GreaterEqual, Always
- */
- class StencilExampleComponent final
- : public BasicRHIComponent
- {
- public:
- AZ_COMPONENT(StencilExampleComponent, "{30979B47-9B6C-49D5-BA4D-A88452247D9F}", AZ::Component);
- AZ_DISABLE_COPY(StencilExampleComponent);
- static void Reflect(AZ::ReflectContext* context);
- StencilExampleComponent();
- ~StencilExampleComponent() override = default;
- protected:
- // AZ::Component
- void Activate() override;
- void Deactivate() override;
- // Triangles setting
- void SetTriangleVertices(int startIndex, VertexPosition* vertexData, AZ::Vector3 center, float offset);
- AZ::RHI::Ptr<AZ::RHI::BufferPool> m_inputAssemblyBufferPool;
- AZ::RHI::Ptr<AZ::RHI::Buffer> m_inputAssemblyBuffer;
- AZ::RHI::ConstPtr<AZ::RHI::PipelineState> m_pipelineStateBasePass;
- AZStd::array<AZ::RHI::ConstPtr<AZ::RHI::PipelineState>, 8> m_pipelineStateStencil;
- static const size_t s_numberOfVertices = 48;
- struct BufferData
- {
- AZStd::array<VertexPosition, s_numberOfVertices> m_positions;
- AZStd::array<VertexColor, s_numberOfVertices> m_colors;
- AZStd::array<uint16_t, s_numberOfVertices> m_indices;
- };
- AZStd::array<AZ::RHI::StreamBufferView, 2> m_streamBufferViews;
- AZ::RHI::DrawItem m_drawItem;
- AZ::RHI::AttachmentId m_depthStencilID;
- AZ::RHI::ClearValue m_depthClearValue;
- };
- }
|