File: openglinformation.pas

package info (click to toggle)
castle-game-engine 6.4%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 194,520 kB
  • sloc: pascal: 364,585; ansic: 8,606; java: 2,851; objc: 2,601; cpp: 1,412; xml: 851; makefile: 725; sh: 563; php: 26
file content (45 lines) | stat: -rw-r--r-- 692 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
unit OpenGLInformation;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons,
  StdCtrls;

type

  { TOpenGLInformation }

  TOpenGLInformation = class(TForm)
    ButtonClose: TButton;
    MemoInfo: TMemo;
  private
    { private declarations }
  public
    class procedure Execute;
  end; 

implementation

uses CastleGLUtils;

{ TOpenGLInformation }

class procedure TOpenGLInformation.Execute;
var
  F: TOpenGLInformation;
begin
  F := TOpenGLInformation.Create(nil);
  try
    F.MemoInfo.Lines.Text := GLInformationString;
    F.ShowModal;
  finally FreeAndNil(F) end;
end;

initialization
  {$I openglinformation.lrs}

end.