From 8d45f43ba805ff116bf44172a6581ec8578d8654 Mon Sep 17 00:00:00 2001 From: Bradley Austin Davis Date: Fri, 27 Jan 2017 10:06:31 -0800 Subject: [PATCH] Disable sparse textures --- libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp b/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp index 6632bf936e..b540a403c7 100644 --- a/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp +++ b/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp @@ -92,6 +92,7 @@ void SparseInfo::maybeMakeSparse() { if (!texture._gpuObject.isAutogenerateMips()) { return; } + return; const uvec3 dimensions = texture._gpuObject.getDimensions(); auto allowedPageDimensions = getPageDimensionsForFormat(texture._target, texture._internalFormat);