TDME2 1.9.121
PostProcessingShaderVignetteImplementation.cpp
Go to the documentation of this file.
1#include <string>
2
3#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
10
11using std::string;
12
18
19bool PostProcessingShaderVignetteImplementation::isSupported(Renderer* renderer) {
20 return renderer->getShaderVersion() == "gl3";
21}
22
24{
25}
26
28{
29 auto shaderVersion = renderer->getShaderVersion();
30
31 // fragment shader
34 "shader/" + shaderVersion + "/postprocessing",
35 "vignette_fragmentshader.frag",
36 Engine::is4K() == true?"#define HAVE_4K":""
37 );
38 if (fragmentShaderId == 0) return;
39
40 // vertex shader
43 "shader/" + shaderVersion + "/postprocessing",
44 "vignette_vertexshader.vert"
45 );
46 if (vertexShaderId == 0) return;
47
48 // create, attach and link program
52
53 //
55
56 //
57 if (initialized == false) return;
58
59 // uniforms
62
63 // register shader
65 Engine::ShaderType::SHADERTYPE_POSTPROCESSING,
66 "vignette",
67 {
68 { "intensity", ShaderParameter(0.0f) },
69 { "borderColor", ShaderParameter(Vector3(1.0f, 1.0f, 1.0f)) }
70 }
71 );
72}
73
75 if (uniformIntensity != -1) renderer->setProgramUniformFloat(contextIdx, uniformIntensity, engine->getShaderParameter("vignette", "intensity").getFloatValue());
76 if (uniformBorderColor != -1) renderer->setProgramUniformFloatVec3(contextIdx, uniformBorderColor, engine->getShaderParameter("vignette", "borderColor").getVector3Value().getArray());
77}
Engine main class.
Definition: Engine.h:122
static void registerShader(ShaderType type, const string &shaderId, const map< string, ShaderParameter > &parameterDefaults={})
Register shader.
Definition: Engine.cpp:2122
const ShaderParameter getShaderParameter(const string &shaderId, const string &parameterName)
Returns shader parameter for given shader id and parameter name, if the value does not exist,...
Definition: Engine.h:792
static bool is4K()
Definition: Engine.h:594
Shader parameter model class.
const Vector3 getVector3Value() const
virtual void setShaderParameters(int contextIdx, Engine *engine) override
Set shader parameters.
virtual int32_t loadShader(int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string())=0
Loads a shader.
virtual int32_t createProgram(int type)=0
Creates a shader program.
virtual void attachShaderToProgram(int32_t programId, int32_t shaderId)=0
Attaches a shader to a program.
virtual int32_t getProgramUniformLocation(int32_t programId, const string &name)=0
Returns location of given uniform variable.
virtual void setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array< float, 3 > &data)=0
Set up a float vec3 uniform value.
virtual void setProgramUniformFloat(int contextIdx, int32_t uniformId, float value)=0
Set up a float uniform value.
3D vector 3 class
Definition: Vector3.h:22
array< float, 3 > & getArray() const
Definition: Vector3.h:171