2017-03-20 13:48:17 +00:00
|
|
|
#ifndef slic3r_GLShader_hpp_
|
|
|
|
#define slic3r_GLShader_hpp_
|
|
|
|
|
2018-12-06 11:52:28 +00:00
|
|
|
#include "libslic3r/libslic3r.h"
|
|
|
|
#include "libslic3r/Point.hpp"
|
2017-03-20 13:48:17 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class GLShader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GLShader() :
|
|
|
|
fragment_program_id(0),
|
|
|
|
vertex_program_id(0),
|
|
|
|
shader_program_id(0)
|
|
|
|
{}
|
|
|
|
~GLShader();
|
|
|
|
|
2018-05-21 11:08:02 +00:00
|
|
|
bool load_from_text(const char *fragment_shader, const char *vertex_shader);
|
|
|
|
bool load_from_file(const char* fragment_shader_filename, const char* vertex_shader_filename);
|
2018-06-12 10:18:16 +00:00
|
|
|
|
2017-03-20 13:48:17 +00:00
|
|
|
void release();
|
|
|
|
|
|
|
|
int get_attrib_location(const char *name) const;
|
|
|
|
int get_uniform_location(const char *name) const;
|
|
|
|
|
|
|
|
bool set_uniform(const char *name, float value) const;
|
2018-06-21 06:37:04 +00:00
|
|
|
bool set_uniform(const char* name, const float* matrix) const;
|
2019-02-27 14:19:03 +00:00
|
|
|
bool set_uniform(const char* name, int value) const;
|
2017-03-20 13:48:17 +00:00
|
|
|
|
|
|
|
void enable() const;
|
|
|
|
void disable() const;
|
|
|
|
|
|
|
|
unsigned int fragment_program_id;
|
|
|
|
unsigned int vertex_program_id;
|
|
|
|
unsigned int shader_program_id;
|
|
|
|
std::string last_error;
|
|
|
|
};
|
|
|
|
|
2019-02-20 14:23:23 +00:00
|
|
|
#if ENABLE_TEXTURES_FROM_SVG
|
|
|
|
class Shader
|
|
|
|
{
|
|
|
|
GLShader* m_shader;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Shader();
|
|
|
|
~Shader();
|
|
|
|
|
|
|
|
bool init(const std::string& vertex_shader_filename, const std::string& fragment_shader_filename);
|
|
|
|
|
|
|
|
bool is_initialized() const;
|
|
|
|
|
|
|
|
bool start_using() const;
|
|
|
|
void stop_using() const;
|
|
|
|
|
2019-02-28 08:04:17 +00:00
|
|
|
int get_attrib_location(const std::string& name) const;
|
|
|
|
int get_uniform_location(const std::string& name) const;
|
|
|
|
|
2019-02-20 14:23:23 +00:00
|
|
|
void set_uniform(const std::string& name, float value) const;
|
|
|
|
void set_uniform(const std::string& name, const float* matrix) const;
|
|
|
|
void set_uniform(const std::string& name, bool value) const;
|
|
|
|
|
|
|
|
const GLShader* get_shader() const { return m_shader; }
|
|
|
|
unsigned int get_shader_program_id() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void reset();
|
|
|
|
};
|
|
|
|
#endif // ENABLE_TEXTURES_FROM_SVG
|
|
|
|
|
2017-03-20 13:48:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* slic3r_GLShader_hpp_ */
|