summaryrefslogtreecommitdiff
path: root/external/libgltf/patches/win_only_variables.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/libgltf/patches/win_only_variables.patch')
-rw-r--r--external/libgltf/patches/win_only_variables.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/external/libgltf/patches/win_only_variables.patch b/external/libgltf/patches/win_only_variables.patch
deleted file mode 100644
index a81fd9255786..000000000000
--- a/external/libgltf/patches/win_only_variables.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -ur libgltf.org/src/FPSCounter.cpp libgltf/src/FPSCounter.cpp
---- libgltf.org/src/FPSCounter.cpp 2014-05-05 14:44:01.711392481 +0200
-+++ libgltf/src/FPSCounter.cpp 2014-05-05 14:44:34.495393880 +0200
-@@ -119,7 +119,9 @@
- if (timeCounter>=TIMETHRESHOLD)
- {
- FPSFile<<"FPS:"<<mFPS<<"\n";
-+#ifdef _WIN32
- FPSFile<<"Render Total Time: "<<mTotalTime*1000<<" ms"<<"Draw Time: "<<mGPUTime*1000<<" ms\n";
-+#endif
- timeCounter = 0;
- }
- #endif