mirror of https://github.com/axmolengine/axmol.git
Take care memory leak
This commit is contained in:
parent
be7c037cd9
commit
e2c213e0bd
|
@ -23,7 +23,7 @@
|
|||
#include "yasio/detail/utils.hpp"
|
||||
|
||||
#define ASTCDEC_NO_CONTEXT 1
|
||||
#define ASTCDEC_PRINT_BENCHMARK 0
|
||||
#define ASTCDEC_PRINT_BENCHMARK 1
|
||||
|
||||
typedef std::mutex astc_decompress_mutex_t;
|
||||
|
||||
|
@ -32,7 +32,9 @@ struct astc_decompress_task {
|
|||
unsigned int dim_x, unsigned int dim_y, int block_x, int block_y);
|
||||
astc_decompress_task() {}
|
||||
~astc_decompress_task() {
|
||||
#if !ASTCDEC_NO_CONTEXT
|
||||
#if ASTCDEC_NO_CONTEXT
|
||||
term_block_size_descriptor(_bsd);
|
||||
#else
|
||||
if (_context)
|
||||
astcenc_context_free(this->_context);
|
||||
#endif
|
||||
|
@ -113,8 +115,8 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
std::shared_ptr<astc_decompress_task> make_task(const uint8_t* in, unsigned int inlen,
|
||||
uint8_t* out, unsigned int dim_x, unsigned int dim_y, int block_x, int block_y) {
|
||||
std::shared_ptr<astc_decompress_task> make_task(const uint8_t* in, unsigned int inlen, uint8_t* out,
|
||||
unsigned int dim_x, unsigned int dim_y, int block_x, int block_y) {
|
||||
unsigned int xblocks = (dim_x + block_x - 1) / block_x;
|
||||
unsigned int yblocks = (dim_y + block_y - 1) / block_y;
|
||||
unsigned int zblocks = 1; // (dim_z + block_z - 1) / block_z;
|
||||
|
|
Loading…
Reference in New Issue