| 430 | /* ----- Attributes ----- */ |
| 431 | |
| 432 | SrcImageDescriptor Image::GetSrcDesc() const |
| 433 | { |
| 434 | SrcImageDescriptor imageDesc; |
| 435 | { |
| 436 | imageDesc.format = GetFormat(); |
| 437 | imageDesc.dataType = GetDataType(); |
| 438 | imageDesc.data = GetData(); |
| 439 | imageDesc.dataSize = GetDataSize(); |
| 440 | } |
| 441 | return imageDesc; |
| 442 | } |
| 443 | |
| 444 | DstImageDescriptor Image::GetDstDesc() |
| 445 | { |