MyGL
Loading...
Searching...
No Matches
Shader.hpp
1#ifndef MYGL_SHADER
2#define MYGL_SHADER
3
4#include "mygl_export.h"
5
6#include <memory>
7#include <string>
8
9namespace my
10{
14 class Shader
15 {
16 private:
17 std::shared_ptr<unsigned int> p_shaderId;
18
19 public:
20 enum class Type
21 {
22 Vertex,
23 Fragment,
24 Geometry
25 };
26
30 MYGL_EXPORT Shader() noexcept = default;
31
37 MYGL_EXPORT Shader(const std::string& sourceCode, Type type);
38
45 MYGL_EXPORT ~Shader() = default;
46
54 MYGL_EXPORT bool loadFromFile(const std::string& filename, Type type);
55
62 MYGL_EXPORT bool loadFromString(const std::string& sourceCode, Type type);
63
68 MYGL_EXPORT bool isUsable() const noexcept;
69
70 friend class ShaderProgram;
71 };
72
73} // namespace my
74
75#endif // MYGL_SHADER
Class for storing a shader.
Definition Shader.hpp:15
MYGL_EXPORT bool loadFromFile(const std::string &filename, Type type)
Loads a shader from a file.
MYGL_EXPORT Shader() noexcept=default
Creates an empty shader.
MYGL_EXPORT bool loadFromString(const std::string &sourceCode, Type type)
Loads a shader from a string.
MYGL_EXPORT bool isUsable() const noexcept
Indicates if the shader is usable.
Class for creating shader programs.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10