Unit1.dfm 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. object Form1: TForm1
  2. Left = 0
  3. Top = 0
  4. Caption = 'Memory Viewer'
  5. ClientHeight = 383
  6. ClientWidth = 575
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object GLSceneViewer1: TGLSceneViewer
  18. Left = 0
  19. Top = 0
  20. Width = 440
  21. Height = 383
  22. Camera = GLCamera1
  23. AfterRender = GLSceneViewer1AfterRender
  24. Buffer.BackgroundColor = clGray
  25. FieldOfView = 103.857528686523400000
  26. Align = alClient
  27. TabOrder = 0
  28. end
  29. object Panel1: TPanel
  30. Left = 440
  31. Top = 0
  32. Width = 135
  33. Height = 383
  34. Align = alRight
  35. TabOrder = 1
  36. object Label1: TLabel
  37. Left = 44
  38. Top = 8
  39. Width = 60
  40. Height = 19
  41. Caption = 'Options'
  42. Font.Charset = DEFAULT_CHARSET
  43. Font.Color = clWindowText
  44. Font.Height = -16
  45. Font.Name = 'Arial'
  46. Font.Style = [fsBold]
  47. ParentFont = False
  48. end
  49. object Label2: TLabel
  50. Left = 33
  51. Top = 48
  52. Width = 89
  53. Height = 13
  54. Caption = 'Texture framerate'
  55. end
  56. object LabelFPS: TLabel
  57. Left = 48
  58. Top = 264
  59. Width = 20
  60. Height = 14
  61. Caption = 'FPS'
  62. Font.Charset = DEFAULT_CHARSET
  63. Font.Color = clWindowText
  64. Font.Height = -11
  65. Font.Name = 'Arial'
  66. Font.Style = [fsBold]
  67. ParentFont = False
  68. end
  69. object RB1to1: TRadioButton
  70. Tag = 1
  71. Left = 55
  72. Top = 80
  73. Width = 41
  74. Height = 17
  75. Caption = '1:1'
  76. Checked = True
  77. TabOrder = 0
  78. TabStop = True
  79. OnClick = RB1to1Click
  80. end
  81. object RB1to2: TRadioButton
  82. Tag = 2
  83. Left = 55
  84. Top = 112
  85. Width = 41
  86. Height = 17
  87. Caption = '1:2'
  88. TabOrder = 1
  89. end
  90. object RB1to10: TRadioButton
  91. Tag = 10
  92. Left = 55
  93. Top = 144
  94. Width = 41
  95. Height = 17
  96. Caption = '1:10'
  97. TabOrder = 2
  98. end
  99. object CheckBox1: TCheckBox
  100. Left = 55
  101. Top = 200
  102. Width = 57
  103. Height = 17
  104. Caption = 'VSync'
  105. TabOrder = 3
  106. OnClick = CheckBox1Click
  107. end
  108. end
  109. object Timer1: TTimer
  110. OnTimer = Timer1Timer
  111. Left = 232
  112. Top = 16
  113. end
  114. object GLScene1: TGLScene
  115. Left = 24
  116. Top = 16
  117. object DummyCube1: TGLDummyCube
  118. CubeSize = 1.000000000000000000
  119. object Cube1: TGLCube
  120. Material.Texture.ImageClassName = 'TGLBlankImage'
  121. Material.Texture.Image.ColorFormat = 6408
  122. Material.Texture.MinFilter = miLinear
  123. Material.Texture.TextureMode = tmModulate
  124. Material.Texture.Disabled = False
  125. end
  126. end
  127. object GLLightSource1: TGLLightSource
  128. ConstAttenuation = 1.000000000000000000
  129. Position.Coordinates = {0000204100002041000020410000803F}
  130. SpotCutOff = 180.000000000000000000
  131. end
  132. object GLCamera1: TGLCamera
  133. DepthOfView = 100.000000000000000000
  134. FocalLength = 150.000000000000000000
  135. TargetObject = DummyCube1
  136. Position.Coordinates = {0000A040000080400000A0400000803F}
  137. end
  138. end
  139. object GLMemoryViewer1: TGLMemoryViewer
  140. Camera = GLCamera1
  141. Buffer.BackgroundColor = clRed
  142. Left = 120
  143. Top = 16
  144. end
  145. object GLCadencer1: TGLCadencer
  146. Scene = GLScene1
  147. OnProgress = GLCadencer1Progress
  148. Left = 24
  149. Top = 80
  150. end
  151. end