TAMSVIZ
Visualization and annotation tool for ROS
shader.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "opengl.h"
7 #include "resource.h"
8 
9 #include <string>
10 
11 enum class Samplers : GLuint {
12  color = 1,
13  normal = 2,
14 };
15 
16 enum class VertexAttributes : GLuint {
17  position = 0,
18  normal = 1,
19  texcoord = 2,
20  tangent = 3,
21  bitangent = 4,
22  color = 5,
23  extra = 6,
24  pose_x = 7,
25  pose_y = 8,
26  pose_z = 9,
27 };
28 
29 enum class UniformBindingPoint : GLuint {
30  camera = 1,
31  material = 2,
32  lights = 3,
33 };
34 
35 class Shader;
36 
38 
39 class Shader : public ResourceBase {
40  GLuint _program = 0;
41  std::string _vertex_shader_url;
42  std::string _fragment_shader_url;
43  void create();
44  void destroy();
45  void addShader(GLenum type, const std::string &url);
46 
47 public:
48  Shader(const std::string &vertex_shader_url,
49  const std::string &fragment_shader_url)
50  : _vertex_shader_url(vertex_shader_url),
51  _fragment_shader_url(fragment_shader_url) {}
52  ~Shader() { destroy(); }
53  int program();
54  void use();
55  static ShaderManager &manager();
56 };
Definition: shader.h:39