FmShaderUniformEditor.dfm 3.3 KB

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