fdGLSLshaders.pas 659 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. unit fdGLSLshaders;
  2. interface
  3. uses
  4. Winapi.Windows,
  5. Winapi.Messages,
  6. System.SysUtils,
  7. System.Variants,
  8. System.Classes,
  9. Vcl.Graphics,
  10. Vcl.Controls,
  11. Vcl.Forms,
  12. Vcl.Dialogs,
  13. Vcl.ComCtrls,
  14. Vcl.ExtCtrls;
  15. type
  16. TFormGLSLshaders = class(TForm)
  17. PanelLeft: TPanel;
  18. tvBench: TTreeView;
  19. PageControl: TPageControl;
  20. tsOne: TTabSheet;
  21. tsTwo: TTabSheet;
  22. tsThree: TTabSheet;
  23. tsFour: TTabSheet;
  24. tsFive: TTabSheet;
  25. tsSix: TTabSheet;
  26. tsSeven: TTabSheet;
  27. private
  28. { Private declarations }
  29. public
  30. { Public declarations }
  31. end;
  32. var
  33. FormGLSLshaders: TFormGLSLshaders;
  34. implementation
  35. {$R *.dfm}
  36. end.