summaryrefslogtreecommitdiff
path: root/external/libgltf/patches/disable_fps.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/libgltf/patches/disable_fps.patch')
-rw-r--r--external/libgltf/patches/disable_fps.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/external/libgltf/patches/disable_fps.patch b/external/libgltf/patches/disable_fps.patch
deleted file mode 100644
index bc64d90cd462..000000000000
--- a/external/libgltf/patches/disable_fps.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git libgltf/src/FPSCounter.h libgltf/src/FPSCounter.h
-index c6c4279..66f7e2b 100644
---- libgltf/src/FPSCounter.h
-+++ libgltf/src/FPSCounter.h
-@@ -7,6 +7,11 @@
- */
- #ifndef FPSCOUNTER_H
- #define FPSCOUNTER_H
-+
-+#define ENABLE_FPS 0
-+
-+#if ENABLE_FPS
-+
- #include "time.h"
- #include "Font.h"
- #include "Shaders.h"
-@@ -17,7 +22,6 @@
-
- #define WRITEFPS2FILE 1
- #define TIMETHRESHOLD 30
--#define ENABLE_FPS 1
- #define FPS_FILE "./FPSCounter.txt"
- #if WRITEFPS2FILE
- #include <iostream>
-@@ -136,4 +140,6 @@ private:
- #endif
- };
-
-+#endif // ENABLE_FPS
-+
- #endif