1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //---------------------------------------------------------------------------
- #ifndef fDynTextureCH
- #define fDynTextureCH
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #include <tchar.h>
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include <Vcl.ExtCtrls.hpp>
- #include "GLS.BaseClasses.hpp"
- #include "GLS.Cadencer.hpp"
- #include "GLS.Coordinates.hpp"
- #include "GLS.Material.hpp"
- #include "GLS.Objects.hpp"
- #include "GLS.Scene.hpp"
- #include "GLS.SceneViewer.hpp"
- #include "GLS.Utils.hpp"
- #include "GLS.Context.hpp"
- #include "GLS.DynamicTexture.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TGLSceneViewer *GLSceneViewer1;
- TGLScene *GLScene1;
- TGLDirectOpenGL *GLDirectOpenGL1;
- TGLDummyCube *GLDummyCube1;
- TGLCube *GLCube1;
- TGLLightSource *GLLightSource1;
- TGLCamera *GLCamera1;
- TGLMaterialLibrary *GLMaterialLibrary1;
- TGLCadencer *GLCadencer1;
- TTimer *Timer1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall FormResize(TObject *Sender);
- void __fastcall FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
- void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
- void __fastcall GLDirectOpenGL1Render(TObject *Sender, TGLRenderContextInfo &rci);
- void __fastcall Timer1Timer(TObject *Sender);
- private: // User declarations
- int frame;
- bool partial;
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|