LiningShaders.dpr 562 B

12345678910111213141516171819202122
  1. {: Demo for using the Outline and the Hiddenline shaders.
  2. The HiddenLine shader provides some kind of 'technical drawing' rendering
  3. styles. You can change the settings for front lines and back lines to get
  4. various looks.
  5. The Outline shader is useful for displaying objects as 'selected' or for
  6. toon-style shading.
  7. }
  8. program LiningShaders;
  9. uses
  10. Forms,
  11. fLiningShader in 'fLiningShader.pas' {FormLiningShader};
  12. {$R *.res}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TFormLiningShader, FormLiningShader);
  16. Application.Run;
  17. end.