* @brief Decompression workload definition for worker threads. */
| 154 | * @brief Decompression workload definition for worker threads. |
| 155 | */ |
| 156 | struct decompression_workload |
| 157 | { |
| 158 | astcenc_context* context; |
| 159 | uint8_t* data; |
| 160 | size_t data_len; |
| 161 | astcenc_image* image_out; |
| 162 | astcenc_swizzle swizzle; |
| 163 | astcenc_error error; |
| 164 | }; |
| 165 | |
| 166 | /** |
| 167 | * @brief A custom deleter so we can use RAII to manage codec contexts. |
nothing calls this directly
no outgoing calls
no test coverage detected