| 527 | } |
| 528 | |
| 529 | int64_t Image::GetSizeInBytes() const |
| 530 | { |
| 531 | // m_size_inbytes == -1 indicates failure case and value has not been computed yet |
| 532 | NVCV_ASSERT(m_size_inbytes != -1 && "Image has m_size_inbytes == -1, ie m_size_inbytes has not been correctly set"); |
| 533 | return m_size_inbytes; |
| 534 | } |
| 535 | |
| 536 | std::shared_ptr<Image> Image::shared_from_this() |
| 537 | { |
nothing calls this directly
no outgoing calls
no test coverage detected