Unit CastleScreenEffects
Description
Custom screen effects (TGLSLScreenEffect).
Uses
Overview
Classes, Interfaces, Objects and Records
Class TGLSLScreenEffect |
GLSL shader program specialized for rendering screen effects. |
Functions and Procedures
Description
Functions and Procedures
function ScreenEffectVertex: string; |
Standard GLSL vertex shader for screen effect. In your own programs, it's usually easier to use TGLSLScreenEffect, and then this function is not necessary.
|
function ScreenEffectFragment(const Depth: boolean): string; |
Library of GLSL fragment shader functions useful for screen effects. This looks at current OpenGL context multi-sampling capabilities to return the correct shader code.
In your own programs, it's usually easier to use TGLSLScreenEffect, and then this function is not necessary.
Note that to work with OpenGLES, we have to glue all fragment shaders, and ScreenEffectFragment must be before the actual shader code. The string returned by this function is guaranteed to end with a newline, to make it easy.
So you usually want to create screen effect shaders like this:
Shader := TGLSLProgram.Create;
Shader.AttachVertexShader(ScreenEffectVertex);
Shader.AttachFragmentShader(
ScreenEffectFragment(false ) +
'... my custom screen effect GLSL code ...');
Shader.Link;
Shader.UniformNotFoundAction := uaIgnore;
|
Generated by PasDoc 0.15.0.
|