Get the total size of the subresource in bytes (unaligned).
| 61 | |
| 62 | /// Get the total size of the subresource in bytes (unaligned). |
| 63 | size_t getTotalByteSize() const { return rowSize * rowCount * depth; } |
| 64 | |
| 65 | /// Get the total size of the subresource in bytes (aligned to device texture alignment). |
| 66 | size_t getTotalByteSizeAligned() const { return rowSizeAligned * rowCount * depth; } |
no outgoing calls
no test coverage detected