mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-08 07:54:05 +00:00
Fix for OpenAL debug builds.
Added alternate methods for NV_fence.
This commit is contained in:
parent
2c35779129
commit
e61f005051
2 changed files with 11 additions and 0 deletions
|
|
@ -166,7 +166,9 @@ public class Utils {
|
|||
return null;
|
||||
}
|
||||
|
||||
// DISABLED: We always generate indirect methods. (affects OpenAL only at the time of this change)
|
||||
public static boolean isMethodIndirect(boolean generate_error_checks, boolean context_specific, MethodDeclaration method) {
|
||||
/*
|
||||
for (ParameterDeclaration param : method.getParameters()) {
|
||||
if (isAddressableType(param.getType()) || getParameterAutoAnnotation(param) != null ||
|
||||
param.getAnnotation(Constant.class) != null)
|
||||
|
|
@ -176,6 +178,8 @@ public class Utils {
|
|||
method.getAnnotation(CachedResult.class) != null ||
|
||||
(generate_error_checks && method.getAnnotation(NoErrorCheck.class) == null) ||
|
||||
context_specific;
|
||||
*/
|
||||
return true;
|
||||
}
|
||||
|
||||
public static String getNativeQualifiedName(String qualified_name) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue