Make OpenGL function addresses public

This commit is contained in:
Michael Pfaff 2022-09-17 13:31:14 -04:00
parent 6511c09f7a
commit c7e9e36013
Signed by: michael
GPG Key ID: CF402C4A012AA9D4
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ public final class GLCapabilitiesGenerator {
writer.append("\t// ").append(d.getSimpleName()).append('\n');
first = false;
}
writer.append("\tlong ").append(Utils.getFunctionAddressName(d, method)).append(";\n");
writer.append("\tpublic long ").append(Utils.getFunctionAddressName(d, method)).append(";\n");
}
}