Opentk/Source/OpenTK/Platform/X11/GlxHelper.cs

15 lines
296 B
C#
Raw Normal View History

2007-08-20 12:46:37 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Platform.X11
{
public static partial class Glx
{
internal const string Library = "libGL.so.1";
// Disable BeforeFieldInit optimization.
static Glx() { }
}
}