PipelineLayoutDescriptor.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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/RHI.Reflect/Null/PipelineLayoutDescriptor.h>
  9. #include <AzCore/Serialization/SerializeContext.h>
  10. #include <AzCore/Utils/TypeHash.h>
  11. namespace AZ
  12. {
  13. namespace Null
  14. {
  15. void PipelineLayoutDescriptor::Reflect(AZ::ReflectContext* context)
  16. {
  17. if (SerializeContext* serializeContext = azrtti_cast<SerializeContext*>(context))
  18. {
  19. serializeContext->Class<PipelineLayoutDescriptor, Base>()
  20. ->Version(4);
  21. }
  22. }
  23. RHI::Ptr<PipelineLayoutDescriptor> PipelineLayoutDescriptor::Create()
  24. {
  25. return aznew PipelineLayoutDescriptor();
  26. }
  27. void PipelineLayoutDescriptor::ResetInternal()
  28. {
  29. }
  30. HashValue64 PipelineLayoutDescriptor::GetHashInternal(HashValue64 seed) const
  31. {
  32. return seed;
  33. }
  34. }
  35. }