| 536 | |
| 537 | template <typename T> |
| 538 | inline void* image_data( image_view<T>& img) |
| 539 | { |
| 540 | if (img.size() != 0) |
| 541 | return &img[0][0]; |
| 542 | else |
| 543 | return 0; |
| 544 | } |
| 545 | |
| 546 | template <typename T> |
| 547 | inline const void* image_data( |
no test coverage detected