Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/amd-fsr2/ffx_util.h
9896 views
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
22
#pragma once
23
24
#include "ffx_types.h"
25
26
/// The value of Pi.
27
const float FFX_PI = 3.141592653589793f;
28
29
/// An epsilon value for floating point numbers.
30
const float FFX_EPSILON = 1e-06f;
31
32
/// Helper macro to create the version number.
33
#define FFX_MAKE_VERSION(major, minor, patch) ((major << 22) | (minor << 12) | patch)
34
35
///< Use this to specify no version.
36
#define FFX_UNSPECIFIED_VERSION 0xFFFFAD00
37
38
/// Helper macro to avoid warnings about unused variables.
39
#define FFX_UNUSED(x) ((void)(x))
40
41
/// Helper macro to align an integer to the specified power of 2 boundary
42
#define FFX_ALIGN_UP(x, y) (((x) + ((y)-1)) & ~((y)-1))
43
44
/// Helper macro to check if a value is aligned.
45
#define FFX_IS_ALIGNED(x) (((x) != 0) && ((x) & ((x)-1)))
46
47
/// Helper macro to stringify a value.
48
#define FFX_STR(s) FFX_XSTR(s)
49
#define FFX_XSTR(s) #s
50
51
/// Helper macro to forward declare a structure.
52
#define FFX_FORWARD_DECLARE(x) typedef struct x x
53
54
/// Helper macro to return the maximum of two values.
55
#define FFX_MAXIMUM(x, y) (((x) > (y)) ? (x) : (y))
56
57
/// Helper macro to return the minimum of two values.
58
#define FFX_MINIMUM(x, y) (((x) < (y)) ? (x) : (y))
59
60
/// Helper macro to do safe free on a pointer.
61
#define FFX_SAFE_FREE(x) \
62
if (x) \
63
free(x)
64
65
/// Helper macro to return the abs of an integer value.
66
#define FFX_ABSOLUTE(x) (((x) < 0) ? (-(x)) : (x))
67
68
/// Helper macro to return sign of a value.
69
#define FFX_SIGN(x) (((x) < 0) ? -1 : 1)
70
71
/// Helper macro to work out the number of elements in an array.
72
#define FFX_ARRAY_ELEMENTS(x) (int32_t)((sizeof(x) / sizeof(0 [x])) / ((size_t)(!(sizeof(x) % sizeof(0 [x])))))
73
74
/// The maximum length of a path that can be specified to the FidelityFX API.
75
#define FFX_MAXIMUM_PATH (260)
76
77
/// Helper macro to check if the specified key is set in a bitfield.
78
#define FFX_CONTAINS_FLAG(options, key) ((options & key) == key)
79
80