diff --git a/interface/src/ModelPackager.cpp b/interface/src/ModelPackager.cpp index db74b34d91..c145d40549 100644 --- a/interface/src/ModelPackager.cpp +++ b/interface/src/ModelPackager.cpp @@ -24,7 +24,7 @@ #include "ModelPropertiesDialog.h" #include "InterfaceLogging.h" -static const int MAX_TEXTURE_SIZE = 1024; +static const int MAX_TEXTURE_SIZE = 8192; void copyDirectoryContent(QDir& from, QDir& to) { for (auto entry : from.entryInfoList(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot | diff --git a/libraries/hfm/src/hfm/HFM.h b/libraries/hfm/src/hfm/HFM.h index 7111ad2e65..d37d509d38 100644 --- a/libraries/hfm/src/hfm/HFM.h +++ b/libraries/hfm/src/hfm/HFM.h @@ -51,7 +51,7 @@ using ColorType = glm::vec3; #define HFM_COLOR_ELEMENT gpu::Element::VEC3F_XYZ #endif -const int MAX_NUM_PIXELS_FOR_FBX_TEXTURE = 2048 * 2048; +const int MAX_NUM_PIXELS_FOR_FBX_TEXTURE = 8192 * 8192; using ShapeVertices = std::vector; diff --git a/libraries/image/src/image/TextureProcessing.cpp b/libraries/image/src/image/TextureProcessing.cpp index c144ed530a..53991ae431 100644 --- a/libraries/image/src/image/TextureProcessing.cpp +++ b/libraries/image/src/image/TextureProcessing.cpp @@ -41,7 +41,7 @@ using namespace gpu; static const glm::uvec2 SPARSE_PAGE_SIZE(128); static const glm::uvec2 MAX_TEXTURE_SIZE_GLES(2048); -static const glm::uvec2 MAX_TEXTURE_SIZE_GL(4096); +static const glm::uvec2 MAX_TEXTURE_SIZE_GL(8192); bool DEV_DECIMATE_TEXTURES = false; std::atomic DECIMATED_TEXTURE_COUNT{ 0 }; std::atomic RECTIFIED_TEXTURE_COUNT{ 0 };