Skip to content

Commit 91907a8

Browse files
committed
Thirdparty: Harmonize patches to document downstream changes
1 parent 0d14ae5 commit 91907a8

File tree

141 files changed

+1272
-3847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+1272
-3847
lines changed

COPYRIGHT.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,11 @@ Comment: FastLZ
411411
Copyright: 2005-2020, Ariya Hidayat
412412
License: Expat
413413

414+
Files: thirdparty/misc/FastNoiseLite.h
415+
Comment: FastNoise Lite
416+
Copyright: 2023, Jordan Peck and contributors
417+
License: Expat
418+
414419
Files: thirdparty/misc/ifaddrs-android.cc
415420
thirdparty/misc/ifaddrs-android.h
416421
Comment: libjingle
@@ -423,17 +428,17 @@ Comment: Tangent Space Normal Maps implementation
423428
Copyright: 2011, Morten S. Mikkelsen
424429
License: Zlib
425430

431+
Files: thirdparty/misc/nvapi_minimal.h
432+
Comment: NVIDIA NVAPI (minimal excerpt)
433+
Copyright: 2019-2022, NVIDIA Corporation
434+
License: Expat
435+
426436
Files: thirdparty/misc/ok_color.h
427437
thirdparty/misc/ok_color_shader.h
428438
Comment: OK Lab color space
429439
Copyright: 2021, Björn Ottosson
430440
License: Expat
431441

432-
Files: thirdparty/noise/FastNoiseLite.h
433-
Comment: FastNoise Lite
434-
Copyright: 2023, Jordan Peck and contributors
435-
License: Expat
436-
437442
Files: thirdparty/misc/pcg.cpp
438443
thirdparty/misc/pcg.h
439444
Comment: Minimal PCG32 implementation
@@ -484,11 +489,6 @@ Comment: Multi-channel signed distance field generator
484489
Copyright: 2014-2024, Viktor Chlumsky
485490
License: Expat
486491

487-
Files: thirdparty/nvapi/nvapi_minimal.h
488-
Comment: Stripped down version of "nvapi.h" from the NVIDIA NVAPI SDK
489-
Copyright: 2019-2022, NVIDIA Corporation
490-
License: Expat
491-
492492
Files: thirdparty/openxr/*
493493
Comment: OpenXR Loader
494494
Copyright: 2020-2023, The Khronos Group Inc.

misc/error_suppressions/ubsan.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ nonnull-attribute:thirdparty/spirv-reflect/spirv_reflect.c
5757
pointer-overflow:thirdparty/libogg/framing.c
5858
shift-base:thirdparty/libogg/bitwise.c
5959
shift-base:thirdparty/libvorbis/sharedbook.c
60-
shift-base:thirdparty/noise/FastNoiseLite.h
60+
shift-base:thirdparty/misc/FastNoiseLite.h
6161
shift-base:thirdparty/tinyexr/tinyexr.h
6262
shift-exponent:thirdparty/misc/mikktspace.c
63-
signed-integer-overflow:thirdparty/noise/FastNoiseLite.h
63+
signed-integer-overflow:thirdparty/misc/FastNoiseLite.h

modules/enet/SCsub

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ thirdparty_obj = []
1313
if env["builtin_enet"]:
1414
thirdparty_dir = "#thirdparty/enet/"
1515
thirdparty_sources = [
16-
"godot.cpp",
16+
"enet_godot.cpp",
1717
"callbacks.c",
1818
"compress.c",
1919
"host.c",

modules/noise/fastnoise_lite.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#include "noise.h"
3535

36-
#include <thirdparty/noise/FastNoiseLite.h>
36+
#include "thirdparty/misc/FastNoiseLite.h"
3737

3838
typedef fastnoiselite::FastNoiseLite _FastNoiseLite;
3939

platform/windows/gl_manager_windows_native.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "core/config/project_settings.h"
3636
#include "core/version.h"
3737

38-
#include "thirdparty/nvapi/nvapi_minimal.h"
38+
#include "thirdparty/misc/nvapi_minimal.h"
3939

4040
#include <dwmapi.h>
4141
#include <stdio.h>

0 commit comments

Comments
 (0)