ffx_util.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // This file is part of the FidelityFX SDK.
  2. //
  3. // Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved.
  4. //
  5. // Permission is hereby granted, free of charge, to any person obtaining a copy
  6. // of this software and associated documentation files (the "Software"), to deal
  7. // in the Software without restriction, including without limitation the rights
  8. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. // copies of the Software, and to permit persons to whom the Software is
  10. // furnished to do so, subject to the following conditions:
  11. // The above copyright notice and this permission notice shall be included in
  12. // all copies or substantial portions of the Software.
  13. //
  14. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. // THE SOFTWARE.
  21. #pragma once
  22. #include "ffx_types.h"
  23. /// The value of Pi.
  24. const float FFX_PI = 3.141592653589793f;
  25. /// An epsilon value for floating point numbers.
  26. const float FFX_EPSILON = 1e-06f;
  27. /// Helper macro to create the version number.
  28. #define FFX_MAKE_VERSION(major, minor, patch) ((major << 22) | (minor << 12) | patch)
  29. ///< Use this to specify no version.
  30. #define FFX_UNSPECIFIED_VERSION 0xFFFFAD00
  31. /// Helper macro to avoid warnings about unused variables.
  32. #define FFX_UNUSED(x) ((void)(x))
  33. /// Helper macro to align an integer to the specified power of 2 boundary
  34. #define FFX_ALIGN_UP(x, y) (((x) + ((y)-1)) & ~((y)-1))
  35. /// Helper macro to check if a value is aligned.
  36. #define FFX_IS_ALIGNED(x) (((x) != 0) && ((x) & ((x)-1)))
  37. /// Helper macro to stringify a value.
  38. #define FFX_STR(s) FFX_XSTR(s)
  39. #define FFX_XSTR(s) #s
  40. /// Helper macro to forward declare a structure.
  41. #define FFX_FORWARD_DECLARE(x) typedef struct x x
  42. /// Helper macro to return the maximum of two values.
  43. #define FFX_MAXIMUM(x, y) (((x) > (y)) ? (x) : (y))
  44. /// Helper macro to return the minimum of two values.
  45. #define FFX_MINIMUM(x, y) (((x) < (y)) ? (x) : (y))
  46. /// Helper macro to do safe free on a pointer.
  47. #define FFX_SAFE_FREE(x) \
  48. if (x) \
  49. free(x)
  50. /// Helper macro to return the abs of an integer value.
  51. #define FFX_ABSOLUTE(x) (((x) < 0) ? (-(x)) : (x))
  52. /// Helper macro to return sign of a value.
  53. #define FFX_SIGN(x) (((x) < 0) ? -1 : 1)
  54. /// Helper macro to work out the number of elements in an array.
  55. #define FFX_ARRAY_ELEMENTS(x) (int32_t)((sizeof(x) / sizeof(0 [x])) / ((size_t)(!(sizeof(x) % sizeof(0 [x])))))
  56. /// The maximum length of a path that can be specified to the FidelityFX API.
  57. #define FFX_MAXIMUM_PATH (260)
  58. /// Helper macro to check if the specified key is set in a bitfield.
  59. #define FFX_CONTAINS_FLAG(options, key) ((options & key) == key)