diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-07-05 19:36:56 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-07-05 19:39:45 -0300 |
commit | 12a8fedfe604c7b944030ba772093ac0e2a85c78 (patch) | |
tree | 4d4611324630b6e8872b9aad4ab70da976e71f81 /modules | |
parent | 58320b7f6cfe17ad3793a9ce6981b8ce0e50ad6a (diff) |
Some changes to dual paraboloid envmap generation, fixes somme bleeding
Diffstat (limited to 'modules')
-rw-r--r-- | modules/etc/image_etc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/etc/image_etc.cpp b/modules/etc/image_etc.cpp index d9daffc59e..353bd1274a 100644 --- a/modules/etc/image_etc.cpp +++ b/modules/etc/image_etc.cpp @@ -153,6 +153,9 @@ static void _compress_etc(Image *p_img, float p_lossy_quality, bool force_etc1_f Etc::Image::Format etc2comp_etc_format = _image_format_to_etc2comp_format(etc_format); int wofs = 0; + + print_line("begin encoding, format: " + Image::get_format_name(etc_format)); + uint64_t t = OS::get_singleton()->get_ticks_msec(); for (int i = 0; i < mmc + 1; i++) { // convert source image to internal etc2comp format (which is equivalent to Image::FORMAT_RGBAF) // NOTE: We can alternatively add a case to Image::convert to handle Image::FORMAT_RGBAF conversion. @@ -177,6 +180,7 @@ static void _compress_etc(Image *p_img, float p_lossy_quality, bool force_etc1_f delete[] etc_data; delete[] src_rgba_f; } + print_line("time encoding: " + rtos(OS::get_singleton()->get_ticks_msec() - t)); p_img->create(imgw, imgh, mmc > 1 ? true : false, etc_format, dst_data); } |