diff options
author | Ayane <chanayane83@gmail.com> | 2024-07-17 01:47:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 02:47:22 +0300 |
commit | bd0baebb6eea478260880d04e34f6b3181d883a6 (patch) | |
tree | c282e22c3a2f709e878197c936b380c500608685 /indra/newview/llfloatersnapshot.cpp | |
parent | b05ab692ba60438e3900b351d654bc0124a42f50 (diff) |
Raised the 512x512 limitation for uploading snapshots to inventory to 2048x2048 (#2025)
Diffstat (limited to 'indra/newview/llfloatersnapshot.cpp')
-rw-r--r-- | indra/newview/llfloatersnapshot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatersnapshot.cpp b/indra/newview/llfloatersnapshot.cpp index 75b24a6bbc..700f532318 100644 --- a/indra/newview/llfloatersnapshot.cpp +++ b/indra/newview/llfloatersnapshot.cpp @@ -51,7 +51,7 @@ LLSnapshotFloaterView* gSnapshotFloaterView = NULL; const F32 AUTO_SNAPSHOT_TIME_DELAY = 1.f; const S32 MAX_POSTCARD_DATASIZE = 1572864; // 1.5 megabyte, similar to simulator limit -const S32 MAX_TEXTURE_SIZE = 512 ; //max upload texture size 512 * 512 +const S32 MAX_TEXTURE_SIZE = 2048 ; //max upload texture size 2048 * 2048 static LLDefaultChildRegistry::Register<LLSnapshotFloaterView> r("snapshot_floater_view"); |