diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-08-21 06:38:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 06:38:03 +0200 |
commit | 4b8946102bc05e3d143d6674cfef634103db08b9 (patch) | |
tree | 28a1a37b543ba844a85836e28f45615a0b3d0b89 /core/io/image.h | |
parent | 62de80d6138c09cb2c4c66d0b963820f95ad1f21 (diff) | |
parent | 394ea653aacd131c234596299ebf79a52580c9b9 (diff) | |
download | redot-engine-4b8946102bc05e3d143d6674cfef634103db08b9.tar.gz |
Merge pull request #91535 from BlueCube3310/betsy-bc6h
Add Betsy to speed up BC6 compression
Diffstat (limited to 'core/io/image.h')
-rw-r--r-- | core/io/image.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/image.h b/core/io/image.h index cc285dabe3..8d09a0b40b 100644 --- a/core/io/image.h +++ b/core/io/image.h @@ -159,6 +159,8 @@ public: static void (*_image_compress_etc2_func)(Image *, UsedChannels p_channels); static void (*_image_compress_astc_func)(Image *, ASTCFormat p_format); + static Error (*_image_compress_bptc_rd_func)(Image *, UsedChannels p_channels); + static void (*_image_decompress_bc)(Image *); static void (*_image_decompress_bptc)(Image *); static void (*_image_decompress_etc1)(Image *); |