TDME2 1.9.121
Public Member Functions | Private Attributes | List of all members
GUIShader Class Referencefinal

GUI shader. More...

#include <tdme/gui/renderer/GUIShader.h>

Collaboration diagram for GUIShader:
Collaboration graph

Public Member Functions

 GUIShader (Renderer *renderer)
 Public constructor. More...
 
bool isInitialized ()
 
void initialize ()
 Init shadow mapping. More...
 
void useProgram ()
 Use render GUI program. More...
 
void unUseProgram ()
 Un use render GUI program. More...
 
void bindTexture (int32_t textureId)
 Bind texture. More...
 
void updateEffect ()
 Update effect to program. More...
 
void updateTextureMatrix ()
 Update texure matrix to program. More...
 
void setGradient (int count, array< GUIColor, 10 > &colors, array< float, 10 > &colorStarts, float rotationAngle)
 Set gradient properties. More...
 
void unsetGradient ()
 Disable gradient. More...
 

Private Attributes

Rendererrenderer { nullptr }
 
int32_t vertexShaderId { -1 }
 
int32_t fragmentShaderId { -1 }
 
int32_t programId { -1 }
 
int32_t uniformDiffuseTextureUnit { -1 }
 
int32_t uniformDiffuseTextureAvailable { -1 }
 
int32_t uniformMaskTextureUnit { -1 }
 
int32_t uniformMaskTextureAvailable { -1 }
 
int32_t uniformMaskMaxValue { -1 }
 
int32_t uniformEffectColorMul { -1 }
 
int32_t uniformEffectColorAdd { -1 }
 
int32_t uniformTextureMatrix { -1 }
 
int32_t uniformGradientAvailable { -1 }
 
array< int32_t, 10 > uniformGradientColors { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }
 
int32_t uniformGradientColorCount { -1 }
 
array< int32_t, 10 > uniformGradientColorStarts { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }
 
int32_t uniformInverseGradientTextureMatrix { -1 }
 
bool initialized
 
bool isRunning
 

Detailed Description

GUI shader.

Author
Andreas Drewke
Version
$Id$

Definition at line 21 of file GUIShader.h.

Constructor & Destructor Documentation

◆ GUIShader()

GUIShader ( Renderer renderer)

Public constructor.

Parameters
rendererrenderer

Definition at line 23 of file GUIShader.cpp.

Member Function Documentation

◆ bindTexture()

void bindTexture ( int32_t  textureId)

Bind texture.

Parameters
textureIdtexture id

Definition at line 125 of file GUIShader.cpp.

◆ initialize()

void initialize ( )

Init shadow mapping.

Definition at line 35 of file GUIShader.cpp.

◆ isInitialized()

bool isInitialized ( )
Returns
if initialized and ready to use

Definition at line 30 of file GUIShader.cpp.

◆ setGradient()

void setGradient ( int  count,
array< GUIColor, 10 > &  colors,
array< float, 10 > &  colorStarts,
float  rotationAngle 
)

Set gradient properties.

Deprecated:
use rather custom UI shader and parameters
Parameters
countcolor count
colorscolors
colorStartscolor starts
rotationAnglerotation angle

Definition at line 162 of file GUIShader.cpp.

◆ unsetGradient()

void unsetGradient ( )

Disable gradient.

Deprecated:
use rather custom UI shader and parameters

Definition at line 176 of file GUIShader.cpp.

◆ unUseProgram()

void unUseProgram ( )

Un use render GUI program.

Definition at line 120 of file GUIShader.cpp.

◆ updateEffect()

void updateEffect ( )

Update effect to program.

Definition at line 139 of file GUIShader.cpp.

◆ updateTextureMatrix()

void updateTextureMatrix ( )

Update texure matrix to program.

Definition at line 152 of file GUIShader.cpp.

◆ useProgram()

void useProgram ( )

Use render GUI program.

Definition at line 107 of file GUIShader.cpp.

Member Data Documentation

◆ fragmentShaderId

int32_t fragmentShaderId { -1 }
private

Definition at line 27 of file GUIShader.h.

◆ initialized

bool initialized
private

Definition at line 42 of file GUIShader.h.

◆ isRunning

bool isRunning
private

Definition at line 43 of file GUIShader.h.

◆ programId

int32_t programId { -1 }
private

Definition at line 28 of file GUIShader.h.

◆ renderer

Renderer* renderer { nullptr }
private

Definition at line 25 of file GUIShader.h.

◆ uniformDiffuseTextureAvailable

int32_t uniformDiffuseTextureAvailable { -1 }
private

Definition at line 30 of file GUIShader.h.

◆ uniformDiffuseTextureUnit

int32_t uniformDiffuseTextureUnit { -1 }
private

Definition at line 29 of file GUIShader.h.

◆ uniformEffectColorAdd

int32_t uniformEffectColorAdd { -1 }
private

Definition at line 35 of file GUIShader.h.

◆ uniformEffectColorMul

int32_t uniformEffectColorMul { -1 }
private

Definition at line 34 of file GUIShader.h.

◆ uniformGradientAvailable

int32_t uniformGradientAvailable { -1 }
private

Definition at line 37 of file GUIShader.h.

◆ uniformGradientColorCount

int32_t uniformGradientColorCount { -1 }
private

Definition at line 39 of file GUIShader.h.

◆ uniformGradientColors

array<int32_t, 10> uniformGradientColors { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }
private

Definition at line 38 of file GUIShader.h.

◆ uniformGradientColorStarts

array<int32_t, 10> uniformGradientColorStarts { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }
private

Definition at line 40 of file GUIShader.h.

◆ uniformInverseGradientTextureMatrix

int32_t uniformInverseGradientTextureMatrix { -1 }
private

Definition at line 41 of file GUIShader.h.

◆ uniformMaskMaxValue

int32_t uniformMaskMaxValue { -1 }
private

Definition at line 33 of file GUIShader.h.

◆ uniformMaskTextureAvailable

int32_t uniformMaskTextureAvailable { -1 }
private

Definition at line 32 of file GUIShader.h.

◆ uniformMaskTextureUnit

int32_t uniformMaskTextureUnit { -1 }
private

Definition at line 31 of file GUIShader.h.

◆ uniformTextureMatrix

int32_t uniformTextureMatrix { -1 }
private

Definition at line 36 of file GUIShader.h.

◆ vertexShaderId

int32_t vertexShaderId { -1 }
private

Definition at line 26 of file GUIShader.h.


The documentation for this class was generated from the following files: