80 lines
2.3 KiB
C++
80 lines
2.3 KiB
C++
// Copyright (C) 2012 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_SHADER_HPP
|
|
#define NAZARA_SHADER_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
#include <Nazara/Core/Color.hpp>
|
|
#include <Nazara/Core/NonCopyable.hpp>
|
|
#include <Nazara/Core/Resource.hpp>
|
|
#include <Nazara/Core/String.hpp>
|
|
#include <Nazara/Math/Matrix4.hpp>
|
|
#include <Nazara/Math/Vector2.hpp>
|
|
#include <Nazara/Math/Vector3.hpp>
|
|
#include <Nazara/Math/Vector4.hpp>
|
|
#include <Nazara/Renderer/Enums.hpp>
|
|
|
|
class NzShaderImpl;
|
|
class NzTexture;
|
|
|
|
class NAZARA_API NzShader : public NzResource, NzNonCopyable
|
|
{
|
|
friend class NzRenderer;
|
|
|
|
public:
|
|
NzShader() = default;
|
|
NzShader(nzShaderLanguage language);
|
|
~NzShader();
|
|
|
|
bool Create(nzShaderLanguage language);
|
|
bool Compile();
|
|
|
|
void Destroy();
|
|
|
|
NzString GetLog() const;
|
|
nzShaderLanguage GetLanguage() const;
|
|
NzString GetSourceCode(nzShaderType type) const;
|
|
int GetUniformLocation(const NzString& name) const;
|
|
|
|
bool HasUniform(const NzString& name) const;
|
|
|
|
bool IsCompiled() const;
|
|
bool IsLoaded(nzShaderType type) const;
|
|
bool IsValid() const;
|
|
|
|
bool Load(nzShaderType type, const NzString& source);
|
|
bool LoadFromFile(nzShaderType type, const NzString& source);
|
|
|
|
bool Lock();
|
|
|
|
bool SendBoolean(int location, bool value);
|
|
bool SendColor(int location, const NzColor& color);
|
|
bool SendDouble(int location, double value);
|
|
bool SendFloat(int location, float value);
|
|
bool SendInteger(int location, int value);
|
|
bool SendMatrix(int location, const NzMatrix4d& matrix);
|
|
bool SendMatrix(int location, const NzMatrix4f& matrix);
|
|
bool SendTexture(int location, const NzTexture* texture, nzUInt8* textureUnit = nullptr);
|
|
bool SendVector(int location, const NzVector2d& vector);
|
|
bool SendVector(int location, const NzVector2f& vector);
|
|
bool SendVector(int location, const NzVector3d& vector);
|
|
bool SendVector(int location, const NzVector3f& vector);
|
|
bool SendVector(int location, const NzVector4d& vector);
|
|
bool SendVector(int location, const NzVector4f& vector);
|
|
|
|
void Unlock();
|
|
|
|
static bool IsLanguageSupported(nzShaderLanguage language);
|
|
static bool IsTypeSupported(nzShaderType type);
|
|
|
|
private:
|
|
NzShaderImpl* m_impl = nullptr;
|
|
bool m_compiled = false;
|
|
};
|
|
|
|
#endif // NAZARA_SHADER_HPP
|