summaryrefslogtreecommitdiff
path: root/dev-cpp/tinygltf/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/tinygltf/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-cpp/tinygltf/files')
-rw-r--r--dev-cpp/tinygltf/files/0001-Use-nlohmann-and-stb-packages-instead-of-bundled-one.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-cpp/tinygltf/files/0001-Use-nlohmann-and-stb-packages-instead-of-bundled-one.patch b/dev-cpp/tinygltf/files/0001-Use-nlohmann-and-stb-packages-instead-of-bundled-one.patch
deleted file mode 100644
index 694d9faf8ad6..000000000000
--- a/dev-cpp/tinygltf/files/0001-Use-nlohmann-and-stb-packages-instead-of-bundled-one.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From ea07b73401b604adefa99b5d11c391d10cbb29c4 Mon Sep 17 00:00:00 2001
-From: Nguyen Dinh Dang Duong <dangduong31205@gmail.com>
-Date: Wed, 9 Jul 2025 16:56:20 +0700
-Subject: [PATCH] Use nlohmann and stb packages instead of bundled ones
-
----
- tiny_gltf.h | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/tiny_gltf.h b/tiny_gltf.h
-index 7612804..b536faa 100644
---- a/tiny_gltf.h
-+++ b/tiny_gltf.h
-@@ -1712,7 +1712,7 @@ class TinyGLTF {
-
- #ifndef TINYGLTF_NO_INCLUDE_JSON
- #ifndef TINYGLTF_USE_RAPIDJSON
--#include "json.hpp"
-+#include <nlohmann/json.hpp>
- #else
- #ifndef TINYGLTF_NO_INCLUDE_RAPIDJSON
- #include "document.h"
-@@ -1731,13 +1731,13 @@ class TinyGLTF {
-
- #ifndef TINYGLTF_NO_STB_IMAGE
- #ifndef TINYGLTF_NO_INCLUDE_STB_IMAGE
--#include "stb_image.h"
-+#include <stb/stb_image.h>
- #endif
- #endif
-
- #ifndef TINYGLTF_NO_STB_IMAGE_WRITE
- #ifndef TINYGLTF_NO_INCLUDE_STB_IMAGE_WRITE
--#include "stb_image_write.h"
-+#include <stb/stb_image_write.h>
- #endif
- #endif
-
---
-2.50.0
-