12345678910111213141516171819202122 |
- {: Post Shader Demo
- A demo that demostrates how to use different post shaders together.
- More post shaders will be added to it later on.
- Version history:
- 12/06/07 - DaStr - Small cosmetic fixes
- 05/04/07 - DaStr - Initial version
- }
- program PostShader;
- uses
- Forms,
- fPostShader in 'fPostShader.pas' {PostShaderDemoForm};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TPostShaderDemoForm, PostShaderDemoForm);
- Application.Run;
- end.
|