1234567891011121314151617181920212223242526272829303132333435363738 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Forms.hpp>
- #include "GLS.BaseClasses.hpp"
- #include "GLS.Coordinates.hpp"
- #include "GLS.Scene.hpp"
- #include "GLS.Context.hpp"
- #include "GLS.Utils.hpp"
- #include "GLS.GeomObjects.hpp"
- #include "GLSDLContext.hpp"
- #include <Vcl.Imaging.jpeg.hpp>
- //---------------------------------------------------------------------------
- class TDataModule1 : public TDataModule
- {
- __published: // IDE-managed Components
- TGLScene *GLScene1;
- TGLLightSource *GLLightSource1;
- TGLTeapot *Teapot1;
- TGLCamera *GLCamera1;
- TGLSDLViewer *SDLViewer1;
- void DataModuleCreate(TObject *Sender);
- void GLSDLViewer1EventPollDone(TObject *Sender);
- void GLSDLViewer1Resize(TObject *Sender);
- private: // User declarations
- bool firstPassDone;
- public: // User declarations
- __fastcall TDataModule1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TDataModule1 *DataModule1;
- //---------------------------------------------------------------------------
- #endif
|