TDME2 1.9.121
PostProcessingShaderLightScatteringImplementation.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
8
11
12/**
13 * Post processing shader implementation
14 * @author Andreas Drewke
15 * @version $Id$
16 */
18{
19private:
20 array<int32_t, Engine::LIGHTS_MAX> uniformLightEnabled;
21 array<int32_t, Engine::LIGHTS_MAX> uniformLightPosition;
22 array<int32_t, Engine::LIGHTS_MAX> uniformLightIntensity;
23
24public:
25 /**
26 * Returns if shader is supported on given renderer
27 * @param renderer renderer
28 * @return if shader is supported
29 */
30 static bool isSupported(Renderer* renderer);
31
32 /**
33 * Public constructor
34 * @param renderer renderer
35 */
37
38 // overridden methods
39 virtual void initialize() override;
40 virtual void setShaderParameters(int contextIdx, Engine* engine) override;
41
42};
Engine main class.
Definition: Engine.h:122