diff options
author | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-01-04 16:33:20 +0100 |
---|---|---|
committer | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-08-18 11:14:05 +0200 |
commit | 394ea653aacd131c234596299ebf79a52580c9b9 (patch) | |
tree | 426057fd548c0ef3fb21dbfe2517b85c3186aacd /core/io/image.h | |
parent | 96be44c0ec4bafcb08d78be1a584b751b424db9f (diff) | |
download | redot-engine-394ea653aacd131c234596299ebf79a52580c9b9.tar.gz |
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 d55cc39dbb..18b8c99f69 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 *); |