Fix for OpenAL debug builds.

Added alternate methods for NV_fence.
This commit is contained in:
Ioannis Tsakpinis 2010-05-07 17:03:36 +00:00
parent 2c35779129
commit e61f005051
2 changed files with 11 additions and 0 deletions

View file

@ -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) {