blob: 3420cc22c3331728cc511e7e854f068b6bfe9914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
private static final ALCProcAddressTable alcProcAddressTable;
static {
alcProcAddressTable = new ALCProcAddressTable();
if(null==alcProcAddressTable) {
throw new RuntimeException("Couldn't instantiate ALCProcAddressTable");
}
alcProcAddressTable.reset(ALImpl.alDynamicLookupHelper);
}
public static ALCProcAddressTable getALCProcAddressTable() { return alcProcAddressTable; }
|