diff options
author | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-01-19 20:22:21 +0100 |
---|---|---|
committer | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-09-26 14:42:54 +0200 |
commit | 2167157aaf0c4b2993ad67b929b3b51279360e29 (patch) | |
tree | 4d2d5de927ddfb8c5b5c6640dd8d30b99d7eeaf5 /modules/bcdec/image_decompress_bcdec.h | |
parent | a0d1ba4a3d1760f48ef3297a6299ee3dbc1260e1 (diff) | |
download | redot-engine-2167157aaf0c4b2993ad67b929b3b51279360e29.tar.gz |
Replace squish with bcdec for BC decompression
Diffstat (limited to 'modules/bcdec/image_decompress_bcdec.h')
-rw-r--r-- | modules/bcdec/image_decompress_bcdec.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/modules/bcdec/image_decompress_bcdec.h b/modules/bcdec/image_decompress_bcdec.h new file mode 100644 index 0000000000..b82ceed9a4 --- /dev/null +++ b/modules/bcdec/image_decompress_bcdec.h @@ -0,0 +1,49 @@ +/**************************************************************************/ +/* image_decompress_bcdec.h */ +/**************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* https://godotengine.org */ +/**************************************************************************/ +/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ +/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ +/* */ +/* 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_DECOMPRESS_BCDEC_H +#define IMAGE_DECOMPRESS_BCDEC_H + +#include "core/io/image.h" + +enum BCdecFormat { + BCdec_BC1, + BCdec_BC2, + BCdec_BC3, + BCdec_BC4, + BCdec_BC5, + BCdec_BC6S, + BCdec_BC6U, + BCdec_BC7, +}; + +void image_decompress_bcdec(Image *p_image); + +#endif // IMAGE_DECOMPRESS_BCDEC_H |