From 3a9ee749fbde41695d1b1a0804bbf63d76427b27 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Thu, 27 Oct 2016 11:01:19 +0300 Subject: [PATCH] Remove the obsolete storage statement with border --- source/texture2d.cpp | 6 ------ source/texture2d.h | 1 - 2 files changed, 7 deletions(-) diff --git a/source/texture2d.cpp b/source/texture2d.cpp index 2189fa83..ae1afbc6 100644 --- a/source/texture2d.cpp +++ b/source/texture2d.cpp @@ -168,7 +168,6 @@ void Texture2D::Loader::init() { add("raw_data", &Loader::raw_data); add("storage", &Loader::storage); - add("storage", &Loader::storage_b); } void Texture2D::Loader::raw_data(const string &data) @@ -183,11 +182,6 @@ void Texture2D::Loader::storage(PixelFormat fmt, unsigned w, unsigned h) obj.storage(fmt, w, h); } -void Texture2D::Loader::storage_b(PixelFormat fmt, unsigned w, unsigned h, unsigned) -{ - storage(fmt, w, h); -} - Texture2D::AsyncLoader::AsyncLoader(Texture2D &t, IO::Seekable &i): texture(t), diff --git a/source/texture2d.h b/source/texture2d.h index 674c778f..92dafc71 100644 --- a/source/texture2d.h +++ b/source/texture2d.h @@ -27,7 +27,6 @@ public: void raw_data(const std::string &); void storage(PixelFormat, unsigned, unsigned); - void storage_b(PixelFormat, unsigned, unsigned, unsigned); }; private: -- 2.43.0