Filler.azsl 469 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include <Atom/Features/PostProcessing/FullscreenVertex.azsli>
  9. #include <Atom/Features/PostProcessing/FullscreenPixelInfo.azsli>
  10. PSOutput MainPS(VSOutput IN)
  11. {
  12. PSOutput OUT;
  13. OUT.m_color = float4(IN.m_texCoord.xy,0,1);
  14. return OUT;
  15. };