* @memberof ktxTexture * @~English * @brief Return the total size of the texture image data in bytes. * * For a ktxTexture2 with supercompressionScheme != KTX_SS_NONE this will * return the deflated size of the data. * * @param[in] This pointer to the ktxTexture object of interest. */
| 473 | * @param[in] This pointer to the ktxTexture object of interest. |
| 474 | */ |
| 475 | ktx_size_t |
| 476 | ktxTexture_GetDataSize(ktxTexture* This) |
| 477 | { |
| 478 | assert(This != NULL); |
| 479 | return This->dataSize; |
| 480 | } |
| 481 | |
| 482 | /** |
| 483 | * @memberof ktxTexture |