summaryrefslogtreecommitdiffstats
path: root/modules/etcpak/image_etcpak.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-04-15 14:02:45 +0200
committerRémi Verschelde <rverschelde@gmail.com>2021-04-16 17:08:36 +0200
commit0ab928e060a8b4995d13a7f4d281d1f9b3e78cc1 (patch)
tree74703d2cca4866a97048d4d13810f55448521e0e /modules/etcpak/image_etcpak.h
parent2e87857d758efb69989bc8c1cc5693f86df55d87 (diff)
downloadredot-engine-0ab928e060a8b4995d13a7f4d281d1f9b3e78cc1.tar.gz
Import: Cleanup and optimize etcpak compression method
Avoid unnecessary allocation of temporary buffers for each mip, and creates only one Image with the compressed data. Also renames variable and reorders code for clarity. Clarify that squish is now only used for decompression. Documented which formats can be decompressed in Image.
Diffstat (limited to 'modules/etcpak/image_etcpak.h')
-rw-r--r--modules/etcpak/image_etcpak.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/modules/etcpak/image_etcpak.h b/modules/etcpak/image_etcpak.h
deleted file mode 100644
index 0137bab7cc..0000000000
--- a/modules/etcpak/image_etcpak.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*************************************************************************/
-/* image_etcpak.h */
-/*************************************************************************/
-/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
-/*************************************************************************/
-/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
-/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
-/* */
-/* Permission is hereby granted, free of charge, to any person obtaining */
-/* a copy of this software and associated documentation files (the */
-/* "Software"), to deal in the Software without restriction, including */
-/* without limitation the rights to use, copy, modify, merge, publish, */
-/* distribute, sublicense, and/or sell copies of the Software, and to */
-/* permit persons to whom the Software is furnished to do so, subject to */
-/* the following conditions: */
-/* */
-/* The above copyright notice and this permission notice shall be */
-/* included in all copies or substantial portions of the Software. */
-/* */
-/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
-/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
-/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
-/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
-/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
-/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
-/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
-/*************************************************************************/
-
-#ifndef IMAGE_ETCPAK_H
-#define IMAGE_ETCPAK_H
-
-#include "core/io/image.h"
-
-enum class EtcpakType {
- ETCPAK_TYPE_ETC1,
- ETCPAK_TYPE_ETC2,
- ETCPAK_TYPE_ETC2_ALPHA,
- ETCPAK_TYPE_ETC2_RA_AS_RG,
- ETCPAK_TYPE_DXT1,
- ETCPAK_TYPE_DXT5,
- ETCPAK_TYPE_DXT5_RA_AS_RG,
-};
-
-void _compress_etcpak(EtcpakType p_compresstype, Image *p_img, float p_lossy_quality, bool force_etc1_format, Image::UsedChannels p_channels);
-void _compress_etc1(Image *p_img, float p_lossy_quality);
-void _compress_etc2(Image *p_img, float p_lossy_quality, Image::UsedChannels p_source);
-void _compress_bc(Image *p_img, float p_lossy_quality, Image::UsedChannels p_source);
-
-#endif // IMAGE_ETCPAK_H