fFullScreenC.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //---------------------------------------------------------------------------
  2. #ifndef fFullScreenCH
  3. #define fFullScreenCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include "System.SysUtils.hpp"
  7. #include "GLS.BaseClasses.hpp"
  8. #include "GLS.Coordinates.hpp"
  9. #include "GLS.FullScreenViewer.hpp"
  10. #include "GLS.Objects.hpp"
  11. #include "GLS.Scene.hpp"
  12. #include "GLS.GeomObjects.hpp"
  13. #include "GLS.Canvas.hpp"
  14. //---------------------------------------------------------------------------
  15. class TDataModule1 : public TDataModule
  16. {
  17. __published: // IDE-managed Components
  18. TGLScene *GLScene1;
  19. TGLLightSource *GLLightSource1;
  20. TGLTeapot *Teapot1;
  21. TGLDummyCube *DCBlueLight;
  22. TGLLightSource *GLLightSource2;
  23. TGLCamera *GLCamera1;
  24. TGLFullScreenViewer *GLFullScreenViewer1;
  25. void __fastcall DataModuleCreate(TObject *Sender);
  26. void __fastcall GLFullScreenViewer1PostRender(TObject *Sender);
  27. void __fastcall GLFullScreenViewer1KeyPress(TObject *Sender, System::WideChar &Key);
  28. private: // User declarations
  29. public: // User declarations
  30. __fastcall TDataModule1(TComponent* Owner);
  31. bool firstPassDone;
  32. };
  33. //---------------------------------------------------------------------------
  34. extern PACKAGE TDataModule1 *DataModule1;
  35. //---------------------------------------------------------------------------
  36. #endif