From 61ba2dd11e303045cea9b29fca2ad542d5e17209 Mon Sep 17 00:00:00 2001
From: Brad Davis <bdavis@saintandreas.org>
Date: Wed, 22 Feb 2017 13:24:54 -0800
Subject: [PATCH] Disable texture cache processing for now

---
 libraries/model/src/model/TextureMap.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libraries/model/src/model/TextureMap.cpp b/libraries/model/src/model/TextureMap.cpp
index 760cd98898..dcc685ca22 100755
--- a/libraries/model/src/model/TextureMap.cpp
+++ b/libraries/model/src/model/TextureMap.cpp
@@ -91,6 +91,7 @@ gpu::Texture* cacheTexture(const std::string& name, gpu::Texture* srcTexture, bo
     }
     gpu::Texture* returnedTexture = srcTexture;
 
+#if 0
     auto theKTX = Texture::serialize(*srcTexture);
     if (theKTX) {
         // Prepare cache directory
@@ -147,6 +148,7 @@ gpu::Texture* cacheTexture(const std::string& name, gpu::Texture* srcTexture, bo
             }
         }
     }
+#endif
     return returnedTexture;
 }