1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * 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 <Atom/Features/SrgSemantics.azsli>
- ShaderResourceGroup TextureMapTargetSrg : SRG_PerObject
- {
- float4 sinValue;
- }
- struct VSInput
- {
- float3 m_position : POSITION;
- float2 m_uv : UV0;
- };
- struct VSOutput
- {
- float4 m_position : SV_Position;
- };
- VSOutput MainVS(VSInput vsInput)
- {
- VSOutput OUT;
- OUT.m_position = float4(vsInput.m_position, 1.0);
- return OUT;
- }
- struct PSOutput
- {
- float4 m_color : SV_Target0;
- };
- PSOutput MainPS()
- {
- PSOutput OUT;
- OUT.m_color = TextureMapTargetSrg::sinValue;
- return OUT;
- }
|