TDME2 1.9.121
LightingShaderTerrainEditorImplementation.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
10using std::string;
11
14
15/**
16 * Lighting shader implementation
17 * @author Andreas Drewke
18 * @version $Id$
19 */
21{
22public:
23 /**
24 * Public constructor
25 * @param renderer renderer
26 */
28
29 // overridden methods
30 virtual const string getId() override;
31 virtual void initialize() override;
32 virtual void registerShader() override;
33 virtual void useProgram(Engine* engine, int contextIdx) override;
34
35private:
36 int32_t uniformBrushEnabled { -1 };
39 int32_t uniformBrushPosition { -1 };
41
42};
Engine main class.
Definition: Engine.h:122
virtual void useProgram(Engine *engine, int contextIdx) override
Use lighting program.