summaryrefslogtreecommitdiff
path: root/indra/llimagej2coj/llimagej2coj.cpp
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-12-30 13:11:44 -0500
committerLoren Shih <seraph@lindenlab.com>2010-12-30 13:11:44 -0500
commitcc3f0d287c7edb9e4cfe18985f2758e815502440 (patch)
tree77a73220c89488bda9f7c5d702691eb913fb2d35 /indra/llimagej2coj/llimagej2coj.cpp
parentc26eaf53f895cfed1bbed0320b8c9bc62352e154 (diff)
parente70ca1c391d0338b7a1cccd1d02e4532268e65f7 (diff)
Automated merge from viewer-development
Diffstat (limited to 'indra/llimagej2coj/llimagej2coj.cpp')
-rw-r--r--indra/llimagej2coj/llimagej2coj.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llimagej2coj/llimagej2coj.cpp b/indra/llimagej2coj/llimagej2coj.cpp
index 95e0997d5b..13b12c0928 100644
--- a/indra/llimagej2coj/llimagej2coj.cpp
+++ b/indra/llimagej2coj/llimagej2coj.cpp
@@ -90,6 +90,12 @@ void info_callback(const char* msg, void*)
lldebugs << "LLImageJ2COJ: " << chomp(msg) << llendl;
}
+// Divide a by 2 to the power of b and round upwards
+int ceildivpow2(int a, int b)
+{
+ return (a + (1 << b) - 1) >> b;
+}
+
LLImageJ2COJ::LLImageJ2COJ()
: LLImageJ2CImpl()