home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2002 October / Gamestar_44_2002-10_cd2.bin / patche / AOW2_Euro_Patch_V1_1.exe / AoW2.exe / 0 / RCDATA / TPERFORMANCEDLG / TPERFORMANCEDLG.txt
Text File  |  2002-07-15  |  4KB  |  196 lines

  1. object PerformanceDlg: TPerformanceDlg
  2.   Left = 522
  3.   Top = 169
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'Performance'
  7.   ClientHeight = 333
  8.   ClientWidth = 347
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = True
  16.   Position = poScreenCenter
  17.   Scaled = False
  18.   OnActivate = FormActivate
  19.   OnCreate = FormCreate
  20.   PixelsPerInch = 120
  21.   TextHeight = 13
  22.   object CloseBtn: TButton
  23.     Left = 136
  24.     Top = 297
  25.     Width = 81
  26.     Height = 30
  27.     Caption = 'Close'
  28.     Default = True
  29.     ModalResult = 1
  30.     TabOrder = 0
  31.     OnClick = CloseBtnClick
  32.   end
  33.   object Panel1: TPanel
  34.     Left = 3
  35.     Top = 3
  36.     Width = 342
  37.     Height = 286
  38.     TabOrder = 1
  39.     object GroupBox1: TGroupBox
  40.       Left = 7
  41.       Top = 79
  42.       Width = 170
  43.       Height = 58
  44.       Caption = 'Alignment'
  45.       TabOrder = 0
  46.       object AlignMnt: TComboBox
  47.         Left = 23
  48.         Top = 20
  49.         Width = 130
  50.         Height = 21
  51.         Style = csDropDownList
  52.         ItemHeight = 13
  53.         TabOrder = 0
  54.         Items.Strings = (
  55.           '0 - DWord aligned'
  56.           '1'
  57.           '2 - Word Aligned'
  58.           '3')
  59.       end
  60.     end
  61.     object GroupBox2: TGroupBox
  62.       Left = 7
  63.       Top = 148
  64.       Width = 170
  65.       Height = 125
  66.       Caption = 'Performance'
  67.       TabOrder = 1
  68.       object Label1: TLabel
  69.         Left = 6
  70.         Top = 92
  71.         Width = 23
  72.         Height = 13
  73.         Caption = 'FPS:'
  74.       end
  75.       object Label2: TLabel
  76.         Left = 6
  77.         Top = 56
  78.         Width = 46
  79.         Height = 13
  80.         Caption = 'Time [us]:'
  81.       end
  82.       object Label3: TLabel
  83.         Left = 6
  84.         Top = 20
  85.         Width = 40
  86.         Height = 13
  87.         Caption = 'RDTSC:'
  88.       end
  89.       object FPS: TEdit
  90.         Left = 72
  91.         Top = 88
  92.         Width = 89
  93.         Height = 21
  94.         ReadOnly = True
  95.         TabOrder = 0
  96.       end
  97.       object ElapsedTime: TEdit
  98.         Left = 72
  99.         Top = 52
  100.         Width = 89
  101.         Height = 21
  102.         ReadOnly = True
  103.         TabOrder = 1
  104.       end
  105.       object RDTSCEdit: TEdit
  106.         Left = 72
  107.         Top = 16
  108.         Width = 89
  109.         Height = 21
  110.         ReadOnly = True
  111.         TabOrder = 2
  112.       end
  113.     end
  114.     object GroupBox3: TGroupBox
  115.       Left = 7
  116.       Top = 7
  117.       Width = 170
  118.       Height = 58
  119.       Caption = 'Interval size'
  120.       TabOrder = 2
  121.       object IntervalSize: TComboBox
  122.         Left = 23
  123.         Top = 20
  124.         Width = 130
  125.         Height = 21
  126.         Style = csDropDownList
  127.         ItemHeight = 13
  128.         TabOrder = 0
  129.         OnChange = IntervalSizeChange
  130.         Items.Strings = (
  131.           '10'
  132.           '100'
  133.           '1000'
  134.           '10000'
  135.           '100000'
  136.           '1000000'
  137.           '10000000')
  138.       end
  139.     end
  140.     object GroupBox4: TGroupBox
  141.       Left = 190
  142.       Top = 148
  143.       Width = 137
  144.       Height = 49
  145.       Caption = 'Cache'
  146.       TabOrder = 3
  147.       object ClrCache: TCheckBox
  148.         Left = 10
  149.         Top = 20
  150.         Width = 119
  151.         Height = 11
  152.         Caption = 'Clear data cache'
  153.         TabOrder = 0
  154.       end
  155.     end
  156.     object GroupBox5: TGroupBox
  157.       Left = 190
  158.       Top = 208
  159.       Width = 137
  160.       Height = 65
  161.       Caption = 'Output Surface:'
  162.       TabOrder = 4
  163.       object PFBox: TComboBox
  164.         Left = 12
  165.         Top = 24
  166.         Width = 109
  167.         Height = 21
  168.         ItemHeight = 13
  169.         TabOrder = 0
  170.         Text = 'PFBox'
  171.         OnChange = PFBoxChange
  172.         Items.Strings = (
  173.           'pf8BitPalettized'
  174.           'pf5_5_5'
  175.           'pf5_6_5'
  176.           'pf8_8_8'
  177.           'pf8_8_8_8')
  178.       end
  179.     end
  180.     object ShowModeBox: TRadioGroup
  181.       Left = 190
  182.       Top = 8
  183.       Width = 137
  184.       Height = 129
  185.       Caption = 'Show Mode'
  186.       ItemIndex = 0
  187.       Items.Strings = (
  188.         'Default'
  189.         'Opaque'
  190.         'Transparent'
  191.         'Blended')
  192.       TabOrder = 5
  193.     end
  194.   end
  195. end
  196.