TDME2
1.9.121
src
tdme
engine
subsystems
postprocessing
PostProcessingShaderSSAOMapImplementation.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <array>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/fwd-tdme.h
>
7
#include <
tdme/engine/subsystems/postprocessing/fwd-tdme.h
>
8
#include <
tdme/engine/subsystems/postprocessing/PostProcessingShaderBaseImplementation.h
>
9
#include <
tdme/engine/subsystems/renderer/fwd-tdme.h
>
10
11
using
std::array;
12
13
using
tdme::engine::subsystems::renderer::Renderer
;
14
using
tdme::engine::Engine
;
15
16
/**
17
* Post processing shader SSAO map generation implementation
18
* @author Andreas Drewke
19
* @version $Id$
20
*/
21
class
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation
:
public
PostProcessingShaderBaseImplementation
22
{
23
public
:
24
/**
25
* Returns if shader is supported on given renderer
26
* @param renderer renderer
27
* @return if shader is supported
28
*/
29
static
bool
isSupported
(
Renderer
*
renderer
);
30
31
/**
32
* Public constructor
33
* @param renderer renderer
34
*/
35
PostProcessingShaderSSAOMapImplementation
(
Renderer
*
renderer
);
36
37
// overridden methods
38
virtual
void
initialize
()
override
;
39
virtual
void
useProgram
(
int
contextIdx)
override
;
40
virtual
void
setShaderParameters
(
int
contextIdx,
Engine
* engine)
override
;
41
42
private
:
43
array<int32_t, 16>
uniformSphere
;
44
int32_t
uniformRandomTextureUnit
{ -1 };
45
int32_t
randomTextureId
{ -1 };
46
};
PostProcessingShaderBaseImplementation.h
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::engine::subsystems::postprocessing::PostProcessingShaderBaseImplementation
Post processing shader base implementation.
Definition:
PostProcessingShaderBaseImplementation.h:19
tdme::engine::subsystems::postprocessing::PostProcessingShaderBaseImplementation::renderer
Renderer * renderer
Definition:
PostProcessingShaderBaseImplementation.h:35
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation
Post processing shader SSAO map generation implementation.
Definition:
PostProcessingShaderSSAOMapImplementation.h:22
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::randomTextureId
int32_t randomTextureId
Definition:
PostProcessingShaderSSAOMapImplementation.h:45
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::setShaderParameters
virtual void setShaderParameters(int contextIdx, Engine *engine) override
Set shader parameters.
Definition:
PostProcessingShaderSSAOMapImplementation.cpp:109
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::initialize
virtual void initialize() override
Initialize post processing shader.
Definition:
PostProcessingShaderSSAOMapImplementation.cpp:34
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::isSupported
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
Definition:
PostProcessingShaderSSAOMapImplementation.cpp:26
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::PostProcessingShaderSSAOMapImplementation
PostProcessingShaderSSAOMapImplementation(Renderer *renderer)
Public constructor.
Definition:
PostProcessingShaderSSAOMapImplementation.cpp:30
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::uniformRandomTextureUnit
int32_t uniformRandomTextureUnit
Definition:
PostProcessingShaderSSAOMapImplementation.h:44
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::useProgram
virtual void useProgram(int contextIdx) override
Use program.
Definition:
PostProcessingShaderSSAOMapImplementation.cpp:86
tdme::engine::subsystems::postprocessing::PostProcessingShaderSSAOMapImplementation::uniformSphere
array< int32_t, 16 > uniformSphere
Definition:
PostProcessingShaderSSAOMapImplementation.h:43
tdme::engine::subsystems::renderer::Renderer
Renderer interface.
Definition:
Renderer.h:45
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
tdme.h
Generated by
1.9.3