Remove unused duplicate ColorChannel enum

This commit is contained in:
sabrina-shanman 2019-02-12 16:44:37 -08:00
parent b2e3b87ef4
commit 08ef9b6f84

View file

@ -43,15 +43,6 @@ enum Type {
UNUSED_TEXTURE
};
enum class ColorChannel {
NONE,
RED,
GREEN,
BLUE,
ALPHA,
COUNT
};
using TextureLoader = std::function<gpu::TexturePointer(QImage&&, const std::string&, bool, gpu::BackendTarget, const std::atomic<bool>&)>;
TextureLoader getTextureLoaderForType(Type type, const QVariantMap& options = QVariantMap());