TexCombineD.dpr 457 B

12345678910111213141516171819
  1. (*
  2. A simple utility that allows combining RGB and Alpha channel into a single
  3. 32 bits texture, also allows to view RGB & Alpha channel of a 32 bits texture.
  4. The implementation isn't high performance, just sufficiently fast for
  5. interactive use.
  6. *)
  7. program TexCombineD;
  8. uses
  9. Forms,
  10. fTexCombineD in 'fTexCombineD.pas' {TTBMain};
  11. {$R *.res}
  12. begin
  13. Application.Initialize;
  14. Application.CreateForm(TTTBMain, TTBMain);
  15. Application.Run;
  16. end.