diff options
author | elasota <ejlasota@gmail.com> | 2018-08-25 16:39:43 -0400 |
---|---|---|
committer | elasota <ejlasota@gmail.com> | 2018-08-25 17:22:53 -0400 |
commit | de2a36505a9656c6abcd01d3f914a644175a4ced (patch) | |
tree | 113d4538556328e490412f985c563a0bbc7f77ed /modules/cvtt/image_compress_cvtt.cpp | |
parent | f72f74486d3f07b2be0c6480c6c0d34edd47794f (diff) |
Fix mipmap levels not being initialized
Diffstat (limited to 'modules/cvtt/image_compress_cvtt.cpp')
-rw-r--r-- | modules/cvtt/image_compress_cvtt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cvtt/image_compress_cvtt.cpp b/modules/cvtt/image_compress_cvtt.cpp index 3a371c8597..af92861352 100644 --- a/modules/cvtt/image_compress_cvtt.cpp +++ b/modules/cvtt/image_compress_cvtt.cpp @@ -247,8 +247,8 @@ void image_compress_cvtt(Image *p_image, float p_lossy_quality, Image::CompressS } dst_ofs += (MAX(4, bw) * MAX(4, bh)) >> shift; - w >>= 1; - h >>= 1; + w = MAX(w / 2, 1); + h = MAX(h / 2, 1); } if (num_job_threads > 0) { |