Exemplo n.º 1
0
 public static unsafe void GenSources(int n, out int sources)
 {
     fixed(int *numPtr = &sources)
     AL.GenSourcesPrivate(n, (uint *)numPtr);
 }
Exemplo n.º 2
0
 public static unsafe void GenSources(int n, out uint sources)
 {
     fixed(uint *sources1 = &sources)
     AL.GenSourcesPrivate(n, sources1);
 }