lazarus/components/opengl/lazopenglcontext.pas
mattias 16d6ef75b8 opengl: started opengl for glx
git-svn-id: trunk@26042 -
2010-06-11 13:43:41 +00:00

22 lines
402 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit lazopenglcontext;
interface
uses
OpenGLContext, GLQTContext, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('OpenGLContext', @OpenGLContext.Register);
end;
initialization
RegisterPackage('LazOpenGLContext', @Register);
end.