ShaderCompD.dpr 418 B

1234567891011121314151617181920212223242526
  1. {:
  2. GLSL Shader Component Demo
  3. A demo that shows how to use the TGLSLShader component.
  4. Version history:
  5. 30/03/07 - DaStr - Cleaned up "uses" section
  6. 20/03/07 - DaStr - Initial version
  7. }
  8. program ShaderCompD;
  9. uses
  10. Forms,
  11. fShaderCompD in 'fShaderCompD.pas' {GLSLTestForm};
  12. {$R *.res}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TGLSLTestForm, GLSLTestForm);
  16. Application.Run;
  17. end.