fTransparAdvC.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //---------------------------------------------------------------------------
  2. #ifndef fTransparAdvCH
  3. #define fTransparAdvCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLS.BaseClasses.hpp"
  10. #include "GLS.BitmapFont.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.FBORenderer.hpp"
  14. #include "GLS.GeomObjects.hpp"
  15. #include "GLS.HUDObjects.hpp"
  16. #include "GLS.Material.hpp"
  17. #include "GLS.Mesh.hpp"
  18. #include "GLS.Objects.hpp"
  19. #include "GLS.Scene.hpp"
  20. #include "GLS.SceneViewer.hpp"
  21. #include "GLS.SimpleNavigation.hpp"
  22. #include "GLS.WindowsFont.hpp"
  23. #include "GLSL.CustomShader.hpp"
  24. #include "GLSL.Shader.hpp"
  25. //---------------------------------------------------------------------------
  26. class TFormTransparAdv : public TForm
  27. {
  28. __published: // IDE-managed Components
  29. TGLSceneViewer *GLSceneViewer1;
  30. TGLScene *GLScene1;
  31. TGLCamera *GLCamera1;
  32. TGLLightSource *GLLightSource1;
  33. TGLDirectOpenGL *ClearFrameBuffer;
  34. TGLDummyCube *ObjectContainer;
  35. TGLDummyCube *Surround;
  36. TGLCylinder *GLCylinder1;
  37. TGLDisk *GLDisk1;
  38. TGLMesh *GLMesh1;
  39. TGLMesh *GLMesh2;
  40. TGLMesh *GLMesh3;
  41. TGLMesh *GLMesh4;
  42. TGLMesh *GLMesh5;
  43. TGLFBORenderer *LayeredFrameBuffer;
  44. TGLDirectOpenGL *CustomRederer;
  45. TGLHUDSprite *ScreenQuad;
  46. TGLHUDText *GLHUDText1;
  47. TGLCadencer *GLCadencer1;
  48. TGLMaterialLibrary *GLMaterialLibrary1;
  49. TGLSLShader *GLSLShader1;
  50. TGLSimpleNavigation *GLSimpleNavigation1;
  51. TGLWindowsBitmapFont *GLWindowsBitmapFont1;
  52. private: // User declarations
  53. public: // User declarations
  54. __fastcall TFormTransparAdv(TComponent* Owner);
  55. };
  56. //---------------------------------------------------------------------------
  57. extern PACKAGE TFormTransparAdv *FormTransparAdv;
  58. //---------------------------------------------------------------------------
  59. #endif