Renderer/Texture: Remove Image constructor

This commit is contained in:
Lynix
2020-01-09 22:42:28 +01:00
parent 16d0345502
commit db78c9c948
3 changed files with 1 additions and 7 deletions

View File

@@ -38,7 +38,6 @@ namespace Nz
public:
Texture() = default;
Texture(ImageType type, PixelFormatType format, unsigned int width, unsigned int height, unsigned int depth = 1, UInt8 levelCount = 1);
explicit Texture(const Image* image);
Texture(const Texture&) = delete;
Texture(Texture&&) = delete;
~Texture();