fMemViewer.dfm 3.5 KB

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