Silenced a few compiler warnings.
This commit is contained in:
parent
1f0c7fe466
commit
72eb674817
1 changed files with 2 additions and 2 deletions
|
@ -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