mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 16:35:27 +00:00
15 lines
296 B
C#
15 lines
296 B
C#
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() { }
|
|
}
|
|
}
|