| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //---------------------------------------------------------------------------
- #ifndef fPostEffectCH
- #define fPostEffectCH
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <System.SysUtils.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.Scene.hpp"
- #include "GLS.SimpleNavigation.hpp"
- #include "GLS.VectorFileObjects.hpp"
- #include "GLS.SceneViewer.hpp"
- #include "GLS.FileMD2.hpp"
- #include "GLSL.PostEffects.hpp"
- //---------------------------------------------------------------------------
- class TMainForm : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TPanel *Panel1;
- TLabel *Label2;
- TComboBox *ComboBox1;
- TGLSceneViewer *GLSceneViewer1;
- TGLScene *GLScene1;
- TGLActor *GLActor1;
- TGLPostEffect *GLPostEffect1;
- TGLLightSource *GLLightSource1;
- TGLCamera *GLCamera1;
- TGLMaterialLibrary *GLMaterialLibrary1;
- TGLCadencer *GLCadencer1;
- TGLSimpleNavigation *GLSimpleNavigation1;
- void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall ComboBox1Change(TObject *Sender);
- void __fastcall GLPostEffect1CustomEffect(TObject *Sender, TGLRenderContextInfo &rci,
- TGLPostEffectBuffer &Buffer);
- private: // User declarations
- public: // User declarations
- __fastcall TMainForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TMainForm *MainForm;
- //---------------------------------------------------------------------------
- #endif
|