MipmapSettings.h 920 B

123456789101112131415161718192021222324252627282930
  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. #pragma once
  9. #include <Atom/ImageProcessing/ImageProcessingDefines.h>
  10. #include <AzCore/RTTI/TypeInfo.h>
  11. #include <AzCore/RTTI/ReflectContext.h>
  12. #include <AzCore/Memory/Memory.h>
  13. #include <AzCore/Math/Color.h>
  14. namespace ImageProcessingAtom
  15. {
  16. struct MipmapSettings
  17. {
  18. AZ_TYPE_INFO(MipmapSettings, "{37C05CB4-365B-4F70-9620-B9017DB0A8C2}");
  19. AZ_CLASS_ALLOCATOR(MipmapSettings, AZ::SystemAllocator);
  20. bool operator!=(const MipmapSettings& other) const;
  21. bool operator==(const MipmapSettings& other) const;
  22. static void Reflect(AZ::ReflectContext* context);
  23. MipGenType m_type = MipGenType::blackmanHarris;
  24. };
  25. } // namespace ImageProcessingAtom