| 550 | const void * Texture::Underlying() const { return impl_->Underlying(); } |
| 551 | |
| 552 | size_t Texture::HashCode() const { |
| 553 | return std::hash<void *>{}((void *)impl_.get()); |
| 554 | } |
| 555 | |
| 556 | bool Texture::operator==(const Texture & other) const { |
| 557 | return impl_ == other.impl_; |