| 47 | std::unique_ptr<ImageWriteAccessor> write; |
| 48 | |
| 49 | const void* GetData() const |
| 50 | { |
| 51 | if (read) return read->GetData(); |
| 52 | if (write) return write->GetData(); |
| 53 | return nullptr; |
| 54 | } |
| 55 | |
| 56 | void* GetMutableData() |
| 57 | { |
no outgoing calls
no test coverage detected