diff options
author | Merov Linden <merov@lindenlab.com> | 2012-04-04 15:59:52 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-04-04 15:59:52 -0700 |
commit | c6511d9c857c079e0360f88c05328feb70a8bc0d (patch) | |
tree | 7197cd2a1261e2f02865b11b68490fb4ca4e2a23 /indra/llimage/llimage.h | |
parent | df09fd8e8b5b73330e4942c2cb218a216d7aca99 (diff) |
SH-3075 : Fix encoding for reversible images and small textures
Diffstat (limited to 'indra/llimage/llimage.h')
-rw-r--r-- | indra/llimage/llimage.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llimage/llimage.h b/indra/llimage/llimage.h index b757547ab8..18f8ae2fbb 100644 --- a/indra/llimage/llimage.h +++ b/indra/llimage/llimage.h @@ -48,6 +48,8 @@ const S32 MAX_PRECINCT_SIZE = 2048; // No reason to be bigger than MAX_IMAGE_S const S32 MIN_PRECINCT_SIZE = 4; // Can't be smaller than MIN_BLOCK_SIZE const S32 MAX_BLOCK_SIZE = 64; // Max total block size is 4096, hence 64x64 when using square blocks const S32 MIN_BLOCK_SIZE = 4; // Min block dim is 4 according to jpeg2000 spec +const S32 MIN_LAYER_SIZE = 2000; // Size of the first quality layer (after header). Must be > to FIRST_PACKET_SIZE!! +const S32 MAX_NB_LAYERS = 64; // Max number of layers we'll entertain in SL (practical limit) const S32 MIN_IMAGE_SIZE = (1<<MIN_IMAGE_MIP); // 4, only used for expand/contract power of 2 const S32 MAX_IMAGE_SIZE = (1<<MAX_IMAGE_MIP); // 2048 |