| 326 | RLCPP_NODISCARD bool IsValid() const { return IsTextureValid(*this); } |
| 327 | protected: |
| 328 | void set(const ::Texture& texture) { |
| 329 | id = texture.id; |
| 330 | width = texture.width; |
| 331 | height = texture.height; |
| 332 | mipmaps = texture.mipmaps; |
| 333 | format = texture.format; |
| 334 | } |
| 335 | }; |
| 336 | |
| 337 | // Create the TextureUnmanaged aliases. |
nothing calls this directly
no outgoing calls
no test coverage detected