Unit1.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Forms.hpp>
  7. #include "GLS.BaseClasses.hpp"
  8. #include "GLS.Coordinates.hpp"
  9. #include "GLS.Scene.hpp"
  10. #include "GLS.Context.hpp"
  11. #include "GLS.Utils.hpp"
  12. #include "GLS.GeomObjects.hpp"
  13. #include "GLSDLContext.hpp"
  14. #include <Vcl.Imaging.jpeg.hpp>
  15. //---------------------------------------------------------------------------
  16. class TDataModule1 : public TDataModule
  17. {
  18. __published: // IDE-managed Components
  19. TGLScene *GLScene1;
  20. TGLLightSource *GLLightSource1;
  21. TGLTeapot *Teapot1;
  22. TGLCamera *GLCamera1;
  23. TGLSDLViewer *SDLViewer1;
  24. void DataModuleCreate(TObject *Sender);
  25. void GLSDLViewer1EventPollDone(TObject *Sender);
  26. void GLSDLViewer1Resize(TObject *Sender);
  27. private: // User declarations
  28. bool firstPassDone;
  29. public: // User declarations
  30. __fastcall TDataModule1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TDataModule1 *DataModule1;
  34. //---------------------------------------------------------------------------
  35. #endif