| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- unit fdGLSLshaders;
- interface
- uses
- Winapi.Windows,
- Winapi.Messages,
- System.SysUtils,
- System.Variants,
- System.Classes,
- Vcl.Graphics,
- Vcl.Controls,
- Vcl.Forms,
- Vcl.Dialogs,
- Vcl.ComCtrls,
- Vcl.ExtCtrls;
- type
- TFormGLSLshaders = class(TForm)
- PanelLeft: TPanel;
- tvBench: TTreeView;
- PageControl: TPageControl;
- tsOne: TTabSheet;
- tsTwo: TTabSheet;
- tsThree: TTabSheet;
- tsFour: TTabSheet;
- tsFive: TTabSheet;
- tsSix: TTabSheet;
- tsSeven: TTabSheet;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- FormGLSLshaders: TFormGLSLshaders;
- implementation
- {$R *.dfm}
- end.
|