CgSimpleD.dpr 358 B

12345678910111213141516171819202122
  1. {
  2. Simple Cg Shader Demo
  3. Tested with Cg 1.1
  4. Try to get an ATI feel by editing the vertex shader code. ;)
  5. Last update: 20/01/04
  6. Nelson Chu
  7. }
  8. program CgSimpleD;
  9. uses
  10. Forms,
  11. fCgSimpleD in 'fCgSimpleD.pas' {FormCgSimple};
  12. {$R *.res}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TFormCgSimple, FormCgSimple);
  16. Application.Run;
  17. end.