123456789101112131415161718192021222324252627282930313233343536373839 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Forms.hpp>
- #include "GLBaseClasses.hpp"
- #include "GLCoordinates.hpp"
- #include "GLCrossPlatform.hpp"
- #include "GLScene.hpp"
- #include "GLContext.hpp"
- #include "GLUtils.hpp"
- #include "GLTeapot.hpp"
- #include "OpenGL1x.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
|