// This file is part of the FidelityFX SDK.1//2// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved.3//4// Permission is hereby granted, free of charge, to any person obtaining a copy5// of this software and associated documentation files (the "Software"), to deal6// in the Software without restriction, including without limitation the rights7// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell8// copies of the Software, and to permit persons to whom the Software is9// furnished to do so, subject to the following conditions:10// The above copyright notice and this permission notice shall be included in11// all copies or substantial portions of the Software.12//13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN19// THE SOFTWARE.2021#pragma once2223#include "ffx_types.h"2425/// The value of Pi.26const float FFX_PI = 3.141592653589793f;2728/// An epsilon value for floating point numbers.29const float FFX_EPSILON = 1e-06f;3031/// Helper macro to create the version number.32#define FFX_MAKE_VERSION(major, minor, patch) ((major << 22) | (minor << 12) | patch)3334///< Use this to specify no version.35#define FFX_UNSPECIFIED_VERSION 0xFFFFAD003637/// Helper macro to avoid warnings about unused variables.38#define FFX_UNUSED(x) ((void)(x))3940/// Helper macro to align an integer to the specified power of 2 boundary41#define FFX_ALIGN_UP(x, y) (((x) + ((y)-1)) & ~((y)-1))4243/// Helper macro to check if a value is aligned.44#define FFX_IS_ALIGNED(x) (((x) != 0) && ((x) & ((x)-1)))4546/// Helper macro to stringify a value.47#define FFX_STR(s) FFX_XSTR(s)48#define FFX_XSTR(s) #s4950/// Helper macro to forward declare a structure.51#define FFX_FORWARD_DECLARE(x) typedef struct x x5253/// Helper macro to return the maximum of two values.54#define FFX_MAXIMUM(x, y) (((x) > (y)) ? (x) : (y))5556/// Helper macro to return the minimum of two values.57#define FFX_MINIMUM(x, y) (((x) < (y)) ? (x) : (y))5859/// Helper macro to do safe free on a pointer.60#define FFX_SAFE_FREE(x) \61if (x) \62free(x)6364/// Helper macro to return the abs of an integer value.65#define FFX_ABSOLUTE(x) (((x) < 0) ? (-(x)) : (x))6667/// Helper macro to return sign of a value.68#define FFX_SIGN(x) (((x) < 0) ? -1 : 1)6970/// Helper macro to work out the number of elements in an array.71#define FFX_ARRAY_ELEMENTS(x) (int32_t)((sizeof(x) / sizeof(0 [x])) / ((size_t)(!(sizeof(x) % sizeof(0 [x])))))7273/// The maximum length of a path that can be specified to the FidelityFX API.74#define FFX_MAXIMUM_PATH (260)7576/// Helper macro to check if the specified key is set in a bitfield.77#define FFX_CONTAINS_FLAG(options, key) ((options & key) == key)787980