예제 #1
0
 static AL()
 {
     LibraryLoader.CreateBuilder <ALContext>(new ALLoader(null));
 }
예제 #2
0
 static AL()
 {
     LibraryLoader.CreateBuilder <AL>(ALLoader.Instance);
 }
예제 #3
0
 /// <inheritdoc cref="NativeLibraryBase" />
 protected ALContext(ref NativeApiContext ctx)
     : base(ref ctx)
 {
     LibraryLoader.CreateBuilder <ALContext>(new ALLoader(this));
 }
예제 #4
0
 static ALContext()
 {
     LibraryLoader.CreateBuilder <ALContext>(ALLoader.Instance);
 }
예제 #5
0
 static EGL()
 {
     LibraryLoader.CreateBuilder <EGL>(Ultz.SuperInvoke.Loader.LibraryLoader.GetPlatformDefaultLoader());
 }
예제 #6
0
 /// <inheritdoc cref="NativeLibraryBase" />
 protected ALContext(string path, ImplementationOptions options)
     : base(path, options)
 {
     LibraryLoader.CreateBuilder <ALContext>(new ALLoader(this));
 }