mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 02:35:42 +00:00
Silenced a few compiler warnings.
This commit is contained in:
parent
1f0c7fe466
commit
72eb674817
|
@ -105,7 +105,7 @@ namespace OpenTK.Platform.Egl
|
|||
Handle = new Compute.Handle<Workaround>(handle);
|
||||
}
|
||||
|
||||
public static readonly EGLDisplay Null;
|
||||
public static readonly EGLDisplay Null = default(EGLDisplay);
|
||||
}
|
||||
|
||||
struct EGLSurface
|
||||
|
@ -120,7 +120,7 @@ namespace OpenTK.Platform.Egl
|
|||
Handle = new Compute.Handle<Workaround>(handle);
|
||||
}
|
||||
|
||||
public static readonly EGLSurface None;
|
||||
public static readonly EGLSurface None = default(EGLSurface);
|
||||
}
|
||||
|
||||
struct EGLClientBuffer
|
||||
|
|
Loading…
Reference in a new issue