PostShader.dpr 474 B

12345678910111213141516171819202122
  1. {: Post Shader Demo
  2. A demo that demostrates how to use different post shaders together.
  3. More post shaders will be added to it later on.
  4. Version history:
  5. 12/06/07 - DaStr - Small cosmetic fixes
  6. 05/04/07 - DaStr - Initial version
  7. }
  8. program PostShader;
  9. uses
  10. Forms,
  11. fPostShader in 'fPostShader.pas' {PostShaderDemoForm};
  12. {$R *.res}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TPostShaderDemoForm, PostShaderDemoForm);
  16. Application.Run;
  17. end.