RenderToTexture.dpr 236 B

12345678910111213141516
  1. {:
  2. Rendering to texture demo
  3. }
  4. program RenderToTexture;
  5. uses
  6. Forms,
  7. fRenderToTexture in 'fRenderToTexture.pas' {Form1};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TForm1, Form1);
  12. Application.Run;
  13. end.