* @brief Compression workload definition for worker threads. */
| 141 | * @brief Compression workload definition for worker threads. |
| 142 | */ |
| 143 | struct compression_workload |
| 144 | { |
| 145 | astcenc_context* context; |
| 146 | astcenc_image* image; |
| 147 | astcenc_swizzle swizzle; |
| 148 | uint8_t* data_out; |
| 149 | size_t data_len; |
| 150 | astcenc_error error; |
| 151 | }; |
| 152 | |
| 153 | /** |
| 154 | * @brief Decompression workload definition for worker threads. |
nothing calls this directly
no outgoing calls
no test coverage detected