// Copyright (C) 2014 Jérôme Leclercq // This file is part of the "Nazara Engine - Renderer module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_UBERSHADER_HPP #define NAZARA_UBERSHADER_HPP #include #include #include #include #include #include class NzUberShader; using NzUberShaderConstRef = NzResourceRef; using NzUberShaderRef = NzResourceRef; class NAZARA_API NzUberShader : public NzResource { public: NzUberShader() = default; virtual ~NzUberShader(); virtual NzUberShaderInstance* Get(const NzParameterList& parameters) const = 0; }; #endif // NAZARA_UBERSHADER_HPP