FmShaderUniformEditor.dfm 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. object GLShaderUniformEditor: TGLShaderUniformEditor
  2. Left = 432
  3. Top = 332
  4. BorderStyle = bsDialog
  5. Caption = 'Autofill of uniforms'
  6. ClientHeight = 344
  7. ClientWidth = 440
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poScreenCenter
  16. OnDestroy = FormDestroy
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Labe1: TLabel
  20. Left = 8
  21. Top = 5
  22. Width = 88
  23. Height = 13
  24. Caption = 'Available Uniforms'
  25. end
  26. object Label1: TLabel
  27. Left = 223
  28. Top = 5
  29. Width = 78
  30. Height = 13
  31. Caption = 'Avaiblable Value'
  32. end
  33. object Label2: TLabel
  34. Left = 223
  35. Top = 97
  36. Width = 79
  37. Height = 13
  38. Caption = 'Texture Sampler'
  39. end
  40. object Label3: TLabel
  41. Left = 223
  42. Top = 143
  43. Width = 176
  44. Height = 13
  45. Caption = 'Swizzle of texture color components '
  46. end
  47. object Label4: TLabel
  48. Left = 223
  49. Top = 51
  50. Width = 131
  51. Height = 13
  52. Caption = 'Texture Image/Attachment'
  53. end
  54. object LBUniforms: TListBox
  55. Left = 8
  56. Top = 24
  57. Width = 209
  58. Height = 313
  59. ItemHeight = 13
  60. TabOrder = 0
  61. OnClick = LBUniformsClick
  62. OnKeyPress = LBUniformsKeyPress
  63. end
  64. object AutoSetBox: TComboBox
  65. Left = 223
  66. Top = 24
  67. Width = 209
  68. Height = 21
  69. Style = csDropDownList
  70. TabOrder = 1
  71. OnChange = AutoSetBoxChange
  72. end
  73. object SamplerBox: TComboBox
  74. Left = 223
  75. Top = 116
  76. Width = 209
  77. Height = 21
  78. Style = csDropDownList
  79. Enabled = False
  80. TabOrder = 2
  81. OnChange = SamplerBoxChange
  82. end
  83. object Panel1: TPanel
  84. Left = 223
  85. Top = 162
  86. Width = 209
  87. Height = 143
  88. TabOrder = 3
  89. object RedGroup: TRadioGroup
  90. Left = 8
  91. Top = 8
  92. Width = 50
  93. Height = 129
  94. Caption = 'RED'
  95. Color = clRed
  96. Items.Strings = (
  97. 'R'
  98. 'G'
  99. 'B'
  100. 'A'
  101. '0'
  102. '1')
  103. ParentColor = False
  104. TabOrder = 0
  105. OnClick = ColorGroupClick
  106. end
  107. object GreenGroup: TRadioGroup
  108. Tag = 1
  109. Left = 55
  110. Top = 8
  111. Width = 50
  112. Height = 129
  113. Caption = 'GREEN'
  114. Color = clGreen
  115. Items.Strings = (
  116. 'R'
  117. 'G'
  118. 'B'
  119. 'A'
  120. '0'
  121. '1')
  122. ParentColor = False
  123. TabOrder = 1
  124. OnClick = ColorGroupClick
  125. end
  126. object BlueGroup: TRadioGroup
  127. Tag = 2
  128. Left = 102
  129. Top = 8
  130. Width = 50
  131. Height = 129
  132. Caption = 'BLUE'
  133. Color = clBlue
  134. Items.Strings = (
  135. 'R'
  136. 'G'
  137. 'B'
  138. 'A'
  139. '0'
  140. '1')
  141. ParentColor = False
  142. TabOrder = 2
  143. OnClick = ColorGroupClick
  144. end
  145. object AlphaGroup: TRadioGroup
  146. Tag = 3
  147. Left = 150
  148. Top = 8
  149. Width = 50
  150. Height = 129
  151. Caption = 'ALPHA'
  152. Color = clWhite
  153. Items.Strings = (
  154. 'R'
  155. 'G'
  156. 'B'
  157. 'A'
  158. '0'
  159. '1')
  160. ParentColor = False
  161. TabOrder = 3
  162. OnClick = ColorGroupClick
  163. end
  164. end
  165. object TextureBox: TComboBox
  166. Left = 223
  167. Top = 70
  168. Width = 209
  169. Height = 21
  170. Style = csDropDownList
  171. Enabled = False
  172. TabOrder = 4
  173. OnChange = TextureBoxChange
  174. end
  175. object Button1: TButton
  176. Left = 360
  177. Top = 312
  178. Width = 73
  179. Height = 25
  180. Caption = 'Done'
  181. ModalResult = 1
  182. TabOrder = 5
  183. end
  184. end