4package com.jogamp.opengl.cg;
7import com.jogamp.common.os.DynamicLookupHelper;
8import com.jogamp.common.os.DynamicLibraryBundle;
9import com.jogamp.common.util.SecurityUtil;
10import com.jogamp.opengl.cg.CgDynamicLibraryBundleInfo;
11import java.security.PrivilegedAction;
12import com.jogamp.gluegen.runtime.*;
13import com.jogamp.common.os.*;
14import com.jogamp.common.nio.*;
16import com.jogamp.common.util.*;
19import java.util.HashMap;
20import java.nio.charset.Charset;
21import java.nio.charset.StandardCharsets;
218 public static final int CG_C = 0x882;
952 public static final int CG_IN = 0x1001;
1007 final long __addr_ = cgProcAddressTable._addressof_cgCreateContext;
1009 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateContext"));
1011 final ByteBuffer _res;
1012 _res = dispatch_cgCreateContext1(__addr_);
1013 if (_res ==
null)
return null;
1018 private static native ByteBuffer dispatch_cgCreateContext1(
long procAddress);
1023 final long __addr_ = cgProcAddressTable._addressof_cgDestroyContext;
1025 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgDestroyContext"));
1027 dispatch_cgDestroyContext1(((ctx ==
null) ?
null : ctx.
getBuffer()), __addr_);
1031 private static native
void dispatch_cgDestroyContext1(ByteBuffer ctx,
long procAddress);
1036 final long __addr_ = cgProcAddressTable._addressof_cgIsContext;
1038 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsContext"));
1040 return dispatch_cgIsContext1(((ctx ==
null) ?
null : ctx.
getBuffer()), __addr_);
1044 private static native
boolean dispatch_cgIsContext1(ByteBuffer ctx,
long procAddress);
1049 final long __addr_ = cgProcAddressTable._addressof_cgGetLastListing;
1051 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetLastListing"));
1053 return dispatch_cgGetLastListing1(((ctx ==
null) ?
null : ctx.
getBuffer()), __addr_);
1057 private static native String dispatch_cgGetLastListing1(ByteBuffer ctx,
long procAddress);
1063 final boolean handle_is_direct = Buffers.isDirect(handle);
1064 final long __addr_ = cgProcAddressTable._addressof_cgSetLastListing;
1066 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetLastListing"));
1068 dispatch_cgSetLastListing1(handle_is_direct ? handle : Buffers.getArray(handle), handle_is_direct ? Buffers.getDirectBufferByteOffset(handle) : Buffers.getIndirectBufferByteOffset(handle), handle_is_direct, listing, __addr_);
1073 private static native
void dispatch_cgSetLastListing1(Object handle,
int handle_byte_offset,
boolean handle_is_direct, String listing,
long procAddress);
1080 final long __addr_ = cgProcAddressTable._addressof_cgSetAutoCompile;
1082 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetAutoCompile"));
1084 dispatch_cgSetAutoCompile1(((ctx ==
null) ?
null : ctx.
getBuffer()), flag, __addr_);
1090 private static native
void dispatch_cgSetAutoCompile1(ByteBuffer ctx,
int flag,
long procAddress);
1095 final long __addr_ = cgProcAddressTable._addressof_cgGetAutoCompile;
1097 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetAutoCompile"));
1099 return dispatch_cgGetAutoCompile1(((ctx ==
null) ?
null : ctx.
getBuffer()), __addr_);
1103 private static native
int dispatch_cgGetAutoCompile1(ByteBuffer ctx,
long procAddress);
1112 final long __addr_ = cgProcAddressTable._addressof_cgCreateProgram;
1114 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateProgram"));
1116 final ByteBuffer _res;
1117 _res = dispatch_cgCreateProgram1(((ctx ==
null) ?
null : ctx.
getBuffer()), program_type, program, profile, entry, args, __addr_);
1118 if (_res ==
null)
return null;
1127 private static native ByteBuffer dispatch_cgCreateProgram1(ByteBuffer ctx,
int program_type, String program,
int profile, String entry, String[] args,
long procAddress);
1136 final long __addr_ = cgProcAddressTable._addressof_cgCreateProgramFromFile;
1138 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateProgramFromFile"));
1140 final ByteBuffer _res;
1141 _res = dispatch_cgCreateProgramFromFile1(((ctx ==
null) ?
null : ctx.
getBuffer()), program_type, program_file, profile, entry, args, __addr_);
1142 if (_res ==
null)
return null;
1151 private static native ByteBuffer dispatch_cgCreateProgramFromFile1(ByteBuffer ctx,
int program_type, String program_file,
int profile, String entry, String[] args,
long procAddress);
1156 final long __addr_ = cgProcAddressTable._addressof_cgCopyProgram;
1158 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCopyProgram"));
1160 final ByteBuffer _res;
1161 _res = dispatch_cgCopyProgram1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
1162 if (_res ==
null)
return null;
1167 private static native ByteBuffer dispatch_cgCopyProgram1(ByteBuffer program,
long procAddress);
1172 final long __addr_ = cgProcAddressTable._addressof_cgDestroyProgram;
1174 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgDestroyProgram"));
1176 dispatch_cgDestroyProgram1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
1180 private static native
void dispatch_cgDestroyProgram1(ByteBuffer program,
long procAddress);
1185 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstProgram;
1187 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstProgram"));
1189 final ByteBuffer _res;
1190 _res = dispatch_cgGetFirstProgram1(((ctx ==
null) ?
null : ctx.
getBuffer()), __addr_);
1191 if (_res ==
null)
return null;
1196 private static native ByteBuffer dispatch_cgGetFirstProgram1(ByteBuffer ctx,
long procAddress);
1201 final long __addr_ = cgProcAddressTable._addressof_cgGetNextProgram;
1203 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextProgram"));
1205 final ByteBuffer _res;
1206 _res = dispatch_cgGetNextProgram1(((current ==
null) ?
null : current.
getBuffer()), __addr_);
1207 if (_res ==
null)
return null;
1212 private static native ByteBuffer dispatch_cgGetNextProgram1(ByteBuffer current,
long procAddress);
1217 final long __addr_ = cgProcAddressTable._addressof_cgGetProgramContext;
1219 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetProgramContext"));
1221 final ByteBuffer _res;
1222 _res = dispatch_cgGetProgramContext1(((prog ==
null) ?
null : prog.
getBuffer()), __addr_);
1223 if (_res ==
null)
return null;
1228 private static native ByteBuffer dispatch_cgGetProgramContext1(ByteBuffer prog,
long procAddress);
1233 final long __addr_ = cgProcAddressTable._addressof_cgIsProgram;
1235 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsProgram"));
1237 return dispatch_cgIsProgram1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
1241 private static native
boolean dispatch_cgIsProgram1(ByteBuffer program,
long procAddress);
1246 final long __addr_ = cgProcAddressTable._addressof_cgCompileProgram;
1248 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCompileProgram"));
1250 dispatch_cgCompileProgram1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
1254 private static native
void dispatch_cgCompileProgram1(ByteBuffer program,
long procAddress);
1259 final long __addr_ = cgProcAddressTable._addressof_cgIsProgramCompiled;
1261 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsProgramCompiled"));
1263 return dispatch_cgIsProgramCompiled1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
1267 private static native
boolean dispatch_cgIsProgramCompiled1(ByteBuffer program,
long procAddress);
1274 final long __addr_ = cgProcAddressTable._addressof_cgGetProgramString;
1276 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetProgramString"));
1278 return dispatch_cgGetProgramString1(((prog ==
null) ?
null : prog.
getBuffer()), pname, __addr_);
1284 private static native String dispatch_cgGetProgramString1(ByteBuffer prog,
int pname,
long procAddress);
1289 final long __addr_ = cgProcAddressTable._addressof_cgGetProgramProfile;
1291 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetProgramProfile"));
1293 return dispatch_cgGetProgramProfile1(((prog ==
null) ?
null : prog.
getBuffer()), __addr_);
1297 private static native
int dispatch_cgGetProgramProfile1(ByteBuffer prog,
long procAddress);
1304 final long __addr_ = cgProcAddressTable._addressof_cgSetProgramProfile;
1306 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetProgramProfile"));
1308 dispatch_cgSetProgramProfile1(((prog ==
null) ?
null : prog.
getBuffer()), profile, __addr_);
1314 private static native
void dispatch_cgSetProgramProfile1(ByteBuffer prog,
int profile,
long procAddress);
1319 final long __addr_ = cgProcAddressTable._addressof_cgSetPassProgramParameters;
1321 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetPassProgramParameters"));
1323 dispatch_cgSetPassProgramParameters1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
1327 private static native
void dispatch_cgSetPassProgramParameters1(ByteBuffer arg0,
long procAddress);
1334 final long __addr_ = cgProcAddressTable._addressof_cgCreateParameter;
1336 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateParameter"));
1338 final ByteBuffer _res;
1339 _res = dispatch_cgCreateParameter1(((ctx ==
null) ?
null : ctx.
getBuffer()), type, __addr_);
1340 if (_res ==
null)
return null;
1347 private static native ByteBuffer dispatch_cgCreateParameter1(ByteBuffer ctx,
int type,
long procAddress);
1354 final long __addr_ = cgProcAddressTable._addressof_cgCreateParameterArray;
1356 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateParameterArray"));
1358 final ByteBuffer _res;
1359 _res = dispatch_cgCreateParameterArray1(((ctx ==
null) ?
null : ctx.
getBuffer()), type, length, __addr_);
1360 if (_res ==
null)
return null;
1367 private static native ByteBuffer dispatch_cgCreateParameterArray1(ByteBuffer ctx,
int type,
int length,
long procAddress);
1375 final boolean lengths_is_direct = Buffers.isDirect(lengths);
1376 final long __addr_ = cgProcAddressTable._addressof_cgCreateParameterMultiDimArray;
1378 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateParameterMultiDimArray"));
1380 final ByteBuffer _res;
1381 _res = dispatch_cgCreateParameterMultiDimArray1(((ctx ==
null) ?
null : ctx.
getBuffer()), type, dim, lengths_is_direct ? lengths : Buffers.getArray(lengths), lengths_is_direct ? Buffers.getDirectBufferByteOffset(lengths) : Buffers.getIndirectBufferByteOffset(lengths), lengths_is_direct, __addr_);
1382 if (_res ==
null)
return null;
1390 private static native ByteBuffer dispatch_cgCreateParameterMultiDimArray1(ByteBuffer ctx,
int type,
int dim, Object lengths,
int lengths_byte_offset,
boolean lengths_is_direct,
long procAddress);
1397 if(lengths !=
null && lengths.length <= lengths_offset)
1398 throw new CgException(
"array offset argument \"lengths_offset\" (" + lengths_offset +
") equals or exceeds array length (" + lengths.length +
")");
1399 final long __addr_ = cgProcAddressTable._addressof_cgCreateParameterMultiDimArray;
1401 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateParameterMultiDimArray"));
1403 final ByteBuffer _res;
1404 _res = dispatch_cgCreateParameterMultiDimArray1(((ctx ==
null) ?
null : ctx.
getBuffer()), type, dim, lengths, Buffers.SIZEOF_INT * lengths_offset,
false, __addr_);
1405 if (_res ==
null)
return null;
1412 final long __addr_ = cgProcAddressTable._addressof_cgDestroyParameter;
1414 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgDestroyParameter"));
1416 dispatch_cgDestroyParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1420 private static native
void dispatch_cgDestroyParameter1(ByteBuffer param,
long procAddress);
1425 final long __addr_ = cgProcAddressTable._addressof_cgConnectParameter;
1427 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgConnectParameter"));
1429 dispatch_cgConnectParameter1(((from ==
null) ?
null : from.
getBuffer()), ((to ==
null) ?
null : to.
getBuffer()), __addr_);
1433 private static native
void dispatch_cgConnectParameter1(ByteBuffer from, ByteBuffer to,
long procAddress);
1438 final long __addr_ = cgProcAddressTable._addressof_cgDisconnectParameter;
1440 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgDisconnectParameter"));
1442 dispatch_cgDisconnectParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1446 private static native
void dispatch_cgDisconnectParameter1(ByteBuffer param,
long procAddress);
1451 final long __addr_ = cgProcAddressTable._addressof_cgGetConnectedParameter;
1453 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetConnectedParameter"));
1455 final ByteBuffer _res;
1456 _res = dispatch_cgGetConnectedParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1457 if (_res ==
null)
return null;
1462 private static native ByteBuffer dispatch_cgGetConnectedParameter1(ByteBuffer param,
long procAddress);
1467 final long __addr_ = cgProcAddressTable._addressof_cgGetNumConnectedToParameters;
1469 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNumConnectedToParameters"));
1471 return dispatch_cgGetNumConnectedToParameters1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1475 private static native
int dispatch_cgGetNumConnectedToParameters1(ByteBuffer param,
long procAddress);
1480 final long __addr_ = cgProcAddressTable._addressof_cgGetConnectedToParameter;
1482 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetConnectedToParameter"));
1484 final ByteBuffer _res;
1485 _res = dispatch_cgGetConnectedToParameter1(((param ==
null) ?
null : param.
getBuffer()), index, __addr_);
1486 if (_res ==
null)
return null;
1491 private static native ByteBuffer dispatch_cgGetConnectedToParameter1(ByteBuffer param,
int index,
long procAddress);
1496 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedParameter;
1498 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedParameter"));
1500 final ByteBuffer _res;
1501 _res = dispatch_cgGetNamedParameter1(((prog ==
null) ?
null : prog.
getBuffer()), name, __addr_);
1502 if (_res ==
null)
return null;
1507 private static native ByteBuffer dispatch_cgGetNamedParameter1(ByteBuffer prog, String name,
long procAddress);
1514 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedProgramParameter;
1516 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedProgramParameter"));
1518 final ByteBuffer _res;
1519 _res = dispatch_cgGetNamedProgramParameter1(((prog ==
null) ?
null : prog.
getBuffer()), name_space, name, __addr_);
1520 if (_res ==
null)
return null;
1527 private static native ByteBuffer dispatch_cgGetNamedProgramParameter1(ByteBuffer prog,
int name_space, String name,
long procAddress);
1534 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstParameter;
1536 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstParameter"));
1538 final ByteBuffer _res;
1539 _res = dispatch_cgGetFirstParameter1(((prog ==
null) ?
null : prog.
getBuffer()), name_space, __addr_);
1540 if (_res ==
null)
return null;
1547 private static native ByteBuffer dispatch_cgGetFirstParameter1(ByteBuffer prog,
int name_space,
long procAddress);
1552 final long __addr_ = cgProcAddressTable._addressof_cgGetNextParameter;
1554 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextParameter"));
1556 final ByteBuffer _res;
1557 _res = dispatch_cgGetNextParameter1(((current ==
null) ?
null : current.
getBuffer()), __addr_);
1558 if (_res ==
null)
return null;
1563 private static native ByteBuffer dispatch_cgGetNextParameter1(ByteBuffer current,
long procAddress);
1570 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstLeafParameter;
1572 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstLeafParameter"));
1574 final ByteBuffer _res;
1575 _res = dispatch_cgGetFirstLeafParameter1(((prog ==
null) ?
null : prog.
getBuffer()), name_space, __addr_);
1576 if (_res ==
null)
return null;
1583 private static native ByteBuffer dispatch_cgGetFirstLeafParameter1(ByteBuffer prog,
int name_space,
long procAddress);
1588 final long __addr_ = cgProcAddressTable._addressof_cgGetNextLeafParameter;
1590 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextLeafParameter"));
1592 final ByteBuffer _res;
1593 _res = dispatch_cgGetNextLeafParameter1(((current ==
null) ?
null : current.
getBuffer()), __addr_);
1594 if (_res ==
null)
return null;
1599 private static native ByteBuffer dispatch_cgGetNextLeafParameter1(ByteBuffer current,
long procAddress);
1604 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstStructParameter;
1606 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstStructParameter"));
1608 final ByteBuffer _res;
1609 _res = dispatch_cgGetFirstStructParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1610 if (_res ==
null)
return null;
1615 private static native ByteBuffer dispatch_cgGetFirstStructParameter1(ByteBuffer param,
long procAddress);
1620 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedStructParameter;
1622 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedStructParameter"));
1624 final ByteBuffer _res;
1625 _res = dispatch_cgGetNamedStructParameter1(((param ==
null) ?
null : param.
getBuffer()), name, __addr_);
1626 if (_res ==
null)
return null;
1631 private static native ByteBuffer dispatch_cgGetNamedStructParameter1(ByteBuffer param, String name,
long procAddress);
1636 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstDependentParameter;
1638 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstDependentParameter"));
1640 final ByteBuffer _res;
1641 _res = dispatch_cgGetFirstDependentParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1642 if (_res ==
null)
return null;
1647 private static native ByteBuffer dispatch_cgGetFirstDependentParameter1(ByteBuffer param,
long procAddress);
1652 final long __addr_ = cgProcAddressTable._addressof_cgGetArrayParameter;
1654 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetArrayParameter"));
1656 final ByteBuffer _res;
1657 _res = dispatch_cgGetArrayParameter1(((aparam ==
null) ?
null : aparam.
getBuffer()), index, __addr_);
1658 if (_res ==
null)
return null;
1663 private static native ByteBuffer dispatch_cgGetArrayParameter1(ByteBuffer aparam,
int index,
long procAddress);
1668 final long __addr_ = cgProcAddressTable._addressof_cgGetArrayDimension;
1670 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetArrayDimension"));
1672 return dispatch_cgGetArrayDimension1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1676 private static native
int dispatch_cgGetArrayDimension1(ByteBuffer param,
long procAddress);
1681 final long __addr_ = cgProcAddressTable._addressof_cgGetArrayType;
1683 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetArrayType"));
1685 return dispatch_cgGetArrayType1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1689 private static native
int dispatch_cgGetArrayType1(ByteBuffer param,
long procAddress);
1694 final long __addr_ = cgProcAddressTable._addressof_cgGetArraySize;
1696 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetArraySize"));
1698 return dispatch_cgGetArraySize1(((param ==
null) ?
null : param.
getBuffer()), dimension, __addr_);
1702 private static native
int dispatch_cgGetArraySize1(ByteBuffer param,
int dimension,
long procAddress);
1707 final long __addr_ = cgProcAddressTable._addressof_cgGetArrayTotalSize;
1709 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetArrayTotalSize"));
1711 return dispatch_cgGetArrayTotalSize1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1715 private static native
int dispatch_cgGetArrayTotalSize1(ByteBuffer param,
long procAddress);
1720 final long __addr_ = cgProcAddressTable._addressof_cgSetArraySize;
1722 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetArraySize"));
1724 dispatch_cgSetArraySize1(((param ==
null) ?
null : param.
getBuffer()), size, __addr_);
1728 private static native
void dispatch_cgSetArraySize1(ByteBuffer param,
int size,
long procAddress);
1734 final boolean sizes_is_direct = Buffers.isDirect(sizes);
1735 final long __addr_ = cgProcAddressTable._addressof_cgSetMultiDimArraySize;
1737 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMultiDimArraySize"));
1739 dispatch_cgSetMultiDimArraySize1(((param ==
null) ?
null : param.
getBuffer()), sizes_is_direct ? sizes : Buffers.getArray(sizes), sizes_is_direct ? Buffers.getDirectBufferByteOffset(sizes) : Buffers.getIndirectBufferByteOffset(sizes), sizes_is_direct, __addr_);
1744 private static native
void dispatch_cgSetMultiDimArraySize1(ByteBuffer param, Object sizes,
int sizes_byte_offset,
boolean sizes_is_direct,
long procAddress);
1749 if(sizes !=
null && sizes.length <= sizes_offset)
1750 throw new CgException(
"array offset argument \"sizes_offset\" (" + sizes_offset +
") equals or exceeds array length (" + sizes.length +
")");
1751 final long __addr_ = cgProcAddressTable._addressof_cgSetMultiDimArraySize;
1753 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMultiDimArraySize"));
1755 dispatch_cgSetMultiDimArraySize1(((param ==
null) ?
null : param.
getBuffer()), sizes, Buffers.SIZEOF_INT * sizes_offset,
false, __addr_);
1761 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterProgram;
1763 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterProgram"));
1765 final ByteBuffer _res;
1766 _res = dispatch_cgGetParameterProgram1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1767 if (_res ==
null)
return null;
1772 private static native ByteBuffer dispatch_cgGetParameterProgram1(ByteBuffer param,
long procAddress);
1777 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterContext;
1779 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterContext"));
1781 final ByteBuffer _res;
1782 _res = dispatch_cgGetParameterContext1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1783 if (_res ==
null)
return null;
1788 private static native ByteBuffer dispatch_cgGetParameterContext1(ByteBuffer param,
long procAddress);
1793 final long __addr_ = cgProcAddressTable._addressof_cgIsParameter;
1795 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsParameter"));
1797 return dispatch_cgIsParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1801 private static native
boolean dispatch_cgIsParameter1(ByteBuffer param,
long procAddress);
1806 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterName;
1808 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterName"));
1810 return dispatch_cgGetParameterName1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1814 private static native String dispatch_cgGetParameterName1(ByteBuffer param,
long procAddress);
1819 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterType;
1821 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterType"));
1823 return dispatch_cgGetParameterType1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1827 private static native
int dispatch_cgGetParameterType1(ByteBuffer param,
long procAddress);
1832 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterBaseType;
1834 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterBaseType"));
1836 return dispatch_cgGetParameterBaseType1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1840 private static native
int dispatch_cgGetParameterBaseType1(ByteBuffer param,
long procAddress);
1845 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterClass;
1847 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterClass"));
1849 return dispatch_cgGetParameterClass1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1853 private static native
int dispatch_cgGetParameterClass1(ByteBuffer param,
long procAddress);
1858 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterRows;
1860 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterRows"));
1862 return dispatch_cgGetParameterRows1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1866 private static native
int dispatch_cgGetParameterRows1(ByteBuffer param,
long procAddress);
1871 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterColumns;
1873 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterColumns"));
1875 return dispatch_cgGetParameterColumns1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1879 private static native
int dispatch_cgGetParameterColumns1(ByteBuffer param,
long procAddress);
1884 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterNamedType;
1886 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterNamedType"));
1888 return dispatch_cgGetParameterNamedType1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1892 private static native
int dispatch_cgGetParameterNamedType1(ByteBuffer param,
long procAddress);
1897 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterSemantic;
1899 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterSemantic"));
1901 return dispatch_cgGetParameterSemantic1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1905 private static native String dispatch_cgGetParameterSemantic1(ByteBuffer param,
long procAddress);
1910 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterResource;
1912 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterResource"));
1914 return dispatch_cgGetParameterResource1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1918 private static native
int dispatch_cgGetParameterResource1(ByteBuffer param,
long procAddress);
1923 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterBaseResource;
1925 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterBaseResource"));
1927 return dispatch_cgGetParameterBaseResource1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1931 private static native
int dispatch_cgGetParameterBaseResource1(ByteBuffer param,
long procAddress);
1936 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterResourceIndex;
1938 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterResourceIndex"));
1940 return dispatch_cgGetParameterResourceIndex1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1944 private static native
long dispatch_cgGetParameterResourceIndex1(ByteBuffer param,
long procAddress);
1949 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterVariability;
1951 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterVariability"));
1953 return dispatch_cgGetParameterVariability1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1957 private static native
int dispatch_cgGetParameterVariability1(ByteBuffer param,
long procAddress);
1962 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterDirection;
1964 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterDirection"));
1966 return dispatch_cgGetParameterDirection1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1970 private static native
int dispatch_cgGetParameterDirection1(ByteBuffer param,
long procAddress);
1975 final long __addr_ = cgProcAddressTable._addressof_cgIsParameterReferenced;
1977 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsParameterReferenced"));
1979 return dispatch_cgIsParameterReferenced1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
1983 private static native
boolean dispatch_cgIsParameterReferenced1(ByteBuffer param,
long procAddress);
1989 final boolean handle_is_direct = Buffers.isDirect(handle);
1990 final long __addr_ = cgProcAddressTable._addressof_cgIsParameterUsed;
1992 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsParameterUsed"));
1994 return dispatch_cgIsParameterUsed1(((param ==
null) ?
null : param.
getBuffer()), handle_is_direct ? handle : Buffers.getArray(handle), handle_is_direct ? Buffers.getDirectBufferByteOffset(handle) : Buffers.getIndirectBufferByteOffset(handle), handle_is_direct, __addr_);
1999 private static native
boolean dispatch_cgIsParameterUsed1(ByteBuffer param, Object handle,
int handle_byte_offset,
boolean handle_is_direct,
long procAddress);
2005 final boolean vals_is_direct = Buffers.isDirect(vals);
2006 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuedr;
2008 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuedr"));
2010 dispatch_cgSetParameterValuedr1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2015 private static native
void dispatch_cgSetParameterValuedr1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2020 if(vals !=
null && vals.length <= vals_offset)
2021 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2022 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuedr;
2024 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuedr"));
2026 dispatch_cgSetParameterValuedr1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_DOUBLE * vals_offset,
false, __addr_);
2033 final boolean vals_is_direct = Buffers.isDirect(vals);
2034 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuedc;
2036 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuedc"));
2038 dispatch_cgSetParameterValuedc1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2043 private static native
void dispatch_cgSetParameterValuedc1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2048 if(vals !=
null && vals.length <= vals_offset)
2049 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2050 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuedc;
2052 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuedc"));
2054 dispatch_cgSetParameterValuedc1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_DOUBLE * vals_offset,
false, __addr_);
2061 final boolean vals_is_direct = Buffers.isDirect(vals);
2062 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuefr;
2064 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuefr"));
2066 dispatch_cgSetParameterValuefr1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2071 private static native
void dispatch_cgSetParameterValuefr1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2076 if(vals !=
null && vals.length <= vals_offset)
2077 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2078 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuefr;
2080 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuefr"));
2082 dispatch_cgSetParameterValuefr1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_FLOAT * vals_offset,
false, __addr_);
2089 final boolean vals_is_direct = Buffers.isDirect(vals);
2090 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuefc;
2092 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuefc"));
2094 dispatch_cgSetParameterValuefc1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2099 private static native
void dispatch_cgSetParameterValuefc1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2104 if(vals !=
null && vals.length <= vals_offset)
2105 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2106 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValuefc;
2108 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValuefc"));
2110 dispatch_cgSetParameterValuefc1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_FLOAT * vals_offset,
false, __addr_);
2117 final boolean vals_is_direct = Buffers.isDirect(vals);
2118 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValueir;
2120 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValueir"));
2122 dispatch_cgSetParameterValueir1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2127 private static native
void dispatch_cgSetParameterValueir1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2132 if(vals !=
null && vals.length <= vals_offset)
2133 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2134 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValueir;
2136 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValueir"));
2138 dispatch_cgSetParameterValueir1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_INT * vals_offset,
false, __addr_);
2145 final boolean vals_is_direct = Buffers.isDirect(vals);
2146 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValueic;
2148 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValueic"));
2150 dispatch_cgSetParameterValueic1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2155 private static native
void dispatch_cgSetParameterValueic1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2160 if(vals !=
null && vals.length <= vals_offset)
2161 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2162 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterValueic;
2164 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterValueic"));
2166 dispatch_cgSetParameterValueic1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_INT * vals_offset,
false, __addr_);
2173 final boolean vals_is_direct = Buffers.isDirect(vals);
2174 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuedr;
2176 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuedr"));
2178 return dispatch_cgGetParameterValuedr1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2183 private static native
int dispatch_cgGetParameterValuedr1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2188 if(vals !=
null && vals.length <= vals_offset)
2189 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2190 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuedr;
2192 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuedr"));
2194 return dispatch_cgGetParameterValuedr1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_DOUBLE * vals_offset,
false, __addr_);
2201 final boolean vals_is_direct = Buffers.isDirect(vals);
2202 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuedc;
2204 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuedc"));
2206 return dispatch_cgGetParameterValuedc1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2211 private static native
int dispatch_cgGetParameterValuedc1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2216 if(vals !=
null && vals.length <= vals_offset)
2217 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2218 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuedc;
2220 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuedc"));
2222 return dispatch_cgGetParameterValuedc1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_DOUBLE * vals_offset,
false, __addr_);
2229 final boolean vals_is_direct = Buffers.isDirect(vals);
2230 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuefr;
2232 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuefr"));
2234 return dispatch_cgGetParameterValuefr1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2239 private static native
int dispatch_cgGetParameterValuefr1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2244 if(vals !=
null && vals.length <= vals_offset)
2245 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2246 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuefr;
2248 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuefr"));
2250 return dispatch_cgGetParameterValuefr1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_FLOAT * vals_offset,
false, __addr_);
2257 final boolean vals_is_direct = Buffers.isDirect(vals);
2258 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuefc;
2260 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuefc"));
2262 return dispatch_cgGetParameterValuefc1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2267 private static native
int dispatch_cgGetParameterValuefc1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2272 if(vals !=
null && vals.length <= vals_offset)
2273 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2274 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValuefc;
2276 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValuefc"));
2278 return dispatch_cgGetParameterValuefc1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_FLOAT * vals_offset,
false, __addr_);
2285 final boolean vals_is_direct = Buffers.isDirect(vals);
2286 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValueir;
2288 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValueir"));
2290 return dispatch_cgGetParameterValueir1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2295 private static native
int dispatch_cgGetParameterValueir1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2300 if(vals !=
null && vals.length <= vals_offset)
2301 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2302 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValueir;
2304 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValueir"));
2306 return dispatch_cgGetParameterValueir1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_INT * vals_offset,
false, __addr_);
2313 final boolean vals_is_direct = Buffers.isDirect(vals);
2314 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValueic;
2316 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValueic"));
2318 return dispatch_cgGetParameterValueic1(((param ==
null) ?
null : param.
getBuffer()), n, vals_is_direct ? vals : Buffers.getArray(vals), vals_is_direct ? Buffers.getDirectBufferByteOffset(vals) : Buffers.getIndirectBufferByteOffset(vals), vals_is_direct, __addr_);
2323 private static native
int dispatch_cgGetParameterValueic1(ByteBuffer param,
int n, Object vals,
int vals_byte_offset,
boolean vals_is_direct,
long procAddress);
2328 if(vals !=
null && vals.length <= vals_offset)
2329 throw new CgException(
"array offset argument \"vals_offset\" (" + vals_offset +
") equals or exceeds array length (" + vals.length +
")");
2330 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterValueic;
2332 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterValueic"));
2334 return dispatch_cgGetParameterValueic1(((param ==
null) ?
null : param.
getBuffer()), n, vals, Buffers.SIZEOF_INT * vals_offset,
false, __addr_);
2340 final long __addr_ = cgProcAddressTable._addressof_cgGetStringParameterValue;
2342 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStringParameterValue"));
2344 return dispatch_cgGetStringParameterValue1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
2348 private static native String dispatch_cgGetStringParameterValue1(ByteBuffer param,
long procAddress);
2353 final long __addr_ = cgProcAddressTable._addressof_cgSetStringParameterValue;
2355 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetStringParameterValue"));
2357 dispatch_cgSetStringParameterValue1(((param ==
null) ?
null : param.
getBuffer()), str, __addr_);
2361 private static native
void dispatch_cgSetStringParameterValue1(ByteBuffer param, String str,
long procAddress);
2366 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterOrdinalNumber;
2368 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterOrdinalNumber"));
2370 return dispatch_cgGetParameterOrdinalNumber1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
2374 private static native
int dispatch_cgGetParameterOrdinalNumber1(ByteBuffer param,
long procAddress);
2379 final long __addr_ = cgProcAddressTable._addressof_cgIsParameterGlobal;
2381 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsParameterGlobal"));
2383 return dispatch_cgIsParameterGlobal1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
2387 private static native
boolean dispatch_cgIsParameterGlobal1(ByteBuffer param,
long procAddress);
2392 final long __addr_ = cgProcAddressTable._addressof_cgGetParameterIndex;
2394 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParameterIndex"));
2396 return dispatch_cgGetParameterIndex1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
2400 private static native
int dispatch_cgGetParameterIndex1(ByteBuffer param,
long procAddress);
2407 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterVariability;
2409 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterVariability"));
2411 dispatch_cgSetParameterVariability1(((param ==
null) ?
null : param.
getBuffer()), vary, __addr_);
2417 private static native
void dispatch_cgSetParameterVariability1(ByteBuffer param,
int vary,
long procAddress);
2422 final long __addr_ = cgProcAddressTable._addressof_cgSetParameterSemantic;
2424 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameterSemantic"));
2426 dispatch_cgSetParameterSemantic1(((param ==
null) ?
null : param.
getBuffer()), semantic, __addr_);
2430 private static native
void dispatch_cgSetParameterSemantic1(ByteBuffer param, String semantic,
long procAddress);
2435 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1f;
2437 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1f"));
2439 dispatch_cgSetParameter1f1(((param ==
null) ?
null : param.
getBuffer()), x, __addr_);
2443 private static native
void dispatch_cgSetParameter1f1(ByteBuffer param,
float x,
long procAddress);
2448 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2f;
2450 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2f"));
2452 dispatch_cgSetParameter2f1(((param ==
null) ?
null : param.
getBuffer()), x, y, __addr_);
2456 private static native
void dispatch_cgSetParameter2f1(ByteBuffer param,
float x,
float y,
long procAddress);
2461 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3f;
2463 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3f"));
2465 dispatch_cgSetParameter3f1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, __addr_);
2469 private static native
void dispatch_cgSetParameter3f1(ByteBuffer param,
float x,
float y,
float z,
long procAddress);
2474 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4f;
2476 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4f"));
2478 dispatch_cgSetParameter4f1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, w, __addr_);
2482 private static native
void dispatch_cgSetParameter4f1(ByteBuffer param,
float x,
float y,
float z,
float w,
long procAddress);
2487 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1d;
2489 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1d"));
2491 dispatch_cgSetParameter1d1(((param ==
null) ?
null : param.
getBuffer()), x, __addr_);
2495 private static native
void dispatch_cgSetParameter1d1(ByteBuffer param,
double x,
long procAddress);
2500 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2d;
2502 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2d"));
2504 dispatch_cgSetParameter2d1(((param ==
null) ?
null : param.
getBuffer()), x, y, __addr_);
2508 private static native
void dispatch_cgSetParameter2d1(ByteBuffer param,
double x,
double y,
long procAddress);
2513 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3d;
2515 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3d"));
2517 dispatch_cgSetParameter3d1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, __addr_);
2521 private static native
void dispatch_cgSetParameter3d1(ByteBuffer param,
double x,
double y,
double z,
long procAddress);
2526 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4d;
2528 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4d"));
2530 dispatch_cgSetParameter4d1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, w, __addr_);
2534 private static native
void dispatch_cgSetParameter4d1(ByteBuffer param,
double x,
double y,
double z,
double w,
long procAddress);
2539 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1i;
2541 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1i"));
2543 dispatch_cgSetParameter1i1(((param ==
null) ?
null : param.
getBuffer()), x, __addr_);
2547 private static native
void dispatch_cgSetParameter1i1(ByteBuffer param,
int x,
long procAddress);
2552 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2i;
2554 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2i"));
2556 dispatch_cgSetParameter2i1(((param ==
null) ?
null : param.
getBuffer()), x, y, __addr_);
2560 private static native
void dispatch_cgSetParameter2i1(ByteBuffer param,
int x,
int y,
long procAddress);
2565 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3i;
2567 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3i"));
2569 dispatch_cgSetParameter3i1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, __addr_);
2573 private static native
void dispatch_cgSetParameter3i1(ByteBuffer param,
int x,
int y,
int z,
long procAddress);
2578 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4i;
2580 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4i"));
2582 dispatch_cgSetParameter4i1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, w, __addr_);
2586 private static native
void dispatch_cgSetParameter4i1(ByteBuffer param,
int x,
int y,
int z,
int w,
long procAddress);
2592 final boolean v_is_direct = Buffers.isDirect(v);
2593 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1iv;
2595 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1iv"));
2597 dispatch_cgSetParameter1iv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2602 private static native
void dispatch_cgSetParameter1iv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2607 if(v !=
null && v.length <= v_offset)
2608 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2609 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1iv;
2611 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1iv"));
2613 dispatch_cgSetParameter1iv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_INT * v_offset,
false, __addr_);
2620 final boolean v_is_direct = Buffers.isDirect(v);
2621 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2iv;
2623 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2iv"));
2625 dispatch_cgSetParameter2iv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2630 private static native
void dispatch_cgSetParameter2iv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2635 if(v !=
null && v.length <= v_offset)
2636 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2637 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2iv;
2639 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2iv"));
2641 dispatch_cgSetParameter2iv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_INT * v_offset,
false, __addr_);
2648 final boolean v_is_direct = Buffers.isDirect(v);
2649 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3iv;
2651 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3iv"));
2653 dispatch_cgSetParameter3iv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2658 private static native
void dispatch_cgSetParameter3iv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2663 if(v !=
null && v.length <= v_offset)
2664 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2665 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3iv;
2667 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3iv"));
2669 dispatch_cgSetParameter3iv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_INT * v_offset,
false, __addr_);
2676 final boolean v_is_direct = Buffers.isDirect(v);
2677 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4iv;
2679 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4iv"));
2681 dispatch_cgSetParameter4iv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2686 private static native
void dispatch_cgSetParameter4iv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2691 if(v !=
null && v.length <= v_offset)
2692 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2693 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4iv;
2695 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4iv"));
2697 dispatch_cgSetParameter4iv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_INT * v_offset,
false, __addr_);
2704 final boolean v_is_direct = Buffers.isDirect(v);
2705 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1fv;
2707 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1fv"));
2709 dispatch_cgSetParameter1fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2714 private static native
void dispatch_cgSetParameter1fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2719 if(v !=
null && v.length <= v_offset)
2720 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2721 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1fv;
2723 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1fv"));
2725 dispatch_cgSetParameter1fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
2732 final boolean v_is_direct = Buffers.isDirect(v);
2733 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2fv;
2735 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2fv"));
2737 dispatch_cgSetParameter2fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2742 private static native
void dispatch_cgSetParameter2fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2747 if(v !=
null && v.length <= v_offset)
2748 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2749 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2fv;
2751 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2fv"));
2753 dispatch_cgSetParameter2fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
2760 final boolean v_is_direct = Buffers.isDirect(v);
2761 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3fv;
2763 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3fv"));
2765 dispatch_cgSetParameter3fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2770 private static native
void dispatch_cgSetParameter3fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2775 if(v !=
null && v.length <= v_offset)
2776 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2777 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3fv;
2779 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3fv"));
2781 dispatch_cgSetParameter3fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
2788 final boolean v_is_direct = Buffers.isDirect(v);
2789 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4fv;
2791 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4fv"));
2793 dispatch_cgSetParameter4fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2798 private static native
void dispatch_cgSetParameter4fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2803 if(v !=
null && v.length <= v_offset)
2804 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2805 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4fv;
2807 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4fv"));
2809 dispatch_cgSetParameter4fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
2816 final boolean v_is_direct = Buffers.isDirect(v);
2817 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1dv;
2819 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1dv"));
2821 dispatch_cgSetParameter1dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2826 private static native
void dispatch_cgSetParameter1dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2831 if(v !=
null && v.length <= v_offset)
2832 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2833 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter1dv;
2835 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter1dv"));
2837 dispatch_cgSetParameter1dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
2844 final boolean v_is_direct = Buffers.isDirect(v);
2845 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2dv;
2847 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2dv"));
2849 dispatch_cgSetParameter2dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2854 private static native
void dispatch_cgSetParameter2dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2859 if(v !=
null && v.length <= v_offset)
2860 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2861 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter2dv;
2863 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter2dv"));
2865 dispatch_cgSetParameter2dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
2872 final boolean v_is_direct = Buffers.isDirect(v);
2873 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3dv;
2875 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3dv"));
2877 dispatch_cgSetParameter3dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2882 private static native
void dispatch_cgSetParameter3dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2887 if(v !=
null && v.length <= v_offset)
2888 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2889 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter3dv;
2891 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter3dv"));
2893 dispatch_cgSetParameter3dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
2900 final boolean v_is_direct = Buffers.isDirect(v);
2901 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4dv;
2903 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4dv"));
2905 dispatch_cgSetParameter4dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
2910 private static native
void dispatch_cgSetParameter4dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
2915 if(v !=
null && v.length <= v_offset)
2916 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
2917 final long __addr_ = cgProcAddressTable._addressof_cgSetParameter4dv;
2919 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetParameter4dv"));
2921 dispatch_cgSetParameter4dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
2928 final boolean matrix_is_direct = Buffers.isDirect(matrix);
2929 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterir;
2931 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterir"));
2933 dispatch_cgSetMatrixParameterir1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
2938 private static native
void dispatch_cgSetMatrixParameterir1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
2943 if(matrix !=
null && matrix.length <= matrix_offset)
2944 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
2945 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterir;
2947 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterir"));
2949 dispatch_cgSetMatrixParameterir1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_INT * matrix_offset,
false, __addr_);
2956 final boolean matrix_is_direct = Buffers.isDirect(matrix);
2957 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterdr;
2959 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterdr"));
2961 dispatch_cgSetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
2966 private static native
void dispatch_cgSetMatrixParameterdr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
2971 if(matrix !=
null && matrix.length <= matrix_offset)
2972 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
2973 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterdr;
2975 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterdr"));
2977 dispatch_cgSetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
2984 final boolean matrix_is_direct = Buffers.isDirect(matrix);
2985 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterfr;
2987 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterfr"));
2989 dispatch_cgSetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
2994 private static native
void dispatch_cgSetMatrixParameterfr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
2999 if(matrix !=
null && matrix.length <= matrix_offset)
3000 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3001 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterfr;
3003 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterfr"));
3005 dispatch_cgSetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
3012 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3013 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameteric;
3015 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameteric"));
3017 dispatch_cgSetMatrixParameteric1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3022 private static native
void dispatch_cgSetMatrixParameteric1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3027 if(matrix !=
null && matrix.length <= matrix_offset)
3028 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3029 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameteric;
3031 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameteric"));
3033 dispatch_cgSetMatrixParameteric1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_INT * matrix_offset,
false, __addr_);
3040 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3041 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterdc;
3043 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterdc"));
3045 dispatch_cgSetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3050 private static native
void dispatch_cgSetMatrixParameterdc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3055 if(matrix !=
null && matrix.length <= matrix_offset)
3056 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3057 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterdc;
3059 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterdc"));
3061 dispatch_cgSetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
3068 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3069 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterfc;
3071 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterfc"));
3073 dispatch_cgSetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3078 private static native
void dispatch_cgSetMatrixParameterfc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3083 if(matrix !=
null && matrix.length <= matrix_offset)
3084 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3085 final long __addr_ = cgProcAddressTable._addressof_cgSetMatrixParameterfc;
3087 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetMatrixParameterfc"));
3089 dispatch_cgSetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
3096 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3097 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterir;
3099 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterir"));
3101 dispatch_cgGetMatrixParameterir1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3106 private static native
void dispatch_cgGetMatrixParameterir1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3111 if(matrix !=
null && matrix.length <= matrix_offset)
3112 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3113 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterir;
3115 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterir"));
3117 dispatch_cgGetMatrixParameterir1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_INT * matrix_offset,
false, __addr_);
3124 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3125 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterdr;
3127 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterdr"));
3129 dispatch_cgGetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3134 private static native
void dispatch_cgGetMatrixParameterdr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3139 if(matrix !=
null && matrix.length <= matrix_offset)
3140 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3141 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterdr;
3143 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterdr"));
3145 dispatch_cgGetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
3152 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3153 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterfr;
3155 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterfr"));
3157 dispatch_cgGetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3162 private static native
void dispatch_cgGetMatrixParameterfr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3167 if(matrix !=
null && matrix.length <= matrix_offset)
3168 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3169 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterfr;
3171 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterfr"));
3173 dispatch_cgGetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
3180 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3181 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameteric;
3183 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameteric"));
3185 dispatch_cgGetMatrixParameteric1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3190 private static native
void dispatch_cgGetMatrixParameteric1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3195 if(matrix !=
null && matrix.length <= matrix_offset)
3196 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3197 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameteric;
3199 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameteric"));
3201 dispatch_cgGetMatrixParameteric1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_INT * matrix_offset,
false, __addr_);
3208 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3209 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterdc;
3211 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterdc"));
3213 dispatch_cgGetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3218 private static native
void dispatch_cgGetMatrixParameterdc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3223 if(matrix !=
null && matrix.length <= matrix_offset)
3224 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3225 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterdc;
3227 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterdc"));
3229 dispatch_cgGetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
3236 final boolean matrix_is_direct = Buffers.isDirect(matrix);
3237 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterfc;
3239 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterfc"));
3241 dispatch_cgGetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
3246 private static native
void dispatch_cgGetMatrixParameterfc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
3251 if(matrix !=
null && matrix.length <= matrix_offset)
3252 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
3253 final long __addr_ = cgProcAddressTable._addressof_cgGetMatrixParameterfc;
3255 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetMatrixParameterfc"));
3257 dispatch_cgGetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
3265 final long __addr_ = cgProcAddressTable._addressof_cgGetTypeString;
3267 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetTypeString"));
3269 return dispatch_cgGetTypeString1(type, __addr_);
3275 static private native String dispatch_cgGetTypeString1(
int type,
long procAddress);
3280 final long __addr_ = cgProcAddressTable._addressof_cgGetType;
3282 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetType"));
3284 return dispatch_cgGetType1(type_string, __addr_);
3288 static private native
int dispatch_cgGetType1(String type_string,
long procAddress);
3294 final boolean handle_is_direct = Buffers.isDirect(handle);
3295 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedUserType;
3297 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedUserType"));
3299 return dispatch_cgGetNamedUserType1(handle_is_direct ? handle : Buffers.getArray(handle), handle_is_direct ? Buffers.getDirectBufferByteOffset(handle) : Buffers.getIndirectBufferByteOffset(handle), handle_is_direct, name, __addr_);
3304 private static native
int dispatch_cgGetNamedUserType1(Object handle,
int handle_byte_offset,
boolean handle_is_direct, String name,
long procAddress);
3310 final boolean handle_is_direct = Buffers.isDirect(handle);
3311 final long __addr_ = cgProcAddressTable._addressof_cgGetNumUserTypes;
3313 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNumUserTypes"));
3315 return dispatch_cgGetNumUserTypes1(handle_is_direct ? handle : Buffers.getArray(handle), handle_is_direct ? Buffers.getDirectBufferByteOffset(handle) : Buffers.getIndirectBufferByteOffset(handle), handle_is_direct, __addr_);
3320 private static native
int dispatch_cgGetNumUserTypes1(Object handle,
int handle_byte_offset,
boolean handle_is_direct,
long procAddress);
3326 final boolean handle_is_direct = Buffers.isDirect(handle);
3327 final long __addr_ = cgProcAddressTable._addressof_cgGetUserType;
3329 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetUserType"));
3331 return dispatch_cgGetUserType1(handle_is_direct ? handle : Buffers.getArray(handle), handle_is_direct ? Buffers.getDirectBufferByteOffset(handle) : Buffers.getIndirectBufferByteOffset(handle), handle_is_direct, index, __addr_);
3336 private static native
int dispatch_cgGetUserType1(Object handle,
int handle_byte_offset,
boolean handle_is_direct,
int index,
long procAddress);
3343 final long __addr_ = cgProcAddressTable._addressof_cgGetNumParentTypes;
3345 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNumParentTypes"));
3347 return dispatch_cgGetNumParentTypes1(type, __addr_);
3353 static private native
int dispatch_cgGetNumParentTypes1(
int type,
long procAddress);
3360 final long __addr_ = cgProcAddressTable._addressof_cgGetParentType;
3362 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetParentType"));
3364 return dispatch_cgGetParentType1(type, index, __addr_);
3370 static private native
int dispatch_cgGetParentType1(
int type,
int index,
long procAddress);
3379 final long __addr_ = cgProcAddressTable._addressof_cgIsParentType;
3381 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsParentType"));
3383 return dispatch_cgIsParentType1(parent, child, __addr_);
3391 static private native
boolean dispatch_cgIsParentType1(
int parent,
int child,
long procAddress);
3398 final long __addr_ = cgProcAddressTable._addressof_cgIsInterfaceType;
3400 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsInterfaceType"));
3402 return dispatch_cgIsInterfaceType1(type, __addr_);
3408 static private native
boolean dispatch_cgIsInterfaceType1(
int type,
long procAddress);
3415 final long __addr_ = cgProcAddressTable._addressof_cgGetResourceString;
3417 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetResourceString"));
3419 return dispatch_cgGetResourceString1(resource, __addr_);
3425 static private native String dispatch_cgGetResourceString1(
int resource,
long procAddress);
3430 final long __addr_ = cgProcAddressTable._addressof_cgGetResource;
3432 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetResource"));
3434 return dispatch_cgGetResource1(resource_string, __addr_);
3438 static private native
int dispatch_cgGetResource1(String resource_string,
long procAddress);
3445 final long __addr_ = cgProcAddressTable._addressof_cgGetEnumString;
3447 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetEnumString"));
3449 return dispatch_cgGetEnumString1(en, __addr_);
3455 static private native String dispatch_cgGetEnumString1(
int en,
long procAddress);
3460 final long __addr_ = cgProcAddressTable._addressof_cgGetEnum;
3462 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetEnum"));
3464 return dispatch_cgGetEnum1(enum_string, __addr_);
3468 static private native
int dispatch_cgGetEnum1(String enum_string,
long procAddress);
3475 final long __addr_ = cgProcAddressTable._addressof_cgGetProfileString;
3477 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetProfileString"));
3479 return dispatch_cgGetProfileString1(profile, __addr_);
3485 static private native String dispatch_cgGetProfileString1(
int profile,
long procAddress);
3490 final long __addr_ = cgProcAddressTable._addressof_cgGetProfile;
3492 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetProfile"));
3494 return dispatch_cgGetProfile1(profile_string, __addr_);
3498 static private native
int dispatch_cgGetProfile1(String profile_string,
long procAddress);
3503 final long __addr_ = cgProcAddressTable._addressof_cgGetError;
3505 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetError"));
3507 return dispatch_cgGetError1(__addr_);
3511 static private native
int dispatch_cgGetError1(
long procAddress);
3516 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstError;
3518 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstError"));
3520 return dispatch_cgGetFirstError1(__addr_);
3524 static private native
int dispatch_cgGetFirstError1(
long procAddress);
3531 final long __addr_ = cgProcAddressTable._addressof_cgGetErrorString;
3533 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetErrorString"));
3535 return dispatch_cgGetErrorString1(error, __addr_);
3541 static private native String dispatch_cgGetErrorString1(
int error,
long procAddress);
3547 final boolean error_is_direct = Buffers.isDirect(error);
3548 final long __addr_ = cgProcAddressTable._addressof_cgGetLastErrorString;
3550 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetLastErrorString"));
3552 return dispatch_cgGetLastErrorString1(error_is_direct ? error : Buffers.getArray(error), error_is_direct ? Buffers.getDirectBufferByteOffset(error) : Buffers.getIndirectBufferByteOffset(error), error_is_direct, __addr_);
3557 private static native String dispatch_cgGetLastErrorString1(Object error,
int error_byte_offset,
boolean error_is_direct,
long procAddress);
3562 if(error !=
null && error.length <= error_offset)
3563 throw new CgException(
"array offset argument \"error_offset\" (" + error_offset +
") equals or exceeds array length (" + error.length +
")");
3564 final long __addr_ = cgProcAddressTable._addressof_cgGetLastErrorString;
3566 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetLastErrorString"));
3568 return dispatch_cgGetLastErrorString1(error, Buffers.SIZEOF_INT * error_offset,
false, __addr_);
3576 final long __addr_ = cgProcAddressTable._addressof_cgGetString;
3578 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetString"));
3580 return dispatch_cgGetString1(sname, __addr_);
3586 static private native String dispatch_cgGetString1(
int sname,
long procAddress);
3591 final long __addr_ = cgProcAddressTable._addressof_cgCreateEffect;
3593 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateEffect"));
3595 final ByteBuffer _res;
3596 _res = dispatch_cgCreateEffect1(((arg0 ==
null) ?
null : arg0.
getBuffer()), code, args, __addr_);
3597 if (_res ==
null)
return null;
3602 private static native ByteBuffer dispatch_cgCreateEffect1(ByteBuffer arg0, String code, String[] args,
long procAddress);
3607 final long __addr_ = cgProcAddressTable._addressof_cgCreateEffectFromFile;
3609 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateEffectFromFile"));
3611 final ByteBuffer _res;
3612 _res = dispatch_cgCreateEffectFromFile1(((arg0 ==
null) ?
null : arg0.
getBuffer()), filename, args, __addr_);
3613 if (_res ==
null)
return null;
3618 private static native ByteBuffer dispatch_cgCreateEffectFromFile1(ByteBuffer arg0, String filename, String[] args,
long procAddress);
3623 final long __addr_ = cgProcAddressTable._addressof_cgDestroyEffect;
3625 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgDestroyEffect"));
3627 dispatch_cgDestroyEffect1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3631 private static native
void dispatch_cgDestroyEffect1(ByteBuffer arg0,
long procAddress);
3636 final long __addr_ = cgProcAddressTable._addressof_cgGetEffectContext;
3638 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetEffectContext"));
3640 final ByteBuffer _res;
3641 _res = dispatch_cgGetEffectContext1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3642 if (_res ==
null)
return null;
3647 private static native ByteBuffer dispatch_cgGetEffectContext1(ByteBuffer arg0,
long procAddress);
3652 final long __addr_ = cgProcAddressTable._addressof_cgIsEffect;
3654 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsEffect"));
3656 return dispatch_cgIsEffect1(((effect ==
null) ?
null : effect.
getBuffer()), __addr_);
3660 private static native
boolean dispatch_cgIsEffect1(ByteBuffer effect,
long procAddress);
3665 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstEffect;
3667 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstEffect"));
3669 final ByteBuffer _res;
3670 _res = dispatch_cgGetFirstEffect1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3671 if (_res ==
null)
return null;
3676 private static native ByteBuffer dispatch_cgGetFirstEffect1(ByteBuffer arg0,
long procAddress);
3681 final long __addr_ = cgProcAddressTable._addressof_cgGetNextEffect;
3683 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextEffect"));
3685 final ByteBuffer _res;
3686 _res = dispatch_cgGetNextEffect1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3687 if (_res ==
null)
return null;
3692 private static native ByteBuffer dispatch_cgGetNextEffect1(ByteBuffer arg0,
long procAddress);
3699 final long __addr_ = cgProcAddressTable._addressof_cgCreateProgramFromEffect;
3701 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateProgramFromEffect"));
3703 final ByteBuffer _res;
3704 _res = dispatch_cgCreateProgramFromEffect1(((effect ==
null) ?
null : effect.
getBuffer()), profile, entry, args, __addr_);
3705 if (_res ==
null)
return null;
3712 private static native ByteBuffer dispatch_cgCreateProgramFromEffect1(ByteBuffer effect,
int profile, String entry, String[] args,
long procAddress);
3717 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstTechnique;
3719 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstTechnique"));
3721 final ByteBuffer _res;
3722 _res = dispatch_cgGetFirstTechnique1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3723 if (_res ==
null)
return null;
3728 private static native ByteBuffer dispatch_cgGetFirstTechnique1(ByteBuffer arg0,
long procAddress);
3733 final long __addr_ = cgProcAddressTable._addressof_cgGetNextTechnique;
3735 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextTechnique"));
3737 final ByteBuffer _res;
3738 _res = dispatch_cgGetNextTechnique1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3739 if (_res ==
null)
return null;
3744 private static native ByteBuffer dispatch_cgGetNextTechnique1(ByteBuffer arg0,
long procAddress);
3749 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedTechnique;
3751 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedTechnique"));
3753 final ByteBuffer _res;
3754 _res = dispatch_cgGetNamedTechnique1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, __addr_);
3755 if (_res ==
null)
return null;
3760 private static native ByteBuffer dispatch_cgGetNamedTechnique1(ByteBuffer arg0, String name,
long procAddress);
3765 final long __addr_ = cgProcAddressTable._addressof_cgGetTechniqueName;
3767 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetTechniqueName"));
3769 return dispatch_cgGetTechniqueName1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3773 private static native String dispatch_cgGetTechniqueName1(ByteBuffer arg0,
long procAddress);
3778 final long __addr_ = cgProcAddressTable._addressof_cgIsTechnique;
3780 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsTechnique"));
3782 return dispatch_cgIsTechnique1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3786 private static native
boolean dispatch_cgIsTechnique1(ByteBuffer arg0,
long procAddress);
3791 final long __addr_ = cgProcAddressTable._addressof_cgValidateTechnique;
3793 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgValidateTechnique"));
3795 return dispatch_cgValidateTechnique1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3799 private static native
boolean dispatch_cgValidateTechnique1(ByteBuffer arg0,
long procAddress);
3804 final long __addr_ = cgProcAddressTable._addressof_cgIsTechniqueValidated;
3806 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsTechniqueValidated"));
3808 return dispatch_cgIsTechniqueValidated1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3812 private static native
boolean dispatch_cgIsTechniqueValidated1(ByteBuffer arg0,
long procAddress);
3817 final long __addr_ = cgProcAddressTable._addressof_cgGetTechniqueEffect;
3819 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetTechniqueEffect"));
3821 final ByteBuffer _res;
3822 _res = dispatch_cgGetTechniqueEffect1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3823 if (_res ==
null)
return null;
3828 private static native ByteBuffer dispatch_cgGetTechniqueEffect1(ByteBuffer arg0,
long procAddress);
3833 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstPass;
3835 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstPass"));
3837 final ByteBuffer _res;
3838 _res = dispatch_cgGetFirstPass1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3839 if (_res ==
null)
return null;
3844 private static native ByteBuffer dispatch_cgGetFirstPass1(ByteBuffer arg0,
long procAddress);
3849 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedPass;
3851 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedPass"));
3853 final ByteBuffer _res;
3854 _res = dispatch_cgGetNamedPass1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, __addr_);
3855 if (_res ==
null)
return null;
3860 private static native ByteBuffer dispatch_cgGetNamedPass1(ByteBuffer arg0, String name,
long procAddress);
3865 final long __addr_ = cgProcAddressTable._addressof_cgGetNextPass;
3867 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextPass"));
3869 final ByteBuffer _res;
3870 _res = dispatch_cgGetNextPass1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3871 if (_res ==
null)
return null;
3876 private static native ByteBuffer dispatch_cgGetNextPass1(ByteBuffer arg0,
long procAddress);
3881 final long __addr_ = cgProcAddressTable._addressof_cgIsPass;
3883 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsPass"));
3885 return dispatch_cgIsPass1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3889 private static native
boolean dispatch_cgIsPass1(ByteBuffer arg0,
long procAddress);
3894 final long __addr_ = cgProcAddressTable._addressof_cgGetPassName;
3896 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetPassName"));
3898 return dispatch_cgGetPassName1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3902 private static native String dispatch_cgGetPassName1(ByteBuffer arg0,
long procAddress);
3907 final long __addr_ = cgProcAddressTable._addressof_cgGetPassTechnique;
3909 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetPassTechnique"));
3911 final ByteBuffer _res;
3912 _res = dispatch_cgGetPassTechnique1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3913 if (_res ==
null)
return null;
3918 private static native ByteBuffer dispatch_cgGetPassTechnique1(ByteBuffer arg0,
long procAddress);
3923 final long __addr_ = cgProcAddressTable._addressof_cgSetPassState;
3925 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetPassState"));
3927 dispatch_cgSetPassState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3931 private static native
void dispatch_cgSetPassState1(ByteBuffer arg0,
long procAddress);
3936 final long __addr_ = cgProcAddressTable._addressof_cgResetPassState;
3938 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgResetPassState"));
3940 dispatch_cgResetPassState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3944 private static native
void dispatch_cgResetPassState1(ByteBuffer arg0,
long procAddress);
3949 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstStateAssignment;
3951 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstStateAssignment"));
3953 final ByteBuffer _res;
3954 _res = dispatch_cgGetFirstStateAssignment1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3955 if (_res ==
null)
return null;
3960 private static native ByteBuffer dispatch_cgGetFirstStateAssignment1(ByteBuffer arg0,
long procAddress);
3965 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedStateAssignment;
3967 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedStateAssignment"));
3969 final ByteBuffer _res;
3970 _res = dispatch_cgGetNamedStateAssignment1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, __addr_);
3971 if (_res ==
null)
return null;
3976 private static native ByteBuffer dispatch_cgGetNamedStateAssignment1(ByteBuffer arg0, String name,
long procAddress);
3981 final long __addr_ = cgProcAddressTable._addressof_cgGetNextStateAssignment;
3983 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextStateAssignment"));
3985 final ByteBuffer _res;
3986 _res = dispatch_cgGetNextStateAssignment1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
3987 if (_res ==
null)
return null;
3992 private static native ByteBuffer dispatch_cgGetNextStateAssignment1(ByteBuffer arg0,
long procAddress);
3997 final long __addr_ = cgProcAddressTable._addressof_cgIsStateAssignment;
3999 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsStateAssignment"));
4001 return dispatch_cgIsStateAssignment1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4005 private static native
boolean dispatch_cgIsStateAssignment1(ByteBuffer arg0,
long procAddress);
4010 final long __addr_ = cgProcAddressTable._addressof_cgCallStateSetCallback;
4012 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCallStateSetCallback"));
4014 return dispatch_cgCallStateSetCallback1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4018 private static native
boolean dispatch_cgCallStateSetCallback1(ByteBuffer arg0,
long procAddress);
4023 final long __addr_ = cgProcAddressTable._addressof_cgCallStateValidateCallback;
4025 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCallStateValidateCallback"));
4027 return dispatch_cgCallStateValidateCallback1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4031 private static native
boolean dispatch_cgCallStateValidateCallback1(ByteBuffer arg0,
long procAddress);
4036 final long __addr_ = cgProcAddressTable._addressof_cgCallStateResetCallback;
4038 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCallStateResetCallback"));
4040 return dispatch_cgCallStateResetCallback1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4044 private static native
boolean dispatch_cgCallStateResetCallback1(ByteBuffer arg0,
long procAddress);
4049 final long __addr_ = cgProcAddressTable._addressof_cgGetStateAssignmentPass;
4051 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStateAssignmentPass"));
4053 final ByteBuffer _res;
4054 _res = dispatch_cgGetStateAssignmentPass1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4055 if (_res ==
null)
return null;
4060 private static native ByteBuffer dispatch_cgGetStateAssignmentPass1(ByteBuffer arg0,
long procAddress);
4065 final long __addr_ = cgProcAddressTable._addressof_cgGetSamplerStateAssignmentParameter;
4067 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetSamplerStateAssignmentParameter"));
4069 final ByteBuffer _res;
4070 _res = dispatch_cgGetSamplerStateAssignmentParameter1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4071 if (_res ==
null)
return null;
4076 private static native ByteBuffer dispatch_cgGetSamplerStateAssignmentParameter1(ByteBuffer arg0,
long procAddress);
4081 final long __addr_ = cgProcAddressTable._addressof_cgGetStringStateAssignmentValue;
4083 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStringStateAssignmentValue"));
4085 return dispatch_cgGetStringStateAssignmentValue1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4089 private static native String dispatch_cgGetStringStateAssignmentValue1(ByteBuffer arg0,
long procAddress);
4094 final long __addr_ = cgProcAddressTable._addressof_cgGetProgramStateAssignmentValue;
4096 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetProgramStateAssignmentValue"));
4098 final ByteBuffer _res;
4099 _res = dispatch_cgGetProgramStateAssignmentValue1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4100 if (_res ==
null)
return null;
4105 private static native ByteBuffer dispatch_cgGetProgramStateAssignmentValue1(ByteBuffer arg0,
long procAddress);
4110 final long __addr_ = cgProcAddressTable._addressof_cgGetTextureStateAssignmentValue;
4112 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetTextureStateAssignmentValue"));
4114 final ByteBuffer _res;
4115 _res = dispatch_cgGetTextureStateAssignmentValue1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4116 if (_res ==
null)
return null;
4121 private static native ByteBuffer dispatch_cgGetTextureStateAssignmentValue1(ByteBuffer arg0,
long procAddress);
4126 final long __addr_ = cgProcAddressTable._addressof_cgGetSamplerStateAssignmentValue;
4128 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetSamplerStateAssignmentValue"));
4130 final ByteBuffer _res;
4131 _res = dispatch_cgGetSamplerStateAssignmentValue1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4132 if (_res ==
null)
return null;
4137 private static native ByteBuffer dispatch_cgGetSamplerStateAssignmentValue1(ByteBuffer arg0,
long procAddress);
4142 final long __addr_ = cgProcAddressTable._addressof_cgGetStateAssignmentIndex;
4144 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStateAssignmentIndex"));
4146 return dispatch_cgGetStateAssignmentIndex1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4150 private static native
int dispatch_cgGetStateAssignmentIndex1(ByteBuffer arg0,
long procAddress);
4155 final long __addr_ = cgProcAddressTable._addressof_cgGetNumDependentStateAssignmentParameters;
4157 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNumDependentStateAssignmentParameters"));
4159 return dispatch_cgGetNumDependentStateAssignmentParameters1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4163 private static native
int dispatch_cgGetNumDependentStateAssignmentParameters1(ByteBuffer arg0,
long procAddress);
4168 final long __addr_ = cgProcAddressTable._addressof_cgGetDependentStateAssignmentParameter;
4170 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetDependentStateAssignmentParameter"));
4172 final ByteBuffer _res;
4173 _res = dispatch_cgGetDependentStateAssignmentParameter1(((arg0 ==
null) ?
null : arg0.
getBuffer()), index, __addr_);
4174 if (_res ==
null)
return null;
4179 private static native ByteBuffer dispatch_cgGetDependentStateAssignmentParameter1(ByteBuffer arg0,
int index,
long procAddress);
4184 final long __addr_ = cgProcAddressTable._addressof_cgGetStateAssignmentState;
4186 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStateAssignmentState"));
4188 final ByteBuffer _res;
4189 _res = dispatch_cgGetStateAssignmentState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4190 if (_res ==
null)
return null;
4195 private static native ByteBuffer dispatch_cgGetStateAssignmentState1(ByteBuffer arg0,
long procAddress);
4200 final long __addr_ = cgProcAddressTable._addressof_cgGetSamplerStateAssignmentState;
4202 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetSamplerStateAssignmentState"));
4204 final ByteBuffer _res;
4205 _res = dispatch_cgGetSamplerStateAssignmentState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4206 if (_res ==
null)
return null;
4211 private static native ByteBuffer dispatch_cgGetSamplerStateAssignmentState1(ByteBuffer arg0,
long procAddress);
4218 final long __addr_ = cgProcAddressTable._addressof_cgCreateState;
4220 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateState"));
4222 final ByteBuffer _res;
4223 _res = dispatch_cgCreateState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, arg2, __addr_);
4224 if (_res ==
null)
return null;
4231 private static native ByteBuffer dispatch_cgCreateState1(ByteBuffer arg0, String name,
int arg2,
long procAddress);
4238 final long __addr_ = cgProcAddressTable._addressof_cgCreateArrayState;
4240 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateArrayState"));
4242 final ByteBuffer _res;
4243 _res = dispatch_cgCreateArrayState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, arg2, nelems, __addr_);
4244 if (_res ==
null)
return null;
4251 private static native ByteBuffer dispatch_cgCreateArrayState1(ByteBuffer arg0, String name,
int arg2,
int nelems,
long procAddress);
4256 final long __addr_ = cgProcAddressTable._addressof_cgGetStateType;
4258 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStateType"));
4260 return dispatch_cgGetStateType1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4264 private static native
int dispatch_cgGetStateType1(ByteBuffer arg0,
long procAddress);
4269 final long __addr_ = cgProcAddressTable._addressof_cgGetStateName;
4271 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStateName"));
4273 return dispatch_cgGetStateName1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4277 private static native String dispatch_cgGetStateName1(ByteBuffer arg0,
long procAddress);
4282 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedState;
4284 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedState"));
4286 final ByteBuffer _res;
4287 _res = dispatch_cgGetNamedState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, __addr_);
4288 if (_res ==
null)
return null;
4293 private static native ByteBuffer dispatch_cgGetNamedState1(ByteBuffer arg0, String name,
long procAddress);
4298 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstState;
4300 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstState"));
4302 final ByteBuffer _res;
4303 _res = dispatch_cgGetFirstState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4304 if (_res ==
null)
return null;
4309 private static native ByteBuffer dispatch_cgGetFirstState1(ByteBuffer arg0,
long procAddress);
4314 final long __addr_ = cgProcAddressTable._addressof_cgGetNextState;
4316 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextState"));
4318 final ByteBuffer _res;
4319 _res = dispatch_cgGetNextState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4320 if (_res ==
null)
return null;
4325 private static native ByteBuffer dispatch_cgGetNextState1(ByteBuffer arg0,
long procAddress);
4330 final long __addr_ = cgProcAddressTable._addressof_cgIsState;
4332 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsState"));
4334 return dispatch_cgIsState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4338 private static native
boolean dispatch_cgIsState1(ByteBuffer arg0,
long procAddress);
4343 final long __addr_ = cgProcAddressTable._addressof_cgAddStateEnumerant;
4345 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgAddStateEnumerant"));
4347 dispatch_cgAddStateEnumerant1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, value, __addr_);
4351 private static native
void dispatch_cgAddStateEnumerant1(ByteBuffer arg0, String name,
int value,
long procAddress);
4358 final long __addr_ = cgProcAddressTable._addressof_cgCreateSamplerState;
4360 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateSamplerState"));
4362 final ByteBuffer _res;
4363 _res = dispatch_cgCreateSamplerState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, arg2, __addr_);
4364 if (_res ==
null)
return null;
4371 private static native ByteBuffer dispatch_cgCreateSamplerState1(ByteBuffer arg0, String name,
int arg2,
long procAddress);
4378 final long __addr_ = cgProcAddressTable._addressof_cgCreateArraySamplerState;
4380 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgCreateArraySamplerState"));
4382 final ByteBuffer _res;
4383 _res = dispatch_cgCreateArraySamplerState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, arg2, nelems, __addr_);
4384 if (_res ==
null)
return null;
4391 private static native ByteBuffer dispatch_cgCreateArraySamplerState1(ByteBuffer arg0, String name,
int arg2,
int nelems,
long procAddress);
4396 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedSamplerState;
4398 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedSamplerState"));
4400 final ByteBuffer _res;
4401 _res = dispatch_cgGetNamedSamplerState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), name, __addr_);
4402 if (_res ==
null)
return null;
4407 private static native ByteBuffer dispatch_cgGetNamedSamplerState1(ByteBuffer arg0, String name,
long procAddress);
4412 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstSamplerState;
4414 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstSamplerState"));
4416 final ByteBuffer _res;
4417 _res = dispatch_cgGetFirstSamplerState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4418 if (_res ==
null)
return null;
4423 private static native ByteBuffer dispatch_cgGetFirstSamplerState1(ByteBuffer arg0,
long procAddress);
4428 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstSamplerStateAssignment;
4430 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstSamplerStateAssignment"));
4432 final ByteBuffer _res;
4433 _res = dispatch_cgGetFirstSamplerStateAssignment1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4434 if (_res ==
null)
return null;
4439 private static native ByteBuffer dispatch_cgGetFirstSamplerStateAssignment1(ByteBuffer arg0,
long procAddress);
4444 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedSamplerStateAssignment;
4446 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedSamplerStateAssignment"));
4448 final ByteBuffer _res;
4449 _res = dispatch_cgGetNamedSamplerStateAssignment1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4450 if (_res ==
null)
return null;
4455 private static native ByteBuffer dispatch_cgGetNamedSamplerStateAssignment1(ByteBuffer arg0, String arg1,
long procAddress);
4460 final long __addr_ = cgProcAddressTable._addressof_cgSetSamplerState;
4462 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgSetSamplerState"));
4464 dispatch_cgSetSamplerState1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4468 private static native
void dispatch_cgSetSamplerState1(ByteBuffer arg0,
long procAddress);
4473 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedEffectParameter;
4475 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedEffectParameter"));
4477 final ByteBuffer _res;
4478 _res = dispatch_cgGetNamedEffectParameter1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4479 if (_res ==
null)
return null;
4484 private static native ByteBuffer dispatch_cgGetNamedEffectParameter1(ByteBuffer arg0, String arg1,
long procAddress);
4489 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstLeafEffectParameter;
4491 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstLeafEffectParameter"));
4493 final ByteBuffer _res;
4494 _res = dispatch_cgGetFirstLeafEffectParameter1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4495 if (_res ==
null)
return null;
4500 private static native ByteBuffer dispatch_cgGetFirstLeafEffectParameter1(ByteBuffer arg0,
long procAddress);
4505 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstEffectParameter;
4507 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstEffectParameter"));
4509 final ByteBuffer _res;
4510 _res = dispatch_cgGetFirstEffectParameter1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4511 if (_res ==
null)
return null;
4516 private static native ByteBuffer dispatch_cgGetFirstEffectParameter1(ByteBuffer arg0,
long procAddress);
4521 final long __addr_ = cgProcAddressTable._addressof_cgGetEffectParameterBySemantic;
4523 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetEffectParameterBySemantic"));
4525 final ByteBuffer _res;
4526 _res = dispatch_cgGetEffectParameterBySemantic1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4527 if (_res ==
null)
return null;
4532 private static native ByteBuffer dispatch_cgGetEffectParameterBySemantic1(ByteBuffer arg0, String arg1,
long procAddress);
4537 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstTechniqueAnnotation;
4539 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstTechniqueAnnotation"));
4541 final ByteBuffer _res;
4542 _res = dispatch_cgGetFirstTechniqueAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4543 if (_res ==
null)
return null;
4548 private static native ByteBuffer dispatch_cgGetFirstTechniqueAnnotation1(ByteBuffer arg0,
long procAddress);
4553 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstPassAnnotation;
4555 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstPassAnnotation"));
4557 final ByteBuffer _res;
4558 _res = dispatch_cgGetFirstPassAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4559 if (_res ==
null)
return null;
4564 private static native ByteBuffer dispatch_cgGetFirstPassAnnotation1(ByteBuffer arg0,
long procAddress);
4569 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstParameterAnnotation;
4571 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstParameterAnnotation"));
4573 final ByteBuffer _res;
4574 _res = dispatch_cgGetFirstParameterAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4575 if (_res ==
null)
return null;
4580 private static native ByteBuffer dispatch_cgGetFirstParameterAnnotation1(ByteBuffer arg0,
long procAddress);
4585 final long __addr_ = cgProcAddressTable._addressof_cgGetFirstProgramAnnotation;
4587 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetFirstProgramAnnotation"));
4589 final ByteBuffer _res;
4590 _res = dispatch_cgGetFirstProgramAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4591 if (_res ==
null)
return null;
4596 private static native ByteBuffer dispatch_cgGetFirstProgramAnnotation1(ByteBuffer arg0,
long procAddress);
4601 final long __addr_ = cgProcAddressTable._addressof_cgGetNextAnnotation;
4603 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNextAnnotation"));
4605 final ByteBuffer _res;
4606 _res = dispatch_cgGetNextAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4607 if (_res ==
null)
return null;
4612 private static native ByteBuffer dispatch_cgGetNextAnnotation1(ByteBuffer arg0,
long procAddress);
4617 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedTechniqueAnnotation;
4619 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedTechniqueAnnotation"));
4621 final ByteBuffer _res;
4622 _res = dispatch_cgGetNamedTechniqueAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4623 if (_res ==
null)
return null;
4628 private static native ByteBuffer dispatch_cgGetNamedTechniqueAnnotation1(ByteBuffer arg0, String arg1,
long procAddress);
4633 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedPassAnnotation;
4635 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedPassAnnotation"));
4637 final ByteBuffer _res;
4638 _res = dispatch_cgGetNamedPassAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4639 if (_res ==
null)
return null;
4644 private static native ByteBuffer dispatch_cgGetNamedPassAnnotation1(ByteBuffer arg0, String arg1,
long procAddress);
4649 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedParameterAnnotation;
4651 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedParameterAnnotation"));
4653 final ByteBuffer _res;
4654 _res = dispatch_cgGetNamedParameterAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4655 if (_res ==
null)
return null;
4660 private static native ByteBuffer dispatch_cgGetNamedParameterAnnotation1(ByteBuffer arg0, String arg1,
long procAddress);
4665 final long __addr_ = cgProcAddressTable._addressof_cgGetNamedProgramAnnotation;
4667 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNamedProgramAnnotation"));
4669 final ByteBuffer _res;
4670 _res = dispatch_cgGetNamedProgramAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, __addr_);
4671 if (_res ==
null)
return null;
4676 private static native ByteBuffer dispatch_cgGetNamedProgramAnnotation1(ByteBuffer arg0, String arg1,
long procAddress);
4681 final long __addr_ = cgProcAddressTable._addressof_cgIsAnnotation;
4683 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgIsAnnotation"));
4685 return dispatch_cgIsAnnotation1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4689 private static native
boolean dispatch_cgIsAnnotation1(ByteBuffer arg0,
long procAddress);
4694 final long __addr_ = cgProcAddressTable._addressof_cgGetAnnotationName;
4696 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetAnnotationName"));
4698 return dispatch_cgGetAnnotationName1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4702 private static native String dispatch_cgGetAnnotationName1(ByteBuffer arg0,
long procAddress);
4707 final long __addr_ = cgProcAddressTable._addressof_cgGetAnnotationType;
4709 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetAnnotationType"));
4711 return dispatch_cgGetAnnotationType1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4715 private static native
int dispatch_cgGetAnnotationType1(ByteBuffer arg0,
long procAddress);
4720 final long __addr_ = cgProcAddressTable._addressof_cgGetStringAnnotationValue;
4722 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetStringAnnotationValue"));
4724 return dispatch_cgGetStringAnnotationValue1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4728 private static native String dispatch_cgGetStringAnnotationValue1(ByteBuffer arg0,
long procAddress);
4733 final long __addr_ = cgProcAddressTable._addressof_cgGetNumDependentAnnotationParameters;
4735 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetNumDependentAnnotationParameters"));
4737 return dispatch_cgGetNumDependentAnnotationParameters1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
4741 private static native
int dispatch_cgGetNumDependentAnnotationParameters1(ByteBuffer arg0,
long procAddress);
4746 final long __addr_ = cgProcAddressTable._addressof_cgGetDependentAnnotationParameter;
4748 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGetDependentAnnotationParameter"));
4750 final ByteBuffer _res;
4751 _res = dispatch_cgGetDependentAnnotationParameter1(((arg0 ==
null) ?
null : arg0.
getBuffer()), index, __addr_);
4752 if (_res ==
null)
return null;
4757 private static native ByteBuffer dispatch_cgGetDependentAnnotationParameter1(ByteBuffer arg0,
int index,
long procAddress);
4763 final boolean arg1_is_direct = Buffers.isDirect(arg1);
4764 final long __addr_ = cgProcAddressTable._addressof_cgEvaluateProgram;
4766 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgEvaluateProgram"));
4768 dispatch_cgEvaluateProgram1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1_is_direct ? arg1 : Buffers.getArray(arg1), arg1_is_direct ? Buffers.getDirectBufferByteOffset(arg1) : Buffers.getIndirectBufferByteOffset(arg1), arg1_is_direct, ncomps, nx, ny, nz, __addr_);
4773 private static native
void dispatch_cgEvaluateProgram1(ByteBuffer arg0, Object arg1,
int arg1_byte_offset,
boolean arg1_is_direct,
int ncomps,
int nx,
int ny,
int nz,
long procAddress);
4778 if(arg1 !=
null && arg1.length <= arg1_offset)
4779 throw new CgException(
"array offset argument \"arg1_offset\" (" + arg1_offset +
") equals or exceeds array length (" + arg1.length +
")");
4780 final long __addr_ = cgProcAddressTable._addressof_cgEvaluateProgram;
4782 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgEvaluateProgram"));
4784 dispatch_cgEvaluateProgram1(((arg0 ==
null) ?
null : arg0.
getBuffer()), arg1, Buffers.SIZEOF_FLOAT * arg1_offset,
false, ncomps, nx, ny, nz, __addr_);
4792 final long __addr_ = cgProcAddressTable._addressof_cgGLIsProfileSupported;
4794 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLIsProfileSupported"));
4796 return dispatch_cgGLIsProfileSupported1(profile, __addr_);
4802 static private native
boolean dispatch_cgGLIsProfileSupported1(
int profile,
long procAddress);
4809 final long __addr_ = cgProcAddressTable._addressof_cgGLEnableProfile;
4811 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLEnableProfile"));
4813 dispatch_cgGLEnableProfile1(profile, __addr_);
4819 static private native
void dispatch_cgGLEnableProfile1(
int profile,
long procAddress);
4826 final long __addr_ = cgProcAddressTable._addressof_cgGLDisableProfile;
4828 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLDisableProfile"));
4830 dispatch_cgGLDisableProfile1(profile, __addr_);
4836 static private native
void dispatch_cgGLDisableProfile1(
int profile,
long procAddress);
4843 final long __addr_ = cgProcAddressTable._addressof_cgGLGetLatestProfile;
4845 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetLatestProfile"));
4847 return dispatch_cgGLGetLatestProfile1(profile_type, __addr_);
4853 static private native
int dispatch_cgGLGetLatestProfile1(
int profile_type,
long procAddress);
4860 final long __addr_ = cgProcAddressTable._addressof_cgGLSetOptimalOptions;
4862 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetOptimalOptions"));
4864 dispatch_cgGLSetOptimalOptions1(profile, __addr_);
4870 static private native
void dispatch_cgGLSetOptimalOptions1(
int profile,
long procAddress);
4875 final long __addr_ = cgProcAddressTable._addressof_cgGLLoadProgram;
4877 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLLoadProgram"));
4879 dispatch_cgGLLoadProgram1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
4883 private static native
void dispatch_cgGLLoadProgram1(ByteBuffer program,
long procAddress);
4888 final long __addr_ = cgProcAddressTable._addressof_cgGLIsProgramLoaded;
4890 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLIsProgramLoaded"));
4892 return dispatch_cgGLIsProgramLoaded1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
4896 private static native
boolean dispatch_cgGLIsProgramLoaded1(ByteBuffer program,
long procAddress);
4901 final long __addr_ = cgProcAddressTable._addressof_cgGLBindProgram;
4903 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLBindProgram"));
4905 dispatch_cgGLBindProgram1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
4909 private static native
void dispatch_cgGLBindProgram1(ByteBuffer program,
long procAddress);
4916 final long __addr_ = cgProcAddressTable._addressof_cgGLUnbindProgram;
4918 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLUnbindProgram"));
4920 dispatch_cgGLUnbindProgram1(profile, __addr_);
4926 static private native
void dispatch_cgGLUnbindProgram1(
int profile,
long procAddress);
4931 final long __addr_ = cgProcAddressTable._addressof_cgGLGetProgramID;
4933 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetProgramID"));
4935 return dispatch_cgGLGetProgramID1(((program ==
null) ?
null : program.
getBuffer()), __addr_);
4939 private static native
int dispatch_cgGLGetProgramID1(ByteBuffer program,
long procAddress);
4944 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter1f;
4946 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter1f"));
4948 dispatch_cgGLSetParameter1f1(((param ==
null) ?
null : param.
getBuffer()), x, __addr_);
4952 private static native
void dispatch_cgGLSetParameter1f1(ByteBuffer param,
float x,
long procAddress);
4957 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter2f;
4959 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter2f"));
4961 dispatch_cgGLSetParameter2f1(((param ==
null) ?
null : param.
getBuffer()), x, y, __addr_);
4965 private static native
void dispatch_cgGLSetParameter2f1(ByteBuffer param,
float x,
float y,
long procAddress);
4970 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter3f;
4972 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter3f"));
4974 dispatch_cgGLSetParameter3f1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, __addr_);
4978 private static native
void dispatch_cgGLSetParameter3f1(ByteBuffer param,
float x,
float y,
float z,
long procAddress);
4983 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter4f;
4985 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter4f"));
4987 dispatch_cgGLSetParameter4f1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, w, __addr_);
4991 private static native
void dispatch_cgGLSetParameter4f1(ByteBuffer param,
float x,
float y,
float z,
float w,
long procAddress);
4997 final boolean v_is_direct = Buffers.isDirect(v);
4998 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter1fv;
5000 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter1fv"));
5002 dispatch_cgGLSetParameter1fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5007 private static native
void dispatch_cgGLSetParameter1fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5012 if(v !=
null && v.length <= v_offset)
5013 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5014 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter1fv;
5016 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter1fv"));
5018 dispatch_cgGLSetParameter1fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5025 final boolean v_is_direct = Buffers.isDirect(v);
5026 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter2fv;
5028 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter2fv"));
5030 dispatch_cgGLSetParameter2fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5035 private static native
void dispatch_cgGLSetParameter2fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5040 if(v !=
null && v.length <= v_offset)
5041 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5042 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter2fv;
5044 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter2fv"));
5046 dispatch_cgGLSetParameter2fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5053 final boolean v_is_direct = Buffers.isDirect(v);
5054 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter3fv;
5056 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter3fv"));
5058 dispatch_cgGLSetParameter3fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5063 private static native
void dispatch_cgGLSetParameter3fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5068 if(v !=
null && v.length <= v_offset)
5069 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5070 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter3fv;
5072 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter3fv"));
5074 dispatch_cgGLSetParameter3fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5081 final boolean v_is_direct = Buffers.isDirect(v);
5082 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter4fv;
5084 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter4fv"));
5086 dispatch_cgGLSetParameter4fv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5091 private static native
void dispatch_cgGLSetParameter4fv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5096 if(v !=
null && v.length <= v_offset)
5097 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5098 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter4fv;
5100 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter4fv"));
5102 dispatch_cgGLSetParameter4fv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5108 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter1d;
5110 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter1d"));
5112 dispatch_cgGLSetParameter1d1(((param ==
null) ?
null : param.
getBuffer()), x, __addr_);
5116 private static native
void dispatch_cgGLSetParameter1d1(ByteBuffer param,
double x,
long procAddress);
5121 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter2d;
5123 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter2d"));
5125 dispatch_cgGLSetParameter2d1(((param ==
null) ?
null : param.
getBuffer()), x, y, __addr_);
5129 private static native
void dispatch_cgGLSetParameter2d1(ByteBuffer param,
double x,
double y,
long procAddress);
5134 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter3d;
5136 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter3d"));
5138 dispatch_cgGLSetParameter3d1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, __addr_);
5142 private static native
void dispatch_cgGLSetParameter3d1(ByteBuffer param,
double x,
double y,
double z,
long procAddress);
5147 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter4d;
5149 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter4d"));
5151 dispatch_cgGLSetParameter4d1(((param ==
null) ?
null : param.
getBuffer()), x, y, z, w, __addr_);
5155 private static native
void dispatch_cgGLSetParameter4d1(ByteBuffer param,
double x,
double y,
double z,
double w,
long procAddress);
5161 final boolean v_is_direct = Buffers.isDirect(v);
5162 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter1dv;
5164 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter1dv"));
5166 dispatch_cgGLSetParameter1dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5171 private static native
void dispatch_cgGLSetParameter1dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5176 if(v !=
null && v.length <= v_offset)
5177 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5178 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter1dv;
5180 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter1dv"));
5182 dispatch_cgGLSetParameter1dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5189 final boolean v_is_direct = Buffers.isDirect(v);
5190 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter2dv;
5192 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter2dv"));
5194 dispatch_cgGLSetParameter2dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5199 private static native
void dispatch_cgGLSetParameter2dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5204 if(v !=
null && v.length <= v_offset)
5205 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5206 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter2dv;
5208 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter2dv"));
5210 dispatch_cgGLSetParameter2dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5217 final boolean v_is_direct = Buffers.isDirect(v);
5218 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter3dv;
5220 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter3dv"));
5222 dispatch_cgGLSetParameter3dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5227 private static native
void dispatch_cgGLSetParameter3dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5232 if(v !=
null && v.length <= v_offset)
5233 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5234 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter3dv;
5236 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter3dv"));
5238 dispatch_cgGLSetParameter3dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5245 final boolean v_is_direct = Buffers.isDirect(v);
5246 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter4dv;
5248 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter4dv"));
5250 dispatch_cgGLSetParameter4dv1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5255 private static native
void dispatch_cgGLSetParameter4dv1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5260 if(v !=
null && v.length <= v_offset)
5261 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5262 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameter4dv;
5264 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameter4dv"));
5266 dispatch_cgGLSetParameter4dv1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5273 final boolean v_is_direct = Buffers.isDirect(v);
5274 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter1f;
5276 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter1f"));
5278 dispatch_cgGLGetParameter1f1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5283 private static native
void dispatch_cgGLGetParameter1f1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5288 if(v !=
null && v.length <= v_offset)
5289 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5290 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter1f;
5292 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter1f"));
5294 dispatch_cgGLGetParameter1f1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5301 final boolean v_is_direct = Buffers.isDirect(v);
5302 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter2f;
5304 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter2f"));
5306 dispatch_cgGLGetParameter2f1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5311 private static native
void dispatch_cgGLGetParameter2f1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5316 if(v !=
null && v.length <= v_offset)
5317 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5318 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter2f;
5320 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter2f"));
5322 dispatch_cgGLGetParameter2f1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5329 final boolean v_is_direct = Buffers.isDirect(v);
5330 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter3f;
5332 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter3f"));
5334 dispatch_cgGLGetParameter3f1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5339 private static native
void dispatch_cgGLGetParameter3f1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5344 if(v !=
null && v.length <= v_offset)
5345 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5346 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter3f;
5348 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter3f"));
5350 dispatch_cgGLGetParameter3f1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5357 final boolean v_is_direct = Buffers.isDirect(v);
5358 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter4f;
5360 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter4f"));
5362 dispatch_cgGLGetParameter4f1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5367 private static native
void dispatch_cgGLGetParameter4f1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5372 if(v !=
null && v.length <= v_offset)
5373 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5374 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter4f;
5376 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter4f"));
5378 dispatch_cgGLGetParameter4f1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5385 final boolean v_is_direct = Buffers.isDirect(v);
5386 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter1d;
5388 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter1d"));
5390 dispatch_cgGLGetParameter1d1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5395 private static native
void dispatch_cgGLGetParameter1d1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5400 if(v !=
null && v.length <= v_offset)
5401 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5402 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter1d;
5404 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter1d"));
5406 dispatch_cgGLGetParameter1d1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5413 final boolean v_is_direct = Buffers.isDirect(v);
5414 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter2d;
5416 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter2d"));
5418 dispatch_cgGLGetParameter2d1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5423 private static native
void dispatch_cgGLGetParameter2d1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5428 if(v !=
null && v.length <= v_offset)
5429 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5430 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter2d;
5432 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter2d"));
5434 dispatch_cgGLGetParameter2d1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5441 final boolean v_is_direct = Buffers.isDirect(v);
5442 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter3d;
5444 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter3d"));
5446 dispatch_cgGLGetParameter3d1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5451 private static native
void dispatch_cgGLGetParameter3d1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5456 if(v !=
null && v.length <= v_offset)
5457 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5458 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter3d;
5460 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter3d"));
5462 dispatch_cgGLGetParameter3d1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5469 final boolean v_is_direct = Buffers.isDirect(v);
5470 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter4d;
5472 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter4d"));
5474 dispatch_cgGLGetParameter4d1(((param ==
null) ?
null : param.
getBuffer()), v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5479 private static native
void dispatch_cgGLGetParameter4d1(ByteBuffer param, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5484 if(v !=
null && v.length <= v_offset)
5485 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5486 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameter4d;
5488 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameter4d"));
5490 dispatch_cgGLGetParameter4d1(((param ==
null) ?
null : param.
getBuffer()), v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5497 final boolean v_is_direct = Buffers.isDirect(v);
5498 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray1f;
5500 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray1f"));
5502 dispatch_cgGLSetParameterArray1f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5507 private static native
void dispatch_cgGLSetParameterArray1f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5512 if(v !=
null && v.length <= v_offset)
5513 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5514 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray1f;
5516 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray1f"));
5518 dispatch_cgGLSetParameterArray1f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5525 final boolean v_is_direct = Buffers.isDirect(v);
5526 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray2f;
5528 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray2f"));
5530 dispatch_cgGLSetParameterArray2f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5535 private static native
void dispatch_cgGLSetParameterArray2f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5540 if(v !=
null && v.length <= v_offset)
5541 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5542 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray2f;
5544 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray2f"));
5546 dispatch_cgGLSetParameterArray2f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5553 final boolean v_is_direct = Buffers.isDirect(v);
5554 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray3f;
5556 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray3f"));
5558 dispatch_cgGLSetParameterArray3f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5563 private static native
void dispatch_cgGLSetParameterArray3f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5568 if(v !=
null && v.length <= v_offset)
5569 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5570 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray3f;
5572 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray3f"));
5574 dispatch_cgGLSetParameterArray3f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5581 final boolean v_is_direct = Buffers.isDirect(v);
5582 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray4f;
5584 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray4f"));
5586 dispatch_cgGLSetParameterArray4f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5591 private static native
void dispatch_cgGLSetParameterArray4f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5596 if(v !=
null && v.length <= v_offset)
5597 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5598 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray4f;
5600 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray4f"));
5602 dispatch_cgGLSetParameterArray4f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5609 final boolean v_is_direct = Buffers.isDirect(v);
5610 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray1d;
5612 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray1d"));
5614 dispatch_cgGLSetParameterArray1d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5619 private static native
void dispatch_cgGLSetParameterArray1d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5624 if(v !=
null && v.length <= v_offset)
5625 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5626 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray1d;
5628 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray1d"));
5630 dispatch_cgGLSetParameterArray1d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5637 final boolean v_is_direct = Buffers.isDirect(v);
5638 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray2d;
5640 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray2d"));
5642 dispatch_cgGLSetParameterArray2d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5647 private static native
void dispatch_cgGLSetParameterArray2d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5652 if(v !=
null && v.length <= v_offset)
5653 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5654 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray2d;
5656 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray2d"));
5658 dispatch_cgGLSetParameterArray2d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5665 final boolean v_is_direct = Buffers.isDirect(v);
5666 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray3d;
5668 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray3d"));
5670 dispatch_cgGLSetParameterArray3d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5675 private static native
void dispatch_cgGLSetParameterArray3d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5680 if(v !=
null && v.length <= v_offset)
5681 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5682 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray3d;
5684 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray3d"));
5686 dispatch_cgGLSetParameterArray3d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5693 final boolean v_is_direct = Buffers.isDirect(v);
5694 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray4d;
5696 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray4d"));
5698 dispatch_cgGLSetParameterArray4d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5703 private static native
void dispatch_cgGLSetParameterArray4d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5708 if(v !=
null && v.length <= v_offset)
5709 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5710 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterArray4d;
5712 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterArray4d"));
5714 dispatch_cgGLSetParameterArray4d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5721 final boolean v_is_direct = Buffers.isDirect(v);
5722 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray1f;
5724 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray1f"));
5726 dispatch_cgGLGetParameterArray1f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5731 private static native
void dispatch_cgGLGetParameterArray1f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5736 if(v !=
null && v.length <= v_offset)
5737 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5738 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray1f;
5740 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray1f"));
5742 dispatch_cgGLGetParameterArray1f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5749 final boolean v_is_direct = Buffers.isDirect(v);
5750 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray2f;
5752 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray2f"));
5754 dispatch_cgGLGetParameterArray2f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5759 private static native
void dispatch_cgGLGetParameterArray2f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5764 if(v !=
null && v.length <= v_offset)
5765 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5766 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray2f;
5768 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray2f"));
5770 dispatch_cgGLGetParameterArray2f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5777 final boolean v_is_direct = Buffers.isDirect(v);
5778 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray3f;
5780 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray3f"));
5782 dispatch_cgGLGetParameterArray3f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5787 private static native
void dispatch_cgGLGetParameterArray3f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5792 if(v !=
null && v.length <= v_offset)
5793 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5794 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray3f;
5796 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray3f"));
5798 dispatch_cgGLGetParameterArray3f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5805 final boolean v_is_direct = Buffers.isDirect(v);
5806 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray4f;
5808 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray4f"));
5810 dispatch_cgGLGetParameterArray4f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5815 private static native
void dispatch_cgGLGetParameterArray4f1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5820 if(v !=
null && v.length <= v_offset)
5821 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5822 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray4f;
5824 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray4f"));
5826 dispatch_cgGLGetParameterArray4f1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_FLOAT * v_offset,
false, __addr_);
5833 final boolean v_is_direct = Buffers.isDirect(v);
5834 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray1d;
5836 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray1d"));
5838 dispatch_cgGLGetParameterArray1d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5843 private static native
void dispatch_cgGLGetParameterArray1d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5848 if(v !=
null && v.length <= v_offset)
5849 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5850 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray1d;
5852 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray1d"));
5854 dispatch_cgGLGetParameterArray1d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5861 final boolean v_is_direct = Buffers.isDirect(v);
5862 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray2d;
5864 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray2d"));
5866 dispatch_cgGLGetParameterArray2d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5871 private static native
void dispatch_cgGLGetParameterArray2d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5876 if(v !=
null && v.length <= v_offset)
5877 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5878 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray2d;
5880 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray2d"));
5882 dispatch_cgGLGetParameterArray2d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5889 final boolean v_is_direct = Buffers.isDirect(v);
5890 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray3d;
5892 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray3d"));
5894 dispatch_cgGLGetParameterArray3d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5899 private static native
void dispatch_cgGLGetParameterArray3d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5904 if(v !=
null && v.length <= v_offset)
5905 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5906 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray3d;
5908 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray3d"));
5910 dispatch_cgGLGetParameterArray3d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5917 final boolean v_is_direct = Buffers.isDirect(v);
5918 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray4d;
5920 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray4d"));
5922 dispatch_cgGLGetParameterArray4d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v_is_direct ? v : Buffers.getArray(v), v_is_direct ? Buffers.getDirectBufferByteOffset(v) : Buffers.getIndirectBufferByteOffset(v), v_is_direct, __addr_);
5927 private static native
void dispatch_cgGLGetParameterArray4d1(ByteBuffer param,
long offset,
long nelements, Object v,
int v_byte_offset,
boolean v_is_direct,
long procAddress);
5932 if(v !=
null && v.length <= v_offset)
5933 throw new CgException(
"array offset argument \"v_offset\" (" + v_offset +
") equals or exceeds array length (" + v.length +
")");
5934 final long __addr_ = cgProcAddressTable._addressof_cgGLGetParameterArray4d;
5936 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetParameterArray4d"));
5938 dispatch_cgGLGetParameterArray4d1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, v, Buffers.SIZEOF_DOUBLE * v_offset,
false, __addr_);
5945 if (!Buffers.isDirect(pointer))
5946 throw new CgException(
"Argument \"pointer\" is not a direct buffer");
5947 final long __addr_ = cgProcAddressTable._addressof_cgGLSetParameterPointer;
5949 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetParameterPointer"));
5951 dispatch_cgGLSetParameterPointer0(((param ==
null) ?
null : param.
getBuffer()), fsize, type, stride, pointer, Buffers.getDirectBufferByteOffset(pointer), __addr_);
5956 private static native
void dispatch_cgGLSetParameterPointer0(ByteBuffer param,
int fsize,
int type,
int stride, Object pointer,
int pointer_byte_offset,
long procAddress);
5961 final long __addr_ = cgProcAddressTable._addressof_cgGLEnableClientState;
5963 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLEnableClientState"));
5965 dispatch_cgGLEnableClientState1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
5969 private static native
void dispatch_cgGLEnableClientState1(ByteBuffer param,
long procAddress);
5974 final long __addr_ = cgProcAddressTable._addressof_cgGLDisableClientState;
5976 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLDisableClientState"));
5978 dispatch_cgGLDisableClientState1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
5982 private static native
void dispatch_cgGLDisableClientState1(ByteBuffer param,
long procAddress);
5988 final boolean matrix_is_direct = Buffers.isDirect(matrix);
5989 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterdr;
5991 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterdr"));
5993 dispatch_cgGLSetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
5998 private static native
void dispatch_cgGLSetMatrixParameterdr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6003 if(matrix !=
null && matrix.length <= matrix_offset)
6004 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6005 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterdr;
6007 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterdr"));
6009 dispatch_cgGLSetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
6016 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6017 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterfr;
6019 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterfr"));
6021 dispatch_cgGLSetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6026 private static native
void dispatch_cgGLSetMatrixParameterfr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6031 if(matrix !=
null && matrix.length <= matrix_offset)
6032 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6033 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterfr;
6035 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterfr"));
6037 dispatch_cgGLSetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
6044 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6045 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterdc;
6047 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterdc"));
6049 dispatch_cgGLSetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6054 private static native
void dispatch_cgGLSetMatrixParameterdc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6059 if(matrix !=
null && matrix.length <= matrix_offset)
6060 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6061 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterdc;
6063 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterdc"));
6065 dispatch_cgGLSetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
6072 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6073 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterfc;
6075 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterfc"));
6077 dispatch_cgGLSetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6082 private static native
void dispatch_cgGLSetMatrixParameterfc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6087 if(matrix !=
null && matrix.length <= matrix_offset)
6088 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6089 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterfc;
6091 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterfc"));
6093 dispatch_cgGLSetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
6100 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6101 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterdr;
6103 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterdr"));
6105 dispatch_cgGLGetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6110 private static native
void dispatch_cgGLGetMatrixParameterdr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6115 if(matrix !=
null && matrix.length <= matrix_offset)
6116 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6117 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterdr;
6119 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterdr"));
6121 dispatch_cgGLGetMatrixParameterdr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
6128 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6129 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterfr;
6131 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterfr"));
6133 dispatch_cgGLGetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6138 private static native
void dispatch_cgGLGetMatrixParameterfr1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6143 if(matrix !=
null && matrix.length <= matrix_offset)
6144 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6145 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterfr;
6147 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterfr"));
6149 dispatch_cgGLGetMatrixParameterfr1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
6156 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6157 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterdc;
6159 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterdc"));
6161 dispatch_cgGLGetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6166 private static native
void dispatch_cgGLGetMatrixParameterdc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6171 if(matrix !=
null && matrix.length <= matrix_offset)
6172 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6173 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterdc;
6175 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterdc"));
6177 dispatch_cgGLGetMatrixParameterdc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_DOUBLE * matrix_offset,
false, __addr_);
6184 final boolean matrix_is_direct = Buffers.isDirect(matrix);
6185 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterfc;
6187 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterfc"));
6189 dispatch_cgGLGetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix_is_direct ? matrix : Buffers.getArray(matrix), matrix_is_direct ? Buffers.getDirectBufferByteOffset(matrix) : Buffers.getIndirectBufferByteOffset(matrix), matrix_is_direct, __addr_);
6194 private static native
void dispatch_cgGLGetMatrixParameterfc1(ByteBuffer param, Object matrix,
int matrix_byte_offset,
boolean matrix_is_direct,
long procAddress);
6199 if(matrix !=
null && matrix.length <= matrix_offset)
6200 throw new CgException(
"array offset argument \"matrix_offset\" (" + matrix_offset +
") equals or exceeds array length (" + matrix.length +
")");
6201 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterfc;
6203 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterfc"));
6205 dispatch_cgGLGetMatrixParameterfc1(((param ==
null) ?
null : param.
getBuffer()), matrix, Buffers.SIZEOF_FLOAT * matrix_offset,
false, __addr_);
6215 final long __addr_ = cgProcAddressTable._addressof_cgGLSetStateMatrixParameter;
6217 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetStateMatrixParameter"));
6219 dispatch_cgGLSetStateMatrixParameter1(((param ==
null) ?
null : param.
getBuffer()), matrix, transform, __addr_);
6227 private static native
void dispatch_cgGLSetStateMatrixParameter1(ByteBuffer param,
int matrix,
int transform,
long procAddress);
6233 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6234 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArrayfc;
6236 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArrayfc"));
6238 dispatch_cgGLSetMatrixParameterArrayfc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6243 private static native
void dispatch_cgGLSetMatrixParameterArrayfc1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6248 if(matrices !=
null && matrices.length <= matrices_offset)
6249 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6250 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArrayfc;
6252 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArrayfc"));
6254 dispatch_cgGLSetMatrixParameterArrayfc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_FLOAT * matrices_offset,
false, __addr_);
6261 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6262 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArrayfr;
6264 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArrayfr"));
6266 dispatch_cgGLSetMatrixParameterArrayfr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6271 private static native
void dispatch_cgGLSetMatrixParameterArrayfr1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6276 if(matrices !=
null && matrices.length <= matrices_offset)
6277 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6278 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArrayfr;
6280 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArrayfr"));
6282 dispatch_cgGLSetMatrixParameterArrayfr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_FLOAT * matrices_offset,
false, __addr_);
6289 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6290 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArraydc;
6292 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArraydc"));
6294 dispatch_cgGLSetMatrixParameterArraydc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6299 private static native
void dispatch_cgGLSetMatrixParameterArraydc1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6304 if(matrices !=
null && matrices.length <= matrices_offset)
6305 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6306 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArraydc;
6308 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArraydc"));
6310 dispatch_cgGLSetMatrixParameterArraydc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_DOUBLE * matrices_offset,
false, __addr_);
6317 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6318 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArraydr;
6320 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArraydr"));
6322 dispatch_cgGLSetMatrixParameterArraydr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6327 private static native
void dispatch_cgGLSetMatrixParameterArraydr1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6332 if(matrices !=
null && matrices.length <= matrices_offset)
6333 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6334 final long __addr_ = cgProcAddressTable._addressof_cgGLSetMatrixParameterArraydr;
6336 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetMatrixParameterArraydr"));
6338 dispatch_cgGLSetMatrixParameterArraydr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_DOUBLE * matrices_offset,
false, __addr_);
6345 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6346 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArrayfc;
6348 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArrayfc"));
6350 dispatch_cgGLGetMatrixParameterArrayfc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6355 private static native
void dispatch_cgGLGetMatrixParameterArrayfc1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6360 if(matrices !=
null && matrices.length <= matrices_offset)
6361 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6362 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArrayfc;
6364 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArrayfc"));
6366 dispatch_cgGLGetMatrixParameterArrayfc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_FLOAT * matrices_offset,
false, __addr_);
6373 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6374 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArrayfr;
6376 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArrayfr"));
6378 dispatch_cgGLGetMatrixParameterArrayfr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6383 private static native
void dispatch_cgGLGetMatrixParameterArrayfr1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6388 if(matrices !=
null && matrices.length <= matrices_offset)
6389 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6390 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArrayfr;
6392 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArrayfr"));
6394 dispatch_cgGLGetMatrixParameterArrayfr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_FLOAT * matrices_offset,
false, __addr_);
6401 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6402 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArraydc;
6404 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArraydc"));
6406 dispatch_cgGLGetMatrixParameterArraydc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6411 private static native
void dispatch_cgGLGetMatrixParameterArraydc1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6416 if(matrices !=
null && matrices.length <= matrices_offset)
6417 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6418 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArraydc;
6420 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArraydc"));
6422 dispatch_cgGLGetMatrixParameterArraydc1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_DOUBLE * matrices_offset,
false, __addr_);
6429 final boolean matrices_is_direct = Buffers.isDirect(matrices);
6430 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArraydr;
6432 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArraydr"));
6434 dispatch_cgGLGetMatrixParameterArraydr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices_is_direct ? matrices : Buffers.getArray(matrices), matrices_is_direct ? Buffers.getDirectBufferByteOffset(matrices) : Buffers.getIndirectBufferByteOffset(matrices), matrices_is_direct, __addr_);
6439 private static native
void dispatch_cgGLGetMatrixParameterArraydr1(ByteBuffer param,
long offset,
long nelements, Object matrices,
int matrices_byte_offset,
boolean matrices_is_direct,
long procAddress);
6444 if(matrices !=
null && matrices.length <= matrices_offset)
6445 throw new CgException(
"array offset argument \"matrices_offset\" (" + matrices_offset +
") equals or exceeds array length (" + matrices.length +
")");
6446 final long __addr_ = cgProcAddressTable._addressof_cgGLGetMatrixParameterArraydr;
6448 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetMatrixParameterArraydr"));
6450 dispatch_cgGLGetMatrixParameterArraydr1(((param ==
null) ?
null : param.
getBuffer()), offset, nelements, matrices, Buffers.SIZEOF_DOUBLE * matrices_offset,
false, __addr_);
6456 final long __addr_ = cgProcAddressTable._addressof_cgGLSetTextureParameter;
6458 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetTextureParameter"));
6460 dispatch_cgGLSetTextureParameter1(((param ==
null) ?
null : param.
getBuffer()), texobj, __addr_);
6464 private static native
void dispatch_cgGLSetTextureParameter1(ByteBuffer param,
int texobj,
long procAddress);
6469 final long __addr_ = cgProcAddressTable._addressof_cgGLGetTextureParameter;
6471 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetTextureParameter"));
6473 return dispatch_cgGLGetTextureParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
6477 private static native
int dispatch_cgGLGetTextureParameter1(ByteBuffer param,
long procAddress);
6482 final long __addr_ = cgProcAddressTable._addressof_cgGLEnableTextureParameter;
6484 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLEnableTextureParameter"));
6486 dispatch_cgGLEnableTextureParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
6490 private static native
void dispatch_cgGLEnableTextureParameter1(ByteBuffer param,
long procAddress);
6495 final long __addr_ = cgProcAddressTable._addressof_cgGLDisableTextureParameter;
6497 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLDisableTextureParameter"));
6499 dispatch_cgGLDisableTextureParameter1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
6503 private static native
void dispatch_cgGLDisableTextureParameter1(ByteBuffer param,
long procAddress);
6508 final long __addr_ = cgProcAddressTable._addressof_cgGLGetTextureEnum;
6510 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetTextureEnum"));
6512 return dispatch_cgGLGetTextureEnum1(((param ==
null) ?
null : param.
getBuffer()), __addr_);
6516 private static native
int dispatch_cgGLGetTextureEnum1(ByteBuffer param,
long procAddress);
6521 final long __addr_ = cgProcAddressTable._addressof_cgGLSetManageTextureParameters;
6523 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetManageTextureParameters"));
6525 dispatch_cgGLSetManageTextureParameters1(((ctx ==
null) ?
null : ctx.
getBuffer()), flag, __addr_);
6529 private static native
void dispatch_cgGLSetManageTextureParameters1(ByteBuffer ctx,
boolean flag,
long procAddress);
6534 final long __addr_ = cgProcAddressTable._addressof_cgGLGetManageTextureParameters;
6536 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLGetManageTextureParameters"));
6538 return dispatch_cgGLGetManageTextureParameters1(((ctx ==
null) ?
null : ctx.
getBuffer()), __addr_);
6542 private static native
boolean dispatch_cgGLGetManageTextureParameters1(ByteBuffer ctx,
long procAddress);
6547 final long __addr_ = cgProcAddressTable._addressof_cgGLSetupSampler;
6549 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLSetupSampler"));
6551 dispatch_cgGLSetupSampler1(((param ==
null) ?
null : param.
getBuffer()), texobj, __addr_);
6555 private static native
void dispatch_cgGLSetupSampler1(ByteBuffer param,
int texobj,
long procAddress);
6560 final long __addr_ = cgProcAddressTable._addressof_cgGLRegisterStates;
6562 throw new UnsupportedOperationException(String.format(
"Method \"%s\" not available",
"cgGLRegisterStates"));
6564 dispatch_cgGLRegisterStates1(((arg0 ==
null) ?
null : arg0.
getBuffer()), __addr_);
6568 private static native
void dispatch_cgGLRegisterStates1(ByteBuffer arg0,
long procAddress);
6572 private static final DynamicLibraryBundle cgDynamicLookupHelper;
6577 if(
null==cgProcAddressTable) {
6578 throw new RuntimeException(
"Couldn't instantiate CgProcAddressTable");
6581 cgDynamicLookupHelper = SecurityUtil.doPrivileged(
new PrivilegedAction<DynamicLibraryBundle>() {
6582 public DynamicLibraryBundle run() {
6583 return new DynamicLibraryBundle(
new CgDynamicLibraryBundleInfo());
6585 if(
null==cgDynamicLookupHelper) {
6586 throw new RuntimeException(
"Null CgDynamicLookupHelper");
6588 if(!cgDynamicLookupHelper.isToolLibLoaded()) {
6589 throw new RuntimeException(
"Couln't load native Cg or CgGL library");
6591 if(!cgDynamicLookupHelper.isGlueLibLoaded(CgDynamicLibraryBundleInfo.getCgGlueLibIndex())) {
6592 throw new RuntimeException(
"Couln't load native GLue/JNI library");
6594 cgProcAddressTable.reset(cgDynamicLookupHelper);
6601 if (stream ==
null) {
6602 throw new java.io.IOException(
"null stream");
6604 stream =
new java.io.BufferedInputStream(stream);
6605 int avail = stream.available();
6606 byte[] data =
new byte[avail];
6610 if (pos + avail > data.length) {
6611 byte[] newData =
new byte[pos + avail];
6612 System.arraycopy(data, 0, newData, 0, pos);
6615 numRead = stream.read(data, pos, avail);
6619 avail = stream.available();
6620 }
while (avail > 0 && numRead >= 0);
6621 String program =
new String(data, 0, pos,
"US-ASCII");
6622 return cgCreateProgram(ctx, program_type, program, profile, entry, args);
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGannotation create()
Returns a new instance with all bytes set to zero.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGcontext create()
Returns a new instance with all bytes set to zero.
static CGeffect create()
Returns a new instance with all bytes set to zero.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGparameter create()
Returns a new instance with all bytes set to zero.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGpass create()
Returns a new instance with all bytes set to zero.
static CGprogram create()
Returns a new instance with all bytes set to zero.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGstate create()
Returns a new instance with all bytes set to zero.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGstateassignment create()
Returns a new instance with all bytes set to zero.
final java.nio.ByteBuffer getBuffer()
Return the underlying native direct ByteBuffer.
static CGtechnique create()
Returns a new instance with all bytes set to zero.
A generic exception for errors that occur throughout the NVidia Cg binding, as a substitute for Runti...
static final int CG_TANGENT6
Defined as part of enum type "CGresource" with expression '2571', CType: int.
static final int CG_HALF1x4
Defined as part of enum type "CGtype" with expression '0x408', CType: int.
static void cgGLSetParameterArray4f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray4f(CGparam...
static void cgGLSetParameterArray4d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray4d(CGparam...
static final int CG_ATTR8
Defined as part of enum type "CGresource" with expression '2121', CType: int.
static final int CG_BOOL3
Defined as part of enum type "CGtype" with expression '0x45d', CType: int.
static final int CG_ARRAY_DIMENSIONS_DO_NOT_MATCH_ERROR
Defined as part of enum type "CGerror" with expression '37', CType: int.
static final int CG_SAMPLE9
Defined as part of enum type "CGresource" with expression '2958', CType: int.
static void cgSetStringParameterValue(CGparameter param, String str)
Entry point (through function pointer) to C language function: void cgSetStringParameterValue(CGpar...
static final int CG_NORMAL3
Defined as part of enum type "CGresource" with expression '3095', CType: int.
static final int CG_FIXED3
Defined as part of enum type "CGtype" with expression '0x430', CType: int.
static void cgGLSetParameter4f(CGparameter param, float x, float y, float z, float w)
Entry point (through function pointer) to C language function: void cgGLSetParameter4f(CGparameter ...
static void cgGLGetParameter4d(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter4d(CGparameter ...
static void cgGetMatrixParameterdc(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterdc(CGparame...
static final int CG_NOT_ROOT_PARAMETER_ERROR
Defined as part of enum type "CGerror" with expression '29', CType: int.
static void cgGLGetMatrixParameterArraydc(CGparameter param, long offset, long nelements, DoubleBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArraydc(C...
static final int CG_COLOR9
Defined as part of enum type "CGresource" with expression '2766', CType: int.
static final int CG_PROGRAM_BIND_ERROR
Defined as part of enum type "CGerror" with expression '5', CType: int.
static final int CG_FIXED2x2
Defined as part of enum type "CGtype" with expression '0x437', CType: int.
static void cgGLDisableClientState(CGparameter param)
Entry point (through function pointer) to C language function: void cgGLDisableClientState(CGparame...
static final int CG_OBJECT
Defined as part of enum type "CGenum" with expression '4113', CType: int.
static void cgSetParameter3f(CGparameter param, float x, float y, float z)
Entry point (through function pointer) to C language function: void cgSetParameter3f(CGparameter pa...
static final int CG_COLUMN_MAJOR
Defined as part of enum type "CGenum" with expression '4121', CType: int.
static final int CG_FLOAT4x1
Defined as part of enum type "CGtype" with expression '0x425', CType: int.
static final int CG_TEXUNIT8
Defined as part of enum type "CGresource" with expression '2056', CType: int.
static final int CG_ATTR6
Defined as part of enum type "CGresource" with expression '2119', CType: int.
static final int CG_COLOR5
Defined as part of enum type "CGresource" with expression '2762', CType: int.
static void cgSetParameter3dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter3dv(CGparameter p...
static final int CG_INT3x3
Defined as part of enum type "CGtype" with expression '0x454', CType: int.
static final int CG_COMPILER_ERROR
Defined as part of enum type "CGerror" with expression '1', CType: int.
static final int CG_FOG8
Defined as part of enum type "CGresource" with expression '2925', CType: int.
static int cgGetArrayDimension(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetArrayDimension(CGparameter ...
static final int CG_COL1
Defined as part of enum type "CGresource" with expression '2246', CType: int.
static final int CG_TEXUNIT12
Defined as part of enum type "CGresource" with expression '2060', CType: int.
static final int CG_PARAMETERCLASS_STRUCT
Defined as part of enum type "CGparameterclass" with expression '0x4', CType: int.
static final int CG_PSIZE4
Defined as part of enum type "CGresource" with expression '2825', CType: int.
static void cgGLGetParameterArray4d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray4d(CGparam...
static final int CG_DIFFUSE0
Defined as part of enum type "CGresource" with expression '2501', CType: int.
static final int CG_INT1x4
Defined as part of enum type "CGtype" with expression '0x44d', CType: int.
static final int CG_BOOL4x2
Defined as part of enum type "CGtype" with expression '0x46c', CType: int.
static String cgGetAnnotationName(CGannotation arg0)
Entry point (through function pointer) to C language function: const char * cgGetAnnotationName(CGa...
static CGstate cgCreateArrayState(CGcontext arg0, String name, int arg2, int nelems)
Entry point (through function pointer) to C language function: CGstate cgCreateArrayState(CGcontext...
static final int CG_INVALID_STATE_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '41', CType: int.
static final int CG_SAMPLE0
Defined as part of enum type "CGresource" with expression '2949', CType: int.
static final int CG_SAMPLERCUBE
Defined as part of enum type "CGtype" with expression '0x42d', CType: int.
static final int CG_PROFILE_PS_1_1
Defined as part of enum type "CGprofile" with expression '6159', CType: int.
static void cgSetParameterValuefr(CGparameter param, int n, FloatBuffer vals)
Entry point (through function pointer) to C language function: void cgSetParameterValuefr(CGparamet...
static final int CG_GL_MATRIX_IDENTITY
Defined as part of enum type "CGGLenum" with expression '0', CType: int.
static final int CG_DEPTH5
Defined as part of enum type "CGresource" with expression '2938', CType: int.
static int cgGetProfile(String profile_string)
Entry point (through function pointer) to C language function: CGprofile cgGetProfile(const char * ...
static void cgSetParameterValuefc(CGparameter param, int n, float[] vals, int vals_offset)
Entry point (through function pointer) to C language function: void cgSetParameterValuefc(CGparamet...
static void cgSetMatrixParameterdc(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterdc(CGparame...
static final int CG_BLENDWEIGHT15
Defined as part of enum type "CGresource" with expression '3043', CType: int.
static void cgGLGetParameterArray3d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray3d(CGparam...
static int cgGetAnnotationType(CGannotation arg0)
Entry point (through function pointer) to C language function: CGtype cgGetAnnotationType(CGannotat...
static final int CG_SAMPLER3D
Defined as part of enum type "CGtype" with expression '0x42b', CType: int.
static void cgGLSetMatrixParameterfc(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterfc(CGpara...
static final int CG_PROFILE_VP20
Defined as part of enum type "CGprofile" with expression '6146', CType: int.
static final int CG_BLENDINDICES5
Defined as part of enum type "CGresource" with expression '2698', CType: int.
static final int CG_NOT_MATRIX_PARAM_ERROR
Defined as part of enum type "CGerror" with expression '9', CType: int.
static CGeffect cgGetTechniqueEffect(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGeffect cgGetTechniqueEffect(CGtech...
static final int CG_INT4
Defined as part of enum type "CGtype" with expression '0x449', CType: int.
static final int CG_HALF4x1
Defined as part of enum type "CGtype" with expression '0x411', CType: int.
static final int CG_HALF2x4
Defined as part of enum type "CGtype" with expression '0x40c', CType: int.
static final int CG_FOG4
Defined as part of enum type "CGresource" with expression '2921', CType: int.
static final int CG_BLENDINDICES8
Defined as part of enum type "CGresource" with expression '2701', CType: int.
static final int CG_ATTR7
Defined as part of enum type "CGresource" with expression '2120', CType: int.
static void cgSetParameter2i(CGparameter param, int x, int y)
Entry point (through function pointer) to C language function: void cgSetParameter2i(CGparameter pa...
static final int CG_COMPILE_MANUAL
Defined as part of enum type "CGenum" with expression '4114', CType: int.
static void cgGLGetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, float[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArrayfc(C...
static final int CG_COLOR1
Defined as part of enum type "CGresource" with expression '2758', CType: int.
static final int CG_FOG9
Defined as part of enum type "CGresource" with expression '2926', CType: int.
static final int CG_BLENDWEIGHT5
Defined as part of enum type "CGresource" with expression '3033', CType: int.
static void cgSetPassProgramParameters(CGprogram arg0)
Entry point (through function pointer) to C language function: void cgSetPassProgramParameters(CGpr...
static final int CG_PROFILE_PS_1_2
Defined as part of enum type "CGprofile" with expression '6160', CType: int.
static final int CG_POSITION11
Defined as part of enum type "CGresource" with expression '2448', CType: int.
static final int CG_BINORMAL13
Defined as part of enum type "CGresource" with expression '2898', CType: int.
static final int CG_TEXUNIT10
Defined as part of enum type "CGresource" with expression '2058', CType: int.
static final int CG_NORMAL8
Defined as part of enum type "CGresource" with expression '3100', CType: int.
static final int CG_PARAMETERCLASS_ARRAY
Defined as part of enum type "CGparameterclass" with expression '0x5', CType: int.
static void cgGLGetParameterArray1d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray1d(CGparam...
static void cgGLSetMatrixParameterdc(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterdc(CGpara...
static final int CG_ATTR14
Defined as part of enum type "CGresource" with expression '2127', CType: int.
static final int CG_INVALID_PARAMETER_TYPE_ERROR
Defined as part of enum type "CGerror" with expression '32', CType: int.
static final int CG_ATTR4
Defined as part of enum type "CGresource" with expression '2117', CType: int.
static final int CG_COL2
Defined as part of enum type "CGresource" with expression '2247', CType: int.
static final int CG_TEX1
Defined as part of enum type "CGresource" with expression '2180', CType: int.
static final int CG_SAMPLE14
Defined as part of enum type "CGresource" with expression '2963', CType: int.
static final int CG_SAMPLE15
Defined as part of enum type "CGresource" with expression '2964', CType: int.
static final int CG_PSIZE9
Defined as part of enum type "CGresource" with expression '2830', CType: int.
static final int CG_DEPTH7
Defined as part of enum type "CGresource" with expression '2940', CType: int.
static void cgSetMatrixParameteric(CGparameter param, IntBuffer matrix)
Entry point (through function pointer) to C language function: void cgSetMatrixParameteric(CGparame...
static final int CG_ATTR11
Defined as part of enum type "CGresource" with expression '2124', CType: int.
static void cgSetMatrixParameterfr(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterfr(CGparame...
static final int CG_FLOAT4
Defined as part of enum type "CGtype" with expression '0x418', CType: int.
static int cgGetParameterResource(CGparameter param)
Entry point (through function pointer) to C language function: CGresource cgGetParameterResource(CG...
static final int CG_CONFLICTING_PARAMETER_TYPES_ERROR
Defined as part of enum type "CGerror" with expression '25', CType: int.
static final int CG_TANGENT1
Defined as part of enum type "CGresource" with expression '2566', CType: int.
static final int CG_FIXED2x3
Defined as part of enum type "CGtype" with expression '0x438', CType: int.
static CGparameter cgGetFirstEffectParameter(CGeffect arg0)
Entry point (through function pointer) to C language function: CGparameter cgGetFirstEffectParamete...
static String cgGetResourceString(int resource)
Entry point (through function pointer) to C language function: const char * cgGetResourceString(CGr...
static int cgGetArraySize(CGparameter param, int dimension)
Entry point (through function pointer) to C language function: int cgGetArraySize(CGparameter param...
static final int CG_GL_MATRIX_INVERSE_TRANSPOSE
Defined as part of enum type "CGGLenum" with expression '3', CType: int.
static void cgDestroyProgram(CGprogram program)
Entry point (through function pointer) to C language function: void cgDestroyProgram(CGprogram prog...
static final int CG_BOOL4x4
Defined as part of enum type "CGtype" with expression '0x46e', CType: int.
static final int CG_TANGENT15
Defined as part of enum type "CGresource" with expression '2580', CType: int.
static final int CG_PROFILE_MAX
Defined as part of enum type "CGprofile" with expression '7100', CType: int.
static CGeffect cgCreateEffect(CGcontext arg0, String code, String[] args)
Entry point (through function pointer) to C language function: CGeffect cgCreateEffect(CGcontext,...
static void cgGLSetParameterArray1d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray1d(CGparam...
static void cgSetParameter2d(CGparameter param, double x, double y)
Entry point (through function pointer) to C language function: void cgSetParameter2d(CGparameter pa...
static void cgGLGetParameter2f(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter2f(CGparameter ...
static void cgGLGetMatrixParameterfr(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterfr(CGpara...
static void cgGLSetParameter1fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter1fv(CGparameter...
static final int CG_TEXCOORD8
Defined as part of enum type "CGresource" with expression '3228', CType: int.
static int cgGetResource(String resource_string)
Entry point (through function pointer) to C language function: CGresource cgGetResource(const char ...
static final int CG_HALF4
Defined as part of enum type "CGtype" with expression '0x404', CType: int.
static void cgSetParameterValueir(CGparameter param, int n, int[] vals, int vals_offset)
Entry point (through function pointer) to C language function: void cgSetParameterValueir(CGparamet...
static void cgGLGetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, FloatBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArrayfc(C...
static void cgGLGetMatrixParameterfr(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterfr(CGpara...
static final int CG_TEXCOORD3
Defined as part of enum type "CGresource" with expression '3223', CType: int.
static CGstate cgGetStateAssignmentState(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGstate cgGetStateAssignmentState(CG...
static CGannotation cgGetNamedTechniqueAnnotation(CGtechnique arg0, String arg1)
Entry point (through function pointer) to C language function: CGannotation cgGetNamedTechniqueAnno...
static final int CG_COL0
Defined as part of enum type "CGresource" with expression '2245', CType: int.
static final int CG_NORMAL5
Defined as part of enum type "CGresource" with expression '3097', CType: int.
static void cgSetParameter1d(CGparameter param, double x)
Entry point (through function pointer) to C language function: void cgSetParameter1d(CGparameter pa...
static final int CG_BINORMAL6
Defined as part of enum type "CGresource" with expression '2891', CType: int.
static void cgGLGetMatrixParameterdr(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterdr(CGpara...
static void cgGLGetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, float[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArrayfr(C...
static final int CG_NORMAL12
Defined as part of enum type "CGresource" with expression '3104', CType: int.
static final int CG_UNKNOWN
Defined as part of enum type "CGenum" with expression '4096', CType: int.
static final int CG_FOG10
Defined as part of enum type "CGresource" with expression '2927', CType: int.
static final int CG_INVALID_ENUMERANT_ERROR
Defined as part of enum type "CGerror" with expression '10', CType: int.
static void cgSetParameterValuedc(CGparameter param, int n, DoubleBuffer vals)
Entry point (through function pointer) to C language function: void cgSetParameterValuedc(CGparamet...
static CGannotation cgGetNamedParameterAnnotation(CGparameter arg0, String arg1)
Entry point (through function pointer) to C language function: CGannotation cgGetNamedParameterAnno...
static CGpass cgGetStateAssignmentPass(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGpass cgGetStateAssignmentPass(CGst...
static final int CG_FLOAT2
Defined as part of enum type "CGtype" with expression '0x416', CType: int.
static final int CG_BINORMAL11
Defined as part of enum type "CGresource" with expression '2896', CType: int.
static void cgGLSetParameter2fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter2fv(CGparameter...
static void cgSetParameter4iv(CGparameter param, int[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter4iv(CGparameter p...
static final int CG_SAMPLE13
Defined as part of enum type "CGresource" with expression '2962', CType: int.
static final int CG_TEXUNIT7
Defined as part of enum type "CGresource" with expression '2055', CType: int.
static final int CG_TEXTURE
Defined as part of enum type "CGtype" with expression '0x471', CType: int.
static CGcontext cgGetProgramContext(CGprogram prog)
Entry point (through function pointer) to C language function: CGcontext cgGetProgramContext(CGprog...
static int cgGetParentType(int type, int index)
Entry point (through function pointer) to C language function: CGtype cgGetParentType(CGtype type,...
static final int CG_FIXED1x3
Defined as part of enum type "CGtype" with expression '0x434', CType: int.
static final int CG_TEXUNIT14
Defined as part of enum type "CGresource" with expression '2062', CType: int.
static final int CG_HALF2x3
Defined as part of enum type "CGtype" with expression '0x40b', CType: int.
static final int CG_TEXCOORD1
Defined as part of enum type "CGresource" with expression '3221', CType: int.
static final int CG_DEPTH12
Defined as part of enum type "CGresource" with expression '2945', CType: int.
static final int CG_PARAMETER_IS_NOT_RESIZABLE_ARRAY_ERROR
Defined as part of enum type "CGerror" with expression '33', CType: int.
static final int CG_FIXED4x4
Defined as part of enum type "CGtype" with expression '0x441', CType: int.
static final int CG_BOOL2x3
Defined as part of enum type "CGtype" with expression '0x465', CType: int.
static final int CG_FOG1
Defined as part of enum type "CGresource" with expression '2918', CType: int.
static final int CG_BINORMAL12
Defined as part of enum type "CGresource" with expression '2897', CType: int.
static int cgGetStateType(CGstate arg0)
Entry point (through function pointer) to C language function: CGtype cgGetStateType(CGstate)
static final int CG_FIXED4
Defined as part of enum type "CGtype" with expression '0x431', CType: int.
static final int CG_IN
Defined as part of enum type "CGenum" with expression '4097', CType: int.
static void cgGLSetParameter2f(CGparameter param, float x, float y)
Entry point (through function pointer) to C language function: void cgGLSetParameter2f(CGparameter ...
static final int CG_ARRAY_TYPES_DO_NOT_MATCH_ERROR
Defined as part of enum type "CGerror" with expression '36', CType: int.
static CGprogram cgGetNextProgram(CGprogram current)
Entry point (through function pointer) to C language function: CGprogram cgGetNextProgram(CGprogram...
static final int CG_UNIFORM
Defined as part of enum type "CGenum" with expression '4102', CType: int.
static final int CG_COLOR13
Defined as part of enum type "CGresource" with expression '2770', CType: int.
static final int CG_PSIZ
Defined as part of enum type "CGresource" with expression '2309', CType: int.
static void cgSetParameter3dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter3dv(CGparameter p...
static void cgSetParameter4i(CGparameter param, int x, int y, int z, int w)
Entry point (through function pointer) to C language function: void cgSetParameter4i(CGparameter pa...
static int cgGLGetTextureParameter(CGparameter param)
Entry point (through function pointer) to C language function: GLuint cgGLGetTextureParameter(CGpar...
static CGstateassignment cgGetNamedSamplerStateAssignment(CGparameter arg0, String arg1)
Entry point (through function pointer) to C language function: CGstateassignment cgGetNamedSamplerS...
static int cgGetType(String type_string)
Entry point (through function pointer) to C language function: CGtype cgGetType(const char * type_...
static void cgGLSetParameter1d(CGparameter param, double x)
Entry point (through function pointer) to C language function: void cgGLSetParameter1d(CGparameter ...
static CGstateassignment cgGetNamedStateAssignment(CGpass arg0, String name)
Entry point (through function pointer) to C language function: CGstateassignment cgGetNamedStateAss...
static final int CG_TEXCOORD10
Defined as part of enum type "CGresource" with expression '3230', CType: int.
static final int CG_DEPTH1
Defined as part of enum type "CGresource" with expression '2934', CType: int.
static void cgGLSetOptimalOptions(int profile)
Entry point (through function pointer) to C language function: void cgGLSetOptimalOptions(CGprofile...
static final int CG_INVALID_POINTER_ERROR
Defined as part of enum type "CGerror" with expression '50', CType: int.
static void cgGLSetParameterPointer(CGparameter param, int fsize, int type, int stride, Buffer pointer)
Entry point (through function pointer) to C language function: void cgGLSetParameterPointer(CGparam...
static void cgGLSetMatrixParameterfr(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterfr(CGpara...
static final int CG_PSIZE5
Defined as part of enum type "CGresource" with expression '2826', CType: int.
static final int CG_PROFILE_VP40
Defined as part of enum type "CGprofile" with expression '7001', CType: int.
static final int CG_PSIZE13
Defined as part of enum type "CGresource" with expression '2834', CType: int.
static CGprogram cgGetFirstProgram(CGcontext ctx)
Entry point (through function pointer) to C language function: CGprogram cgGetFirstProgram(CGcontex...
static int cgGetParameterValuefr(CGparameter param, int n, FloatBuffer vals)
Entry point (through function pointer) to C language function: int cgGetParameterValuefr(CGparamete...
static int cgGetParameterDirection(CGparameter param)
Entry point (through function pointer) to C language function: CGenum cgGetParameterDirection(CGpar...
static final int CG_GL_MATRIX_INVERSE
Defined as part of enum type "CGGLenum" with expression '2', CType: int.
static void cgGLEnableTextureParameter(CGparameter param)
Entry point (through function pointer) to C language function: void cgGLEnableTextureParameter(CGpa...
static void cgGLSetParameter1fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter1fv(CGparameter...
static void cgSetParameter4d(CGparameter param, double x, double y, double z, double w)
Entry point (through function pointer) to C language function: void cgSetParameter4d(CGparameter pa...
static void cgSetParameter4dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter4dv(CGparameter p...
static void cgGetMatrixParameterdc(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterdc(CGparame...
static void cgGLSetMatrixParameterdc(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterdc(CGpara...
static final int CG_SPECULAR0
Defined as part of enum type "CGresource" with expression '2629', CType: int.
static final int CG_BOOL2
Defined as part of enum type "CGtype" with expression '0x45c', CType: int.
static final int CG_SAMPLE6
Defined as part of enum type "CGresource" with expression '2955', CType: int.
static final int CG_COMPILE_IMMEDIATE
Defined as part of enum type "CGenum" with expression '4115', CType: int.
static CGparameter cgGetFirstDependentParameter(CGparameter param)
Entry point (through function pointer) to C language function: CGparameter cgGetFirstDependentParam...
static final int CG_VAR_ARG_ERROR
Defined as part of enum type "CGerror" with expression '20', CType: int.
static final int CG_INVALID_FUNCTION_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '48', CType: int.
static void cgGLSetParameter3d(CGparameter param, double x, double y, double z)
Entry point (through function pointer) to C language function: void cgGLSetParameter3d(CGparameter ...
static final int CG_DEPTH10
Defined as part of enum type "CGresource" with expression '2943', CType: int.
static final int CG_HALF3x3
Defined as part of enum type "CGtype" with expression '0x40f', CType: int.
static final int CG_TESSFACTOR
Defined as part of enum type "CGresource" with expression '3255', CType: int.
static final int CG_TYPE_IS_NOT_DEFINED_IN_PROGRAM_ERROR
Defined as part of enum type "CGerror" with expression '39', CType: int.
static final int CG_INT
Defined as part of enum type "CGtype" with expression '0x445', CType: int.
static void cgSetSamplerState(CGparameter arg0)
Entry point (through function pointer) to C language function: void cgSetSamplerState(CGparameter)
static final int GENERIC
Defined as part of enum type "CGprofile" with expression '7002', CType: int.
static final int CG_TEX4
Defined as part of enum type "CGresource" with expression '2193', CType: int.
static void cgGLSetManageTextureParameters(CGcontext ctx, boolean flag)
Entry point (through function pointer) to C language function: void cgGLSetManageTextureParameters(...
static final int CG_BOOL4
Defined as part of enum type "CGtype" with expression '0x45e', CType: int.
static final int CG_INT2
Defined as part of enum type "CGtype" with expression '0x447', CType: int.
static final int CG_TEXCOORD12
Defined as part of enum type "CGresource" with expression '3232', CType: int.
static final int CG_TANGENT3
Defined as part of enum type "CGresource" with expression '2568', CType: int.
static CGcontext cgGetEffectContext(CGeffect arg0)
Entry point (through function pointer) to C language function: CGcontext cgGetEffectContext(CGeffec...
static void cgGLGetMatrixParameterfc(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterfc(CGpara...
static final int CG_PROFILE_ARBFP1
Defined as part of enum type "CGprofile" with expression '7000', CType: int.
static final int CG_FLOAT2x3
Defined as part of enum type "CGtype" with expression '0x41f', CType: int.
static final int CG_STRING
Defined as part of enum type "CGtype" with expression '0x46f', CType: int.
static final int CG_BLENDWEIGHT14
Defined as part of enum type "CGresource" with expression '3042', CType: int.
static void cgGetMatrixParameterfr(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterfr(CGparame...
static CGparameter cgGetNextLeafParameter(CGparameter current)
Entry point (through function pointer) to C language function: CGparameter cgGetNextLeafParameter(C...
static int cgGetParameterValuefc(CGparameter param, int n, FloatBuffer vals)
Entry point (through function pointer) to C language function: int cgGetParameterValuefc(CGparamete...
static final int CG_POSITION12
Defined as part of enum type "CGresource" with expression '2449', CType: int.
static final int CG_INT2x3
Defined as part of enum type "CGtype" with expression '0x450', CType: int.
static final int CG_INVALID_SIZE_ERROR
Defined as part of enum type "CGerror" with expression '34', CType: int.
static final int CG_FILE_WRITE_ERROR
Defined as part of enum type "CGerror" with expression '13', CType: int.
static final int CG_HPOS
Defined as part of enum type "CGresource" with expression '2243', CType: int.
static void cgGLGetParameter3f(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter3f(CGparameter ...
static final int CG_INVALID_STATE_ASSIGNMENT_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '42', CType: int.
static final int CG_PARAMETERCLASS_OBJECT
Defined as part of enum type "CGparameterclass" with expression '0x7', CType: int.
static final int CG_COMBINER_CONST1
Defined as part of enum type "CGresource" with expression '3285', CType: int.
static final int CG_INVALID_DIMENSION_ERROR
Defined as part of enum type "CGerror" with expression '21', CType: int.
static final int CG_TANGENT2
Defined as part of enum type "CGresource" with expression '2567', CType: int.
static final int CG_POSITION5
Defined as part of enum type "CGresource" with expression '2442', CType: int.
static int cgGetNumUserTypes(Buffer handle)
Entry point (through function pointer) to C language function: int cgGetNumUserTypes(CGhandle handl...
static CGeffect cgCreateEffectFromFile(CGcontext arg0, String filename, String[] args)
Entry point (through function pointer) to C language function: CGeffect cgCreateEffectFromFile(CGco...
static CGprogram cgCreateProgramFromEffect(CGeffect effect, int profile, String entry, String[] args)
Entry point (through function pointer) to C language function: CGprogram cgCreateProgramFromEffect(...
static int cgGetProgramProfile(CGprogram prog)
Entry point (through function pointer) to C language function: CGprofile cgGetProgramProfile(CGprog...
static boolean cgIsStateAssignment(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGbool cgIsStateAssignment(CGstateas...
static void cgGLSetParameterArray1f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray1f(CGparam...
static final int CG_DEPTH15
Defined as part of enum type "CGresource" with expression '2948', CType: int.
static final int CG_INT1x2
Defined as part of enum type "CGtype" with expression '0x44b', CType: int.
static final int CG_INVALID_PROGRAM_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '17', CType: int.
static final int CG_TEXCOORD11
Defined as part of enum type "CGresource" with expression '3231', CType: int.
static void cgGLSetMatrixParameterArraydr(CGparameter param, long offset, long nelements, DoubleBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArraydr(C...
static final int CG_SAMPLE5
Defined as part of enum type "CGresource" with expression '2954', CType: int.
static CGcontext cgCreateContext()
Entry point (through function pointer) to C language function: CGcontext cgCreateContext()
static boolean cgIsAnnotation(CGannotation arg0)
Entry point (through function pointer) to C language function: CGbool cgIsAnnotation(CGannotation)
static void cgGLGetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, FloatBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArrayfr(C...
static int cgGetParameterValuefc(CGparameter param, int n, float[] vals, int vals_offset)
Entry point (through function pointer) to C language function: int cgGetParameterValuefc(CGparamete...
static final int CG_FIXED2x4
Defined as part of enum type "CGtype" with expression '0x439', CType: int.
static final int CG_BLENDWEIGHT3
Defined as part of enum type "CGresource" with expression '3031', CType: int.
static final int CG_DEPTH8
Defined as part of enum type "CGresource" with expression '2941', CType: int.
static final int CG_INVALID_PARAM_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '18', CType: int.
static void cgGLGetParameter4d(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter4d(CGparameter ...
static int cgGetParameterValueic(CGparameter param, int n, int[] vals, int vals_offset)
Entry point (through function pointer) to C language function: int cgGetParameterValueic(CGparamete...
static final int CG_PROFILE_PS_2_X
Defined as part of enum type "CGprofile" with expression '6163', CType: int.
static void cgSetArraySize(CGparameter param, int size)
Entry point (through function pointer) to C language function: void cgSetArraySize(CGparameter para...
static void cgGLEnableClientState(CGparameter param)
Entry point (through function pointer) to C language function: void cgGLEnableClientState(CGparamet...
static final int CG_PARAMETERCLASS_VECTOR
Defined as part of enum type "CGparameterclass" with expression '0x2', CType: int.
static void cgGLSetParameter1dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter1dv(CGparameter...
static CGtechnique cgGetFirstTechnique(CGeffect arg0)
Entry point (through function pointer) to C language function: CGtechnique cgGetFirstTechnique(CGef...
static void cgGLSetParameter4dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter4dv(CGparameter...
static CGparameter cgGetFirstStructParameter(CGparameter param)
Entry point (through function pointer) to C language function: CGparameter cgGetFirstStructParamete...
static CGtechnique cgGetNamedTechnique(CGeffect arg0, String name)
Entry point (through function pointer) to C language function: CGtechnique cgGetNamedTechnique(CGef...
static final int CG_DEPTH2
Defined as part of enum type "CGresource" with expression '2935', CType: int.
static final int CG_FIXED1
Defined as part of enum type "CGtype" with expression '0x444', CType: int.
static int cgGetParameterValuedc(CGparameter param, int n, double[] vals, int vals_offset)
Entry point (through function pointer) to C language function: int cgGetParameterValuedc(CGparamete...
static final int CG_FIXED4x2
Defined as part of enum type "CGtype" with expression '0x43f', CType: int.
static final int CG_POSITION8
Defined as part of enum type "CGresource" with expression '2445', CType: int.
static int cgGetError()
Entry point (through function pointer) to C language function: CGerror cgGetError()
static final int CG_CONFLICTING_TYPES_ERROR
Defined as part of enum type "CGerror" with expression '24', CType: int.
static void cgGLSetParameter3fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter3fv(CGparameter...
static final int CG_COMPILED_PROGRAM
Defined as part of enum type "CGenum" with expression '4106', CType: int.
static final int CG_TANGENT5
Defined as part of enum type "CGresource" with expression '2570', CType: int.
static final int CG_SAMPLER1D
Defined as part of enum type "CGtype" with expression '0x429', CType: int.
static CGstate cgCreateArraySamplerState(CGcontext arg0, String name, int arg2, int nelems)
Entry point (through function pointer) to C language function: CGstate cgCreateArraySamplerState(CG...
static final int CG_BINORMAL8
Defined as part of enum type "CGresource" with expression '2893', CType: int.
static final int CG_BINORMAL2
Defined as part of enum type "CGresource" with expression '2887', CType: int.
static final int CG_INVALID_EFFECT_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '40', CType: int.
static void cgSetParameter3fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter3fv(CGparameter p...
static final int CG_PROFILE_FP20
Defined as part of enum type "CGprofile" with expression '6147', CType: int.
static final int CG_PARAMETER_IS_NOT_SHARED_ERROR
Defined as part of enum type "CGerror" with expression '26', CType: int.
static final int CG_BOOL2x1
Defined as part of enum type "CGtype" with expression '0x463', CType: int.
static final int CG_HALF4x2
Defined as part of enum type "CGtype" with expression '0x412', CType: int.
static final int CG_DEPTH9
Defined as part of enum type "CGresource" with expression '29542', CType: int.
static final int CG_DEPTH14
Defined as part of enum type "CGresource" with expression '2947', CType: int.
static final int CG_BLENDINDICES12
Defined as part of enum type "CGresource" with expression '2705', CType: int.
static CGannotation cgGetFirstParameterAnnotation(CGparameter arg0)
Entry point (through function pointer) to C language function: CGannotation cgGetFirstParameterAnno...
static void cgGLGetParameterArray1f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray1f(CGparam...
static final int CG_FLOAT1x3
Defined as part of enum type "CGtype" with expression '0x41b', CType: int.
static int cgGetStateAssignmentIndex(CGstateassignment arg0)
Entry point (through function pointer) to C language function: int cgGetStateAssignmentIndex(CGstat...
static final int CG_HALF1
Defined as part of enum type "CGtype" with expression '0x442', CType: int.
static final int CG_TEXUNIT13
Defined as part of enum type "CGresource" with expression '2061', CType: int.
static CGparameter cgGetConnectedToParameter(CGparameter param, int index)
Entry point (through function pointer) to C language function: CGparameter cgGetConnectedToParamete...
static final int CG_ARRAY_SIZE_MISMATCH_ERROR
Defined as part of enum type "CGerror" with expression '53', CType: int.
static String cgGetStringAnnotationValue(CGannotation arg0)
Entry point (through function pointer) to C language function: const char * cgGetStringAnnotationVa...
static void cgGLSetParameterArray3d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray3d(CGparam...
static int cgGetArrayTotalSize(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetArrayTotalSize(CGparameter ...
static final int CG_PROGRAM_NOT_LOADED_ERROR
Defined as part of enum type "CGerror" with expression '6', CType: int.
static void cgGLLoadProgram(CGprogram program)
Entry point (through function pointer) to C language function: void cgGLLoadProgram(CGprogram progr...
static final int CG_NOT_4x4_MATRIX_ERROR
Defined as part of enum type "CGerror" with expression '11', CType: int.
static void cgSetParameter1dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter1dv(CGparameter p...
static final int CG_INT4x4
Defined as part of enum type "CGtype" with expression '0x459', CType: int.
static boolean cgGLIsProgramLoaded(CGprogram program)
Entry point (through function pointer) to C language function: CGbool cgGLIsProgramLoaded(CGprogram...
static CgProcAddressTable getCgProcAddressTable()
static CGparameter cgGetSamplerStateAssignmentParameter(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGparameter cgGetSamplerStateAssignm...
static final int CG_BLENDINDICES6
Defined as part of enum type "CGresource" with expression '2699', CType: int.
static final int CG_TEXUNIT6
Defined as part of enum type "CGresource" with expression '2054', CType: int.
static void cgGLGetParameterArray4f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray4f(CGparam...
static void cgSetParameter4dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter4dv(CGparameter p...
static final int CG_SAMPLE8
Defined as part of enum type "CGresource" with expression '2957', CType: int.
static final int CG_BINORMAL5
Defined as part of enum type "CGresource" with expression '2890', CType: int.
static boolean cgIsProgramCompiled(CGprogram program)
Entry point (through function pointer) to C language function: CGbool cgIsProgramCompiled(CGprogram...
static final int CG_HALF1x1
Defined as part of enum type "CGtype" with expression '0x405', CType: int.
static void cgGLGetParameterArray3f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray3f(CGparam...
static long cgGetParameterResourceIndex(CGparameter param)
Entry point (through function pointer) to C language function: unsigned long cgGetParameterResource...
static int cgGetNumConnectedToParameters(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetNumConnectedToParameters(CG...
static final int CG_PSIZE10
Defined as part of enum type "CGresource" with expression '2831', CType: int.
static final int CG_POSITION14
Defined as part of enum type "CGresource" with expression '2451', CType: int.
static final int CG_COLOR6
Defined as part of enum type "CGresource" with expression '2763', CType: int.
static int cgGetParameterBaseType(CGparameter param)
Entry point (through function pointer) to C language function: CGtype cgGetParameterBaseType(CGpara...
static final int CG_ARRAY_HAS_WRONG_DIMENSION_ERROR
Defined as part of enum type "CGerror" with expression '38', CType: int.
static final int CG_SAMPLE7
Defined as part of enum type "CGresource" with expression '2956', CType: int.
static final int CG_NORMAL7
Defined as part of enum type "CGresource" with expression '3099', CType: int.
static final int CG_FLOAT1
Defined as part of enum type "CGtype" with expression '0x443', CType: int.
static boolean cgCallStateValidateCallback(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGbool cgCallStateValidateCallback(C...
static final int CG_PROGRAM_TYPE
Defined as part of enum type "CGtype" with expression '0x470', CType: int.
static String cgGetParameterName(CGparameter param)
Entry point (through function pointer) to C language function: const char * cgGetParameterName(CGpa...
static final int CG_TANGENT14
Defined as part of enum type "CGresource" with expression '2579', CType: int.
static final int CG_COLOR2
Defined as part of enum type "CGresource" with expression '2759', CType: int.
static void cgGLSetParameterArray2f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray2f(CGparam...
static final int CG_BOOL1x1
Defined as part of enum type "CGtype" with expression '0x45f', CType: int.
static void cgGLSetMatrixParameterfr(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterfr(CGpara...
static final int CG_DEPTH13
Defined as part of enum type "CGresource" with expression '2946', CType: int.
static final int CG_GLOBAL
Defined as part of enum type "CGenum" with expression '4108', CType: int.
static void cgGLSetParameter4d(CGparameter param, double x, double y, double z, double w)
Entry point (through function pointer) to C language function: void cgGLSetParameter4d(CGparameter ...
static final int CG_SOURCE
Defined as part of enum type "CGenum" with expression '4112', CType: int.
static final int CG_FIXED
Defined as part of enum type "CGtype" with expression '0x42e', CType: int.
static final int CG_BLENDINDICES11
Defined as part of enum type "CGresource" with expression '2704', CType: int.
static final int CG_POSITION1
Defined as part of enum type "CGresource" with expression '2438', CType: int.
static final int CG_TANGENT11
Defined as part of enum type "CGresource" with expression '2576', CType: int.
static final int CG_BLENDINDICES0
Defined as part of enum type "CGresource" with expression '2693', CType: int.
static void cgGLSetParameterArray3f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray3f(CGparam...
static void cgSetParameter3fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter3fv(CGparameter p...
static int cgGetParameterOrdinalNumber(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetParameterOrdinalNumber(CGpa...
static final long CG_ARRAY
Defined as part of enum type "CGtype" with expression '0x2L', CType: long.
static void cgEvaluateProgram(CGprogram arg0, FloatBuffer arg1, int ncomps, int nx, int ny, int nz)
Entry point (through function pointer) to C language function: void cgEvaluateProgram(CGprogram,...
static final int CG_TANGENT12
Defined as part of enum type "CGresource" with expression '2577', CType: int.
static final int CG_TANGENT4
Defined as part of enum type "CGresource" with expression '2569', CType: int.
static final int CG_PSIZE6
Defined as part of enum type "CGresource" with expression '2827', CType: int.
static void cgGLSetParameter4dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter4dv(CGparameter...
static final int CG_POSITION6
Defined as part of enum type "CGresource" with expression '2443', CType: int.
static final int CG_TEXUNIT3
Defined as part of enum type "CGresource" with expression '2051', CType: int.
static final int CG_POSITION0
Defined as part of enum type "CGresource" with expression '2437', CType: int.
static int cgGetEnum(String enum_string)
Entry point (through function pointer) to C language function: CGenum cgGetEnum(const char * enum_...
static void cgGLSetParameterArray1f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray1f(CGparam...
static void cgGLGetMatrixParameterfc(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterfc(CGpara...
static void cgGLSetParameterArray1d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray1d(CGparam...
static final int CG_BLENDINDICES9
Defined as part of enum type "CGresource" with expression '2702', CType: int.
static final int CG_COLOR10
Defined as part of enum type "CGresource" with expression '2767', CType: int.
static final int CG_POSITION15
Defined as part of enum type "CGresource" with expression '2452', CType: int.
static int cgGetParameterValueir(CGparameter param, int n, int[] vals, int vals_offset)
Entry point (through function pointer) to C language function: int cgGetParameterValueir(CGparamete...
static CGcontext cgGetParameterContext(CGparameter param)
Entry point (through function pointer) to C language function: CGcontext cgGetParameterContext(CGpa...
static void cgGLGetMatrixParameterArraydr(CGparameter param, long offset, long nelements, double[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArraydr(C...
static boolean cgGLGetManageTextureParameters(CGcontext ctx)
Entry point (through function pointer) to C language function: CGbool cgGLGetManageTextureParameter...
static final int CG_HALF3x4
Defined as part of enum type "CGtype" with expression '0x410', CType: int.
static void cgDestroyEffect(CGeffect arg0)
Entry point (through function pointer) to C language function: void cgDestroyEffect(CGeffect)
static final int CG_NORMAL11
Defined as part of enum type "CGresource" with expression '3103', CType: int.
static final int CG_FLOAT4x4
Defined as part of enum type "CGtype" with expression '0x428', CType: int.
static final int CG_PROFILE_PS_2_0
Defined as part of enum type "CGprofile" with expression '6162', CType: int.
static final int CG_BOOL4x1
Defined as part of enum type "CGtype" with expression '0x46b', CType: int.
static CGprogram cgCreateProgram(CGcontext ctx, int program_type, String program, int profile, String entry, String[] args)
Entry point (through function pointer) to C language function: CGprogram cgCreateProgram(CGcontext ...
static CGtechnique cgGetPassTechnique(CGpass arg0)
Entry point (through function pointer) to C language function: CGtechnique cgGetPassTechnique(CGpas...
static void cgSetMatrixParameterir(CGparameter param, int[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterir(CGparame...
static final int CG_ATTR12
Defined as part of enum type "CGresource" with expression '2125', CType: int.
static final int CG_INVALID_TECHNIQUE_ERROR
Defined as part of enum type "CGerror" with expression '49', CType: int.
static final int CG_TANGENT7
Defined as part of enum type "CGresource" with expression '2572', CType: int.
static void cgGLSetMatrixParameterfc(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterfc(CGpara...
static final int CG_PROFILE_START
Defined as part of enum type "CGprofile" with expression '6144', CType: int.
static void cgSetParameterValuefc(CGparameter param, int n, FloatBuffer vals)
Entry point (through function pointer) to C language function: void cgSetParameterValuefc(CGparamet...
static boolean cgIsEffect(CGeffect effect)
Entry point (through function pointer) to C language function: CGbool cgIsEffect(CGeffect effect)
static void cgAddStateEnumerant(CGstate arg0, String name, int value)
Entry point (through function pointer) to C language function: void cgAddStateEnumerant(CGstate,...
static final long CG_STRUCT
Defined as part of enum type "CGtype" with expression '0x1L', CType: long.
static final int CG_PROFILE_VP30
Defined as part of enum type "CGprofile" with expression '6148', CType: int.
static final int CG_COMPILE_LAZY
Defined as part of enum type "CGenum" with expression '4116', CType: int.
static CGpass cgGetNamedPass(CGtechnique arg0, String name)
Entry point (through function pointer) to C language function: CGpass cgGetNamedPass(CGtechnique,...
static final int CG_DEPTH11
Defined as part of enum type "CGresource" with expression '2944', CType: int.
static void cgGLGetParameter2d(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter2d(CGparameter ...
static final int CG_ATTR3
Defined as part of enum type "CGresource" with expression '2116', CType: int.
static final int CG_FLOAT1x1
Defined as part of enum type "CGtype" with expression '0x419', CType: int.
static final int CG_TEXUNIT2
Defined as part of enum type "CGresource" with expression '2050', CType: int.
static final int CG_FLOAT2x1
Defined as part of enum type "CGtype" with expression '0x41d', CType: int.
static final int CG_TEX7
Defined as part of enum type "CGresource" with expression '2196', CType: int.
static CGstateassignment cgGetFirstSamplerStateAssignment(CGparameter arg0)
Entry point (through function pointer) to C language function: CGstateassignment cgGetFirstSamplerS...
static final int CG_BLENDINDICES1
Defined as part of enum type "CGresource" with expression '2694', CType: int.
static boolean cgCallStateResetCallback(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGbool cgCallStateResetCallback(CGst...
static void cgGLSetParameterArray2d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray2d(CGparam...
static void cgSetParameter2fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter2fv(CGparameter p...
static final int CG_COLOR4
Defined as part of enum type "CGresource" with expression '2761', CType: int.
static final int CG_FIXED1x4
Defined as part of enum type "CGtype" with expression '0x435', CType: int.
static final int CG_HALF
Defined as part of enum type "CGtype" with expression '0x401', CType: int.
static void cgGetMatrixParameteric(CGparameter param, IntBuffer matrix)
Entry point (through function pointer) to C language function: void cgGetMatrixParameteric(CGparame...
static void cgGLGetMatrixParameterArraydc(CGparameter param, long offset, long nelements, double[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArraydc(C...
static final int CG_PARAMETERCLASS_SCALAR
Defined as part of enum type "CGparameterclass" with expression '0x1', CType: int.
static final int CG_BINORMAL14
Defined as part of enum type "CGresource" with expression '2899', CType: int.
static final int CG_BINORMAL7
Defined as part of enum type "CGresource" with expression '2892', CType: int.
static void cgGLSetStateMatrixParameter(CGparameter param, int matrix, int transform)
Entry point (through function pointer) to C language function: void cgGLSetStateMatrixParameter(CGp...
static boolean cgIsInterfaceType(int type)
Entry point (through function pointer) to C language function: CGbool cgIsInterfaceType(CGtype type...
static void cgGLSetParameter3f(CGparameter param, float x, float y, float z)
Entry point (through function pointer) to C language function: void cgGLSetParameter3f(CGparameter ...
static String cgGetStringStateAssignmentValue(CGstateassignment arg0)
Entry point (through function pointer) to C language function: const char * cgGetStringStateAssignm...
static final int CG_PROFILE_VS_1_1
Defined as part of enum type "CGprofile" with expression '6153', CType: int.
static final int CG_INT1x1
Defined as part of enum type "CGtype" with expression '0x44a', CType: int.
static int cgGetParameterClass(CGparameter param)
Entry point (through function pointer) to C language function: CGparameterclass cgGetParameterClass...
static final int CG_TEXCOORD2
Defined as part of enum type "CGresource" with expression '3222', CType: int.
static final int CG_ATTR10
Defined as part of enum type "CGresource" with expression '2123', CType: int.
static final int CG_OUT_OF_ARRAY_BOUNDS_ERROR
Defined as part of enum type "CGerror" with expression '23', CType: int.
static void cgGLSetParameterArray2d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray2d(CGparam...
static boolean cgIsParameterUsed(CGparameter param, Buffer handle)
Entry point (through function pointer) to C language function: CGbool cgIsParameterUsed(CGparameter...
static CGparameter cgGetNamedEffectParameter(CGeffect arg0, String arg1)
Entry point (through function pointer) to C language function: CGparameter cgGetNamedEffectParamete...
static final int CG_PSIZE12
Defined as part of enum type "CGresource" with expression '2833', CType: int.
static CGprogram cgCreateProgramFromFile(CGcontext ctx, int program_type, String program_file, int profile, String entry, String[] args)
Entry point (through function pointer) to C language function: CGprogram cgCreateProgramFromFile(CG...
static boolean cgIsTechnique(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGbool cgIsTechnique(CGtechnique)
static final int CG_MEMORY_ALLOC_ERROR
Defined as part of enum type "CGerror" with expression '15', CType: int.
static final int CG_INT3x2
Defined as part of enum type "CGtype" with expression '0x453', CType: int.
static void cgGetMatrixParameterfr(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterfr(CGparame...
static String cgGetTypeString(int type)
Entry point (through function pointer) to C language function: const char * cgGetTypeString(CGtype ...
static void cgGLGetParameter3d(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter3d(CGparameter ...
static final int CG_NORMAL2
Defined as part of enum type "CGresource" with expression '3094', CType: int.
static final int CG_BLENDWEIGHT6
Defined as part of enum type "CGresource" with expression '3034', CType: int.
static CGparameter cgCreateParameter(CGcontext ctx, int type)
Entry point (through function pointer) to C language function: CGparameter cgCreateParameter(CGcont...
static final int CG_BLENDWEIGHT12
Defined as part of enum type "CGresource" with expression '3040', CType: int.
static final int CG_PSIZE8
Defined as part of enum type "CGresource" with expression '2829', CType: int.
static CGparameter cgGetArrayParameter(CGparameter aparam, int index)
Entry point (through function pointer) to C language function: CGparameter cgGetArrayParameter(CGpa...
static void cgSetMatrixParameterdc(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterdc(CGparame...
static final int CG_INT1x3
Defined as part of enum type "CGtype" with expression '0x44c', CType: int.
static final int CG_INT4x2
Defined as part of enum type "CGtype" with expression '0x457', CType: int.
static final int CG_PROGRAM_ENTRY
Defined as part of enum type "CGenum" with expression '4105', CType: int.
static final int CG_FOG2
Defined as part of enum type "CGresource" with expression '2919', CType: int.
static final int CG_INOUT
Defined as part of enum type "CGenum" with expression '4099', CType: int.
static final int CG_CANNOT_DESTROY_PARAMETER_ERROR
Defined as part of enum type "CGerror" with expression '28', CType: int.
static void cgSetParameterValuedc(CGparameter param, int n, double[] vals, int vals_offset)
Entry point (through function pointer) to C language function: void cgSetParameterValuedc(CGparamet...
static final int CG_INVALID_PARAMETER_VARIABILITY_ERROR
Defined as part of enum type "CGerror" with expression '27', CType: int.
static final int CG_NORMAL4
Defined as part of enum type "CGresource" with expression '3096', CType: int.
static CGpass cgGetFirstPass(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGpass cgGetFirstPass(CGtechnique)
static final int CG_FILE_READ_ERROR
Defined as part of enum type "CGerror" with expression '12', CType: int.
static final int CG_INVALID_TECHNIQUE_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '45', CType: int.
static final int CG_ATTR2
Defined as part of enum type "CGresource" with expression '2115', CType: int.
static CGstate cgGetSamplerStateAssignmentState(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGstate cgGetSamplerStateAssignmentS...
static void cgGLSetMatrixParameterdr(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterdr(CGpara...
static final int CG_ATTR13
Defined as part of enum type "CGresource" with expression '2126', CType: int.
static void cgGLGetParameterArray2f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray2f(CGparam...
static final int CG_FLOAT3x1
Defined as part of enum type "CGtype" with expression '0x421', CType: int.
static final int CG_FIXED3x1
Defined as part of enum type "CGtype" with expression '0x43a', CType: int.
static void cgSetParameter1i(CGparameter param, int x)
Entry point (through function pointer) to C language function: void cgSetParameter1i(CGparameter pa...
static CGannotation cgGetFirstTechniqueAnnotation(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGannotation cgGetFirstTechniqueAnno...
static boolean cgIsContext(CGcontext ctx)
Entry point (through function pointer) to C language function: CGbool cgIsContext(CGcontext ctx)
static final int CG_PROFILE_UNKNOWN
Defined as part of enum type "CGprofile" with expression '0x1801', CType: int.
static boolean cgIsState(CGstate arg0)
Entry point (through function pointer) to C language function: CGbool cgIsState(CGstate)
static void cgGLGetParameterArray1f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray1f(CGparam...
static final int CG_PROFILE_FP40
Defined as part of enum type "CGprofile" with expression '6151', CType: int.
static void cgSetParameter3i(CGparameter param, int x, int y, int z)
Entry point (through function pointer) to C language function: void cgSetParameter3i(CGparameter pa...
static final int CG_COMBINER_STAGE_CONST0
Defined as part of enum type "CGresource" with expression '3286', CType: int.
static void cgGLSetMatrixParameterArraydr(CGparameter param, long offset, long nelements, double[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArraydr(C...
static final int CG_NORMAL6
Defined as part of enum type "CGresource" with expression '3098', CType: int.
static void cgGLGetMatrixParameterdc(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterdc(CGpara...
static void cgGLGetParameterArray3d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray3d(CGparam...
static final int CG_FIXED1x2
Defined as part of enum type "CGtype" with expression '0x433', CType: int.
static void cgGLSetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, float[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArrayfc(C...
static void cgGLSetTextureParameter(CGparameter param, int texobj)
Entry point (through function pointer) to C language function: void cgGLSetTextureParameter(CGparam...
static final int CG_BINORMAL4
Defined as part of enum type "CGresource" with expression '2889', CType: int.
static void cgDestroyContext(CGcontext ctx)
Entry point (through function pointer) to C language function: void cgDestroyContext(CGcontext ctx)
static final int CG_BLENDINDICES15
Defined as part of enum type "CGresource" with expression '2708', CType: int.
static final int CG_GL_VERTEX
Defined as part of enum type "CGGLenum" with expression '0x8', CType: int.
static void cgSetParameter4f(CGparameter param, float x, float y, float z, float w)
Entry point (through function pointer) to C language function: void cgSetParameter4f(CGparameter pa...
static final int CG_TEXUNIT11
Defined as part of enum type "CGresource" with expression '2059', CType: int.
static final int CG_INT2x2
Defined as part of enum type "CGtype" with expression '0x44f', CType: int.
static void cgGLGetParameterArray2f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray2f(CGparam...
static void cgSetParameter2dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter2dv(CGparameter p...
static void cgGLSetParameter2d(CGparameter param, double x, double y)
Entry point (through function pointer) to C language function: void cgGLSetParameter2d(CGparameter ...
static final int CG_ATTR15
Defined as part of enum type "CGresource" with expression '2128', CType: int.
static final int CG_TEXCOORD14
Defined as part of enum type "CGresource" with expression '3234', CType: int.
static final int CG_FIXED3x4
Defined as part of enum type "CGtype" with expression '0x43d', CType: int.
static final int CG_NORMAL14
Defined as part of enum type "CGresource" with expression '3106', CType: int.
static final int CG_BLENDWEIGHT4
Defined as part of enum type "CGresource" with expression '3032', CType: int.
static CGprogram cgGetParameterProgram(CGparameter param)
Entry point (through function pointer) to C language function: CGprogram cgGetParameterProgram(CGpa...
static void cgGLSetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, FloatBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArrayfr(C...
static int cgGLGetTextureEnum(CGparameter param)
Entry point (through function pointer) to C language function: GLenum cgGLGetTextureEnum(CGparamete...
static CGparameter cgGetTextureStateAssignmentValue(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGparameter cgGetTextureStateAssignm...
static final int CG_TEX0
Defined as part of enum type "CGresource" with expression '2179', CType: int.
static final int CG_PSIZE7
Defined as part of enum type "CGresource" with expression '2828', CType: int.
static boolean cgValidateTechnique(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGbool cgValidateTechnique(CGtechniq...
static final int CG_FLOAT3x2
Defined as part of enum type "CGtype" with expression '0x422', CType: int.
static final int CG_FIXED1x1
Defined as part of enum type "CGtype" with expression '0x432', CType: int.
static final int CG_PROFILE_PS_1_3
Defined as part of enum type "CGprofile" with expression '6161', CType: int.
static void cgSetParameterValuedr(CGparameter param, int n, DoubleBuffer vals)
Entry point (through function pointer) to C language function: void cgSetParameterValuedr(CGparamet...
static final int CG_FOG5
Defined as part of enum type "CGresource" with expression '2922', CType: int.
static final int CG_BLENDINDICES4
Defined as part of enum type "CGresource" with expression '2697', CType: int.
static final int CG_PARAMETERS_DO_NOT_MATCH_ERROR
Defined as part of enum type "CGerror" with expression '30', CType: int.
static final int CG_PARAMETERCLASS_MATRIX
Defined as part of enum type "CGparameterclass" with expression '0x3', CType: int.
static final int CG_PSIZE15
Defined as part of enum type "CGresource" with expression '2836', CType: int.
static void cgGLGetParameterArray4f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray4f(CGparam...
static final int CG_TEXUNIT5
Defined as part of enum type "CGresource" with expression '2053', CType: int.
static CGparameter cgGetDependentStateAssignmentParameter(CGstateassignment arg0, int index)
Entry point (through function pointer) to C language function: CGparameter cgGetDependentStateAssig...
static final int CG_TEXCOORD9
Defined as part of enum type "CGresource" with expression '3229', CType: int.
static CGprogram cgCopyProgram(CGprogram program)
Entry point (through function pointer) to C language function: CGprogram cgCopyProgram(CGprogram pr...
static String cgGetEnumString(int en)
Entry point (through function pointer) to C language function: const char * cgGetEnumString(CGenum ...
static final int CG_VERSION_NUM
Define "CG_VERSION_NUM" with expression '1400', CType: int.
static final int CG_COLOR3
Defined as part of enum type "CGresource" with expression '2760', CType: int.
static final int CG_HALF1x3
Defined as part of enum type "CGtype" with expression '0x407', CType: int.
static final int CG_BOOL3x3
Defined as part of enum type "CGtype" with expression '0x469', CType: int.
static final int CG_GL_MODELVIEW_MATRIX
Defined as part of enum type "CGGLenum" with expression '0x4', CType: int.
static int cgGetNumDependentAnnotationParameters(CGannotation arg0)
Entry point (through function pointer) to C language function: int cgGetNumDependentAnnotationParam...
static final int CG_DEPTH4
Defined as part of enum type "CGresource" with expression '2937', CType: int.
static void cgGLSetParameterArray2f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray2f(CGparam...
static void cgGLGetParameter3f(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter3f(CGparameter ...
static void cgDisconnectParameter(CGparameter param)
Entry point (through function pointer) to C language function: void cgDisconnectParameter(CGparamet...
static void cgGLGetParameter1f(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter1f(CGparameter ...
static CGparameter cgGetNextParameter(CGparameter current)
Entry point (through function pointer) to C language function: CGparameter cgGetNextParameter(CGpar...
static String cgGetLastErrorString(IntBuffer error)
Entry point (through function pointer) to C language function: const char * cgGetLastErrorString(CG...
static void cgGLSetParameter1f(CGparameter param, float x)
Entry point (through function pointer) to C language function: void cgGLSetParameter1f(CGparameter ...
static void cgGLGetParameter1d(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter1d(CGparameter ...
static final int CG_UNDEFINED
Defined as part of enum type "CGresource" with expression '0xcb8', CType: int.
static final int CG_LITERAL
Defined as part of enum type "CGenum" with expression '4118', CType: int.
static final int CG_BINORMAL0
Defined as part of enum type "CGresource" with expression '2885', CType: int.
static final int CG_HALF2x1
Defined as part of enum type "CGtype" with expression '0x409', CType: int.
static final int CG_TEXUNIT15
Defined as part of enum type "CGresource" with expression '2063', CType: int.
static void cgSetParameterValuedr(CGparameter param, int n, double[] vals, int vals_offset)
Entry point (through function pointer) to C language function: void cgSetParameterValuedr(CGparamet...
static final int CG_PROGRAM
Defined as part of enum type "CGenum" with expression '4109', CType: int.
static void cgGLSetParameterArray4d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray4d(CGparam...
static void cgGetMatrixParameterdr(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterdr(CGparame...
static final int CG_TANGENT8
Defined as part of enum type "CGresource" with expression '2573', CType: int.
static boolean cgCallStateSetCallback(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGbool cgCallStateSetCallback(CGstat...
static final int CG_FLOAT3x3
Defined as part of enum type "CGtype" with expression '0x423', CType: int.
static final int CG_PSIZE11
Defined as part of enum type "CGresource" with expression '2832', CType: int.
static void cgGLGetMatrixParameterdc(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterdc(CGpara...
static boolean cgIsTechniqueValidated(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGbool cgIsTechniqueValidated(CGtech...
static final int CG_GL_FRAGMENT
Defined as part of enum type "CGGLenum" with expression '0x9', CType: int.
static final int CG_ARRAY_PARAM_ERROR
Defined as part of enum type "CGerror" with expression '22', CType: int.
static final int CG_FLOAT2x2
Defined as part of enum type "CGtype" with expression '0x41e', CType: int.
static final int CG_BLENDINDICES13
Defined as part of enum type "CGresource" with expression '2706', CType: int.
static CGparameter cgCreateParameterArray(CGcontext ctx, int type, int length)
Entry point (through function pointer) to C language function: CGparameter cgCreateParameterArray(C...
static void cgGLGetParameterArray2d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray2d(CGparam...
static void cgSetParameterVariability(CGparameter param, int vary)
Entry point (through function pointer) to C language function: void cgSetParameterVariability(CGpar...
static final int CG_POSITION3
Defined as part of enum type "CGresource" with expression '2440', CType: int.
static final int CG_FIXED4x1
Defined as part of enum type "CGtype" with expression '0x43e', CType: int.
static final int CG_BLENDWEIGHT1
Defined as part of enum type "CGresource" with expression '3029', CType: int.
static CGparameter cgGetNamedStructParameter(CGparameter param, String name)
Entry point (through function pointer) to C language function: CGparameter cgGetNamedStructParamete...
static void cgGetMatrixParameteric(CGparameter param, int[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGetMatrixParameteric(CGparame...
static final int CG_FOG7
Defined as part of enum type "CGresource" with expression '2924', CType: int.
static CGprogram cgCreateProgramFromStream(CGcontext ctx, int program_type, java.io.InputStream stream, int profile, java.lang.String entry, java.lang.String[] args)
A convenience method which reads all available data from the InputStream and then calls cgCreateProgr...
static final int CG_PSIZE2
Defined as part of enum type "CGresource" with expression '2823', CType: int.
static final int CG_HALF2
Defined as part of enum type "CGtype" with expression '0x402', CType: int.
static final int CG_FIXED2
Defined as part of enum type "CGtype" with expression '0x42f', CType: int.
static final int CG_SAMPLE3
Defined as part of enum type "CGresource" with expression '2952', CType: int.
static final long CG_UNKNOWN_TYPE
Defined as part of enum type "CGtype" with expression '0x0L', CType: long.
static void cgSetMatrixParameterdr(CGparameter param, double[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterdr(CGparame...
static final int CG_NORMAL15
Defined as part of enum type "CGresource" with expression '3107', CType: int.
static CGparameter cgGetConnectedParameter(CGparameter param)
Entry point (through function pointer) to C language function: CGparameter cgGetConnectedParameter(...
static final int CG_IS_NOT_PROGRAM_PARAMETER_ERROR
Defined as part of enum type "CGerror" with expression '31', CType: int.
static final int CG_NO_ERROR
Defined as part of enum type "CGerror" with expression '0', CType: int.
static CGstate cgGetNamedState(CGcontext arg0, String name)
Entry point (through function pointer) to C language function: CGstate cgGetNamedState(CGcontext,...
static boolean cgIsParameter(CGparameter param)
Entry point (through function pointer) to C language function: CGbool cgIsParameter(CGparameter par...
static final int CG_BOOL3x4
Defined as part of enum type "CGtype" with expression '0x46a', CType: int.
static final int CG_GL_PROJECTION_MATRIX
Defined as part of enum type "CGGLenum" with expression '0x5', CType: int.
static final int CG_NVPARSE_ERROR
Defined as part of enum type "CGerror" with expression '14', CType: int.
static final int CG_NON_NUMERIC_PARAMETER_ERROR
Defined as part of enum type "CGerror" with expression '52', CType: int.
static final int CG_SAMPLER2D
Defined as part of enum type "CGtype" with expression '0x42a', CType: int.
static int cgGetParameterValuedr(CGparameter param, int n, double[] vals, int vals_offset)
Entry point (through function pointer) to C language function: int cgGetParameterValuedr(CGparamete...
static final int CG_FLOAT3
Defined as part of enum type "CGtype" with expression '0x417', CType: int.
static void cgGLGetParameter4f(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter4f(CGparameter ...
static final int CG_ROW_MAJOR
Defined as part of enum type "CGenum" with expression '4120', CType: int.
static boolean cgIsParameterGlobal(CGparameter param)
Entry point (through function pointer) to C language function: CGbool cgIsParameterGlobal(CGparamet...
static final int CG_VARYING
Defined as part of enum type "CGenum" with expression '4101', CType: int.
static final int CG_PROFILE_ARBVP1
Defined as part of enum type "CGprofile" with expression '6150', CType: int.
static int cgGetAutoCompile(CGcontext ctx)
Entry point (through function pointer) to C language function: CGenum cgGetAutoCompile(CGcontext ct...
static final int CG_TEXUNIT1
Defined as part of enum type "CGresource" with expression '2049', CType: int.
static final int CG_FLOAT1x4
Defined as part of enum type "CGtype" with expression '0x41c', CType: int.
static final int CG_BLENDWEIGHT9
Defined as part of enum type "CGresource" with expression '3037', CType: int.
static int cgGetParameterValueic(CGparameter param, int n, IntBuffer vals)
Entry point (through function pointer) to C language function: int cgGetParameterValueic(CGparamete...
static CGparameter cgGetDependentAnnotationParameter(CGannotation arg0, int index)
Entry point (through function pointer) to C language function: CGparameter cgGetDependentAnnotation...
static final int CG_BINORMAL10
Defined as part of enum type "CGresource" with expression '2895', CType: int.
static void cgSetMatrixParameterdr(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterdr(CGparame...
static void cgDestroyParameter(CGparameter param)
Entry point (through function pointer) to C language function: void cgDestroyParameter(CGparameter ...
static final int CG_WPOS
Defined as part of enum type "CGresource" with expression '2373', CType: int.
static final int CG_OUT
Defined as part of enum type "CGenum" with expression '4098', CType: int.
static CGparameter cgCreateParameterMultiDimArray(CGcontext ctx, int type, int dim, int[] lengths, int lengths_offset)
Entry point (through function pointer) to C language function: CGparameter cgCreateParameterMultiDi...
static String cgGetProfileString(int profile)
Entry point (through function pointer) to C language function: const char * cgGetProfileString(CGpr...
static void cgGLGetMatrixParameterArraydr(CGparameter param, long offset, long nelements, DoubleBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterArraydr(C...
static void cgGLDisableProfile(int profile)
Entry point (through function pointer) to C language function: void cgGLDisableProfile(CGprofile pr...
static boolean cgGLIsProfileSupported(int profile)
Entry point (through function pointer) to C language function: CGbool cgGLIsProfileSupported(CGprof...
static final int CG_TANGENT9
Defined as part of enum type "CGresource" with expression '2574', CType: int.
static CGparameter cgGetNamedParameter(CGprogram prog, String name)
Entry point (through function pointer) to C language function: CGparameter cgGetNamedParameter(CGpr...
static final int CG_ERROR
Defined as part of enum type "CGenum" with expression '4111', CType: int.
static int cgGetNumParentTypes(int type)
Entry point (through function pointer) to C language function: int cgGetNumParentTypes(CGtype type)
static final int CG_NORMAL10
Defined as part of enum type "CGresource" with expression '3102', CType: int.
static void cgSetParameter2iv(CGparameter param, int[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter2iv(CGparameter p...
static final int CG_MIXED
Defined as part of enum type "CGenum" with expression '4100', CType: int.
static void cgSetParameter4fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter4fv(CGparameter p...
static void cgSetProgramProfile(CGprogram prog, int profile)
Entry point (through function pointer) to C language function: void cgSetProgramProfile(CGprogram p...
static CGannotation cgGetNamedProgramAnnotation(CGprogram arg0, String arg1)
Entry point (through function pointer) to C language function: CGannotation cgGetNamedProgramAnnota...
static final int CG_PROGRAM_LOAD_ERROR
Defined as part of enum type "CGerror" with expression '4', CType: int.
static CGpass cgGetNextPass(CGpass arg0)
Entry point (through function pointer) to C language function: CGpass cgGetNextPass(CGpass)
static final int CG_PSIZE14
Defined as part of enum type "CGresource" with expression '2835', CType: int.
static void cgSetParameter2iv(CGparameter param, IntBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter2iv(CGparameter p...
static final int CG_INT3x4
Defined as part of enum type "CGtype" with expression '0x455', CType: int.
static void cgSetMatrixParameterfc(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterfc(CGparame...
static final int CG_TEX3
Defined as part of enum type "CGresource" with expression '2192', CType: int.
static void cgSetParameter1f(CGparameter param, float x)
Entry point (through function pointer) to C language function: void cgSetParameter1f(CGparameter pa...
static final int CG_INVALID_PARAMETER_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '46', CType: int.
static final int CG_INT4x1
Defined as part of enum type "CGtype" with expression '0x456', CType: int.
static void cgGLSetParameterArray3f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray3f(CGparam...
static final int CG_FLOAT4x2
Defined as part of enum type "CGtype" with expression '0x426', CType: int.
static final int CG_UNKNOWN_PROFILE_ERROR
Defined as part of enum type "CGerror" with expression '19', CType: int.
static final int CG_NORMAL9
Defined as part of enum type "CGresource" with expression '3101', CType: int.
static final int CG_BLENDWEIGHT8
Defined as part of enum type "CGresource" with expression '3036', CType: int.
static void cgSetParameter4iv(CGparameter param, IntBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter4iv(CGparameter p...
static final int CG_ATTR5
Defined as part of enum type "CGresource" with expression '2118', CType: int.
static final int CG_SAMPLE2
Defined as part of enum type "CGresource" with expression '2951', CType: int.
static final int CG_TEXCOORD4
Defined as part of enum type "CGresource" with expression '3224', CType: int.
static void cgGLGetMatrixParameterdr(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLGetMatrixParameterdr(CGpara...
static CGeffect cgGetFirstEffect(CGcontext arg0)
Entry point (through function pointer) to C language function: CGeffect cgGetFirstEffect(CGcontext)
static final int CG_SAMPLE11
Defined as part of enum type "CGresource" with expression '2960', CType: int.
static final int CG_BINORMAL15
Defined as part of enum type "CGresource" with expression '2900', CType: int.
static void cgGLUnbindProgram(int profile)
Entry point (through function pointer) to C language function: void cgGLUnbindProgram(CGprofile pro...
static final int CG_DEPTH0
Defined as part of enum type "CGresource" with expression '2933', CType: int.
static CGannotation cgGetFirstPassAnnotation(CGpass arg0)
Entry point (through function pointer) to C language function: CGannotation cgGetFirstPassAnnotatio...
static void cgGetMatrixParameterfc(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterfc(CGparame...
static boolean cgIsProgram(CGprogram program)
Entry point (through function pointer) to C language function: CGbool cgIsProgram(CGprogram program...
static final int CG_FIXED3x3
Defined as part of enum type "CGtype" with expression '0x43c', CType: int.
static CGeffect cgGetNextEffect(CGeffect arg0)
Entry point (through function pointer) to C language function: CGeffect cgGetNextEffect(CGeffect)
static void cgGLSetParameter1dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter1dv(CGparameter...
static final int CG_FIXED2x1
Defined as part of enum type "CGtype" with expression '0x436', CType: int.
static final int CG_POSITION10
Defined as part of enum type "CGresource" with expression '2447', CType: int.
static boolean cgIsParameterReferenced(CGparameter param)
Entry point (through function pointer) to C language function: CGbool cgIsParameterReferenced(CGpar...
static void cgSetMatrixParameteric(CGparameter param, int[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgSetMatrixParameteric(CGparame...
static String cgGetStringParameterValue(CGparameter param)
Entry point (through function pointer) to C language function: const char * cgGetStringParameterVal...
static final int CG_BLENDWEIGHT13
Defined as part of enum type "CGresource" with expression '3041', CType: int.
static void cgSetParameter2fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter2fv(CGparameter p...
static final int CG_COLOR12
Defined as part of enum type "CGresource" with expression '2769', CType: int.
static final int CG_BLENDINDICES7
Defined as part of enum type "CGresource" with expression '2700', CType: int.
static final int CG_HALF2x2
Defined as part of enum type "CGtype" with expression '0x40a', CType: int.
static final int CG_CONSTANT
Defined as part of enum type "CGenum" with expression '4103', CType: int.
static final int CG_COLOR11
Defined as part of enum type "CGresource" with expression '2768', CType: int.
static CGprogram cgGetProgramStateAssignmentValue(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGprogram cgGetProgramStateAssignmen...
static final int CG_TEXCOORD7
Defined as part of enum type "CGresource" with expression '3227', CType: int.
static final int CG_HALF4x4
Defined as part of enum type "CGtype" with expression '0x414', CType: int.
static final int CG_BOOL2x2
Defined as part of enum type "CGtype" with expression '0x464', CType: int.
static String cgGetErrorString(int error)
Entry point (through function pointer) to C language function: const char * cgGetErrorString(CGerro...
static final int CG_FLOAT3x4
Defined as part of enum type "CGtype" with expression '0x424', CType: int.
static final int CG_UNSUPPORTED_GL_EXTENSION_ERROR
Defined as part of enum type "CGerror" with expression '7', CType: int.
static final int CG_ATTR1
Defined as part of enum type "CGresource" with expression '2114', CType: int.
static void cgSetParameter3iv(CGparameter param, IntBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter3iv(CGparameter p...
static CGstate cgCreateState(CGcontext arg0, String name, int arg2)
Entry point (through function pointer) to C language function: CGstate cgCreateState(CGcontext,...
static int cgGetParameterType(CGparameter param)
Entry point (through function pointer) to C language function: CGtype cgGetParameterType(CGparamete...
static void cgGLSetMatrixParameterdr(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterdr(CGpara...
static final int CG_GL_MODELVIEW_PROJECTION_MATRIX
Defined as part of enum type "CGGLenum" with expression '0x7', CType: int.
static final int CG_CONST_EYE
Defined as part of enum type "CGresource" with expression '3291', CType: int.
static int cgGetParameterNamedType(CGparameter param)
Entry point (through function pointer) to C language function: CGtype cgGetParameterNamedType(CGpar...
static final int CG_BLENDINDICES2
Defined as part of enum type "CGresource" with expression '2695', CType: int.
static CGtechnique cgGetNextTechnique(CGtechnique arg0)
Entry point (through function pointer) to C language function: CGtechnique cgGetNextTechnique(CGtec...
static final int CG_INT4x3
Defined as part of enum type "CGtype" with expression '0x458', CType: int.
static final int CG_TANGENT13
Defined as part of enum type "CGresource" with expression '2578', CType: int.
static final int CG_NORMAL0
Defined as part of enum type "CGresource" with expression '3092', CType: int.
static void cgGLGetParameter3d(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter3d(CGparameter ...
static void cgGLGetParameterArray1d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray1d(CGparam...
static final int CG_BOOL1x3
Defined as part of enum type "CGtype" with expression '0x461', CType: int.
static final int CG_STATE_ASSIGNMENT_TYPE_MISMATCH_ERROR
Defined as part of enum type "CGerror" with expression '47', CType: int.
static String cgGetString(int sname)
Entry point (through function pointer) to C language function: const char * cgGetString(CGenum snam...
static String cgGetLastErrorString(int[] error, int error_offset)
Entry point (through function pointer) to C language function: const char * cgGetLastErrorString(CG...
static final int CG_POSITION7
Defined as part of enum type "CGresource" with expression '2444', CType: int.
static final int CG_BLENDWEIGHT2
Defined as part of enum type "CGresource" with expression '3030', CType: int.
static final int CG_OFFSET_TEXTURE_BIAS
Defined as part of enum type "CGresource" with expression '3290', CType: int.
static void cgGLSetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, float[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArrayfr(C...
static final int CG_TEXUNIT4
Defined as part of enum type "CGresource" with expression '2052', CType: int.
static void cgGetMatrixParameterfc(CGparameter param, float[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterfc(CGparame...
static final int CG_INVALID_PARAMETER_ERROR
Defined as part of enum type "CGerror" with expression '2', CType: int.
static final int CG_FIXED3x2
Defined as part of enum type "CGtype" with expression '0x43b', CType: int.
static final int CG_TEX2
Defined as part of enum type "CGresource" with expression '2181', CType: int.
static final int CG_TYPE_START_ENUM
Defined as part of enum type "CGtype" with expression '1024', CType: int.
static final int CG_FLOAT
Defined as part of enum type "CGtype" with expression '0x415', CType: int.
static final int CG_TANGENT0
Defined as part of enum type "CGresource" with expression '2565', CType: int.
static final int CG_INT2x1
Defined as part of enum type "CGtype" with expression '0x44e', CType: int.
static final int CG_BIND_CREATES_CYCLE_ERROR
Defined as part of enum type "CGerror" with expression '35', CType: int.
static String cgGetPassName(CGpass arg0)
Entry point (through function pointer) to C language function: const char * cgGetPassName(CGpass)
static CGstateassignment cgGetFirstStateAssignment(CGpass arg0)
Entry point (through function pointer) to C language function: CGstateassignment cgGetFirstStateAss...
static CGparameter cgGetFirstLeafParameter(CGprogram prog, int name_space)
Entry point (through function pointer) to C language function: CGparameter cgGetFirstLeafParameter(...
static int cgGLGetProgramID(CGprogram program)
Entry point (through function pointer) to C language function: GLuint cgGLGetProgramID(CGprogram pr...
static final int CG_ATTR9
Defined as part of enum type "CGresource" with expression '2122', CType: int.
static final int CG_PARAMETERCLASS_SAMPLER
Defined as part of enum type "CGparameterclass" with expression '0x6', CType: int.
static final int CG_COLOR15
Defined as part of enum type "CGresource" with expression '2772', CType: int.
static final int CG_INT1
Defined as part of enum type "CGtype" with expression '0x446', CType: int.
static String cgGetTechniqueName(CGtechnique arg0)
Entry point (through function pointer) to C language function: const char * cgGetTechniqueName(CGte...
static final int CG_COLOR8
Defined as part of enum type "CGresource" with expression '2765', CType: int.
static final int CG_FOG3
Defined as part of enum type "CGresource" with expression '2920', CType: int.
static final int CG_BOOL2x4
Defined as part of enum type "CGtype" with expression '0x466', CType: int.
static final int CG_ATTR0
Defined as part of enum type "CGresource" with expression '2113', CType: int.
static final int CG_PROFILE_VS_2_X
Defined as part of enum type "CGprofile" with expression '6155', CType: int.
static void cgSetParameter4fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter4fv(CGparameter p...
static final int CG_FIXED4x3
Defined as part of enum type "CGtype" with expression '0x440', CType: int.
static void cgSetParameter3d(CGparameter param, double x, double y, double z)
Entry point (through function pointer) to C language function: void cgSetParameter3d(CGparameter pa...
static void cgGLGetParameterArray2d(CGparameter param, long offset, long nelements, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray2d(CGparam...
static final int CG_INVALID_ANNOTATION_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '44', CType: int.
static void cgSetMatrixParameterfc(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterfc(CGparame...
static int cgGetParameterVariability(CGparameter param)
Entry point (through function pointer) to C language function: CGenum cgGetParameterVariability(CGp...
static void cgGLSetParameter3dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter3dv(CGparameter...
static final int CG_SAMPLE4
Defined as part of enum type "CGresource" with expression '2953', CType: int.
static void cgSetLastListing(Buffer handle, String listing)
Entry point (through function pointer) to C language function: void cgSetLastListing(CGhandle handl...
static final int CG_FOG12
Defined as part of enum type "CGresource" with expression '2929', CType: int.
static final int CG_SAMPLE12
Defined as part of enum type "CGresource" with expression '2961', CType: int.
static void cgSetParameterSemantic(CGparameter param, String semantic)
Entry point (through function pointer) to C language function: void cgSetParameterSemantic(CGparame...
static final int CG_CURRENT
Defined as part of enum type "CGenum" with expression '4117', CType: int.
static void cgGLSetParameter2fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter2fv(CGparameter...
static final int CG_VERSION
Defined as part of enum type "CGenum" with expression '4119', CType: int.
static CGparameter cgGetEffectParameterBySemantic(CGeffect arg0, String arg1)
Entry point (through function pointer) to C language function: CGparameter cgGetEffectParameterBySe...
static final int CG_BOOL3x1
Defined as part of enum type "CGtype" with expression '0x467', CType: int.
static CGstate cgGetNextState(CGstate arg0)
Entry point (through function pointer) to C language function: CGstate cgGetNextState(CGstate)
static int cgGetNamedUserType(Buffer handle, String name)
Entry point (through function pointer) to C language function: CGtype cgGetNamedUserType(CGhandle h...
static int cgGetParameterValueir(CGparameter param, int n, IntBuffer vals)
Entry point (through function pointer) to C language function: int cgGetParameterValueir(CGparamete...
static int cgGetNumDependentStateAssignmentParameters(CGstateassignment arg0)
Entry point (through function pointer) to C language function: int cgGetNumDependentStateAssignment...
static String cgGetStateName(CGstate arg0)
Entry point (through function pointer) to C language function: const char * cgGetStateName(CGstate)
static final int CG_TEX6
Defined as part of enum type "CGresource" with expression '2195', CType: int.
static final int CG_PROFILE_VS_2_0
Defined as part of enum type "CGprofile" with expression '6154', CType: int.
static final int CG_SAMPLE10
Defined as part of enum type "CGresource" with expression '2959', CType: int.
static final int CG_HALF3x1
Defined as part of enum type "CGtype" with expression '0x40d', CType: int.
static final int CG_BINORMAL3
Defined as part of enum type "CGresource" with expression '2888', CType: int.
static CGstate cgGetFirstSamplerState(CGcontext arg0)
Entry point (through function pointer) to C language function: CGstate cgGetFirstSamplerState(CGcon...
static final int CG_TEXCOORD5
Defined as part of enum type "CGresource" with expression '3225', CType: int.
static int cgGetArrayType(CGparameter param)
Entry point (through function pointer) to C language function: CGtype cgGetArrayType(CGparameter pa...
static int cgGetParameterValuedc(CGparameter param, int n, DoubleBuffer vals)
Entry point (through function pointer) to C language function: int cgGetParameterValuedc(CGparamete...
static final int CG_BLENDWEIGHT10
Defined as part of enum type "CGresource" with expression '3038', CType: int.
static String cgGetLastListing(CGcontext ctx)
Entry point (through function pointer) to C language function: const char * cgGetLastListing(CGcont...
static void cgGLGetParameterArray3f(CGparameter param, long offset, long nelements, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray3f(CGparam...
static CGannotation cgGetFirstProgramAnnotation(CGprogram arg0)
Entry point (through function pointer) to C language function: CGannotation cgGetFirstProgramAnnota...
static final int CG_BINORMAL9
Defined as part of enum type "CGresource" with expression '2894', CType: int.
static final int CG_COMBINER_STAGE_CONST1
Defined as part of enum type "CGresource" with expression '3287', CType: int.
static void cgEvaluateProgram(CGprogram arg0, float[] arg1, int arg1_offset, int ncomps, int nx, int ny, int nz)
Entry point (through function pointer) to C language function: void cgEvaluateProgram(CGprogram,...
static void cgGetMatrixParameterir(CGparameter param, int[] matrix, int matrix_offset)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterir(CGparame...
static void cgGLBindProgram(CGprogram program)
Entry point (through function pointer) to C language function: void cgGLBindProgram(CGprogram progr...
static final int CG_COLOR7
Defined as part of enum type "CGresource" with expression '2764', CType: int.
static String cgGetParameterSemantic(CGparameter param)
Entry point (through function pointer) to C language function: const char * cgGetParameterSemantic(...
static final int CG_TEX5
Defined as part of enum type "CGresource" with expression '2194', CType: int.
static final int CG_BOOL1x4
Defined as part of enum type "CGtype" with expression '0x462', CType: int.
static void cgGLSetupSampler(CGparameter param, int texobj)
Entry point (through function pointer) to C language function: void cgGLSetupSampler(CGparameter pa...
static final int CG_FOG11
Defined as part of enum type "CGresource" with expression '2928', CType: int.
static void cgGLSetMatrixParameterArraydc(CGparameter param, long offset, long nelements, double[] matrices, int matrices_offset)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArraydc(C...
static final int CG_INT3x1
Defined as part of enum type "CGtype" with expression '0x452', CType: int.
static void cgSetMatrixParameterir(CGparameter param, IntBuffer matrix)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterir(CGparame...
static final int CG_COLOR14
Defined as part of enum type "CGresource" with expression '2771', CType: int.
static CGparameter cgGetNamedProgramParameter(CGprogram prog, int name_space, String name)
Entry point (through function pointer) to C language function: CGparameter cgGetNamedProgramParamet...
static final int CG_FOG6
Defined as part of enum type "CGresource" with expression '2923', CType: int.
static final int CG_BOOL1x2
Defined as part of enum type "CGtype" with expression '0x460', CType: int.
static final int CG_FLOAT2x4
Defined as part of enum type "CGtype" with expression '0x420', CType: int.
static final int CG_PROGRAM_SOURCE
Defined as part of enum type "CGenum" with expression '4104', CType: int.
static final int CG_HALF3x2
Defined as part of enum type "CGtype" with expression '0x40e', CType: int.
static final int CG_FOG14
Defined as part of enum type "CGresource" with expression '2931', CType: int.
static void cgGLGetParameter1f(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter1f(CGparameter ...
static void cgGLSetParameterArray3d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray3d(CGparam...
static int cgGetParameterValuefr(CGparameter param, int n, float[] vals, int vals_offset)
Entry point (through function pointer) to C language function: int cgGetParameterValuefr(CGparamete...
static void cgSetParameter1iv(CGparameter param, int[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter1iv(CGparameter p...
static final int CG_FOG13
Defined as part of enum type "CGresource" with expression '2930', CType: int.
static void cgGLSetParameter3fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter3fv(CGparameter...
static void cgSetParameterValuefr(CGparameter param, int n, float[] vals, int vals_offset)
Entry point (through function pointer) to C language function: void cgSetParameterValuefr(CGparamet...
static int cgGetParameterBaseResource(CGparameter param)
Entry point (through function pointer) to C language function: CGresource cgGetParameterBaseResourc...
static void cgGLSetParameter2dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter2dv(CGparameter...
static void cgGLRegisterStates(CGcontext arg0)
Entry point (through function pointer) to C language function: void cgGLRegisterStates(CGcontext)
static final int CG_COL3
Defined as part of enum type "CGresource" with expression '2248', CType: int.
static void cgSetParameterValueic(CGparameter param, int n, int[] vals, int vals_offset)
Entry point (through function pointer) to C language function: void cgSetParameterValueic(CGparamet...
static final int CG_FLOAT4x3
Defined as part of enum type "CGtype" with expression '0x427', CType: int.
static final int CG_NORMAL13
Defined as part of enum type "CGresource" with expression '3105', CType: int.
static void cgGLGetParameter1d(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter1d(CGparameter ...
static final int CG_OFFSET_TEXTURE_MATRIX
Defined as part of enum type "CGresource" with expression '3288', CType: int.
static final int CG_TEXCOORD0
Defined as part of enum type "CGresource" with expression '3220', CType: int.
static final int CG_FLOAT1x2
Defined as part of enum type "CGtype" with expression '0x41a', CType: int.
static void cgGLGetParameter4f(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter4f(CGparameter ...
static CGstate cgGetFirstState(CGcontext arg0)
Entry point (through function pointer) to C language function: CGstate cgGetFirstState(CGcontext)
static final int CG_BOOL3x2
Defined as part of enum type "CGtype" with expression '0x468', CType: int.
static void cgSetMultiDimArraySize(CGparameter param, IntBuffer sizes)
Entry point (through function pointer) to C language function: void cgSetMultiDimArraySize(CGparame...
static void cgSetParameter1fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter1fv(CGparameter p...
static final int CG_POSITION13
Defined as part of enum type "CGresource" with expression '2450', CType: int.
static final int CG_INVALID_VALUE_TYPE_ERROR
Defined as part of enum type "CGerror" with expression '8', CType: int.
static void cgSetParameter1iv(CGparameter param, IntBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter1iv(CGparameter p...
static final int CG_GL_MATRIX_TRANSPOSE
Defined as part of enum type "CGGLenum" with expression '1', CType: int.
static CGparameter cgGetSamplerStateAssignmentValue(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGparameter cgGetSamplerStateAssignm...
static void cgGLSetParameter3dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter3dv(CGparameter...
static final int CG_GL_TEXTURE_MATRIX
Defined as part of enum type "CGGLenum" with expression '0x6', CType: int.
static final int CG_TEXCOORD13
Defined as part of enum type "CGresource" with expression '3233', CType: int.
static final int CG_C
Defined as part of enum type "CGresource" with expression '2178', CType: int.
static void cgGLGetParameter2d(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgGLGetParameter2d(CGparameter ...
static void cgSetParameter1dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter1dv(CGparameter p...
static final int CG_PSIZE0
Defined as part of enum type "CGresource" with expression '2821', CType: int.
static final int CG_DEPTH6
Defined as part of enum type "CGresource" with expression '2939', CType: int.
static void cgGLDisableTextureParameter(CGparameter param)
Entry point (through function pointer) to C language function: void cgGLDisableTextureParameter(CGp...
static int cgGetParameterValuedr(CGparameter param, int n, DoubleBuffer vals)
Entry point (through function pointer) to C language function: int cgGetParameterValuedr(CGparamete...
static final int CG_INVALID_CONTEXT_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '16', CType: int.
static CGstate cgGetNamedSamplerState(CGcontext arg0, String name)
Entry point (through function pointer) to C language function: CGstate cgGetNamedSamplerState(CGcon...
static final int CG_BLENDINDICES14
Defined as part of enum type "CGresource" with expression '2707', CType: int.
static CGstate cgCreateSamplerState(CGcontext arg0, String name, int arg2)
Entry point (through function pointer) to C language function: CGstate cgCreateSamplerState(CGconte...
static final int CG_BOOL1
Defined as part of enum type "CGtype" with expression '0x45b', CType: int.
static void cgGLSetParameter2dv(CGparameter param, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter2dv(CGparameter...
static final int CG_COMBINER_CONST0
Defined as part of enum type "CGresource" with expression '3284', CType: int.
static void cgSetParameter2f(CGparameter param, float x, float y)
Entry point (through function pointer) to C language function: void cgSetParameter2f(CGparameter pa...
static void cgSetParameter3iv(CGparameter param, int[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter3iv(CGparameter p...
static final int CG_DEFAULT
Defined as part of enum type "CGenum" with expression '4110', CType: int.
static final int CG_INT2x4
Defined as part of enum type "CGtype" with expression '0x451', CType: int.
static final int CG_PSIZE1
Defined as part of enum type "CGresource" with expression '2822', CType: int.
static final int CG_POSITION4
Defined as part of enum type "CGresource" with expression '2441', CType: int.
static void cgGLSetParameter4fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameter4fv(CGparameter...
static void cgSetParameterValueic(CGparameter param, int n, IntBuffer vals)
Entry point (through function pointer) to C language function: void cgSetParameterValueic(CGparamet...
static final int CG_PSIZE3
Defined as part of enum type "CGresource" with expression '2824', CType: int.
static final int CG_COLOR0
Defined as part of enum type "CGresource" with expression '2757', CType: int.
static final int CG_FOGCOORD
Defined as part of enum type "CGresource" with expression '3156', CType: int.
static final int CG_BINORMAL1
Defined as part of enum type "CGresource" with expression '2886', CType: int.
static void cgSetParameterValueir(CGparameter param, int n, IntBuffer vals)
Entry point (through function pointer) to C language function: void cgSetParameterValueir(CGparamet...
static final int CG_FOG15
Defined as part of enum type "CGresource" with expression '2932', CType: int.
static int cgGetFirstError()
Entry point (through function pointer) to C language function: CGerror cgGetFirstError()
static final int CG_PROFILE_FP30
Defined as part of enum type "CGprofile" with expression '6149', CType: int.
static void cgConnectParameter(CGparameter from, CGparameter to)
Entry point (through function pointer) to C language function: void cgConnectParameter(CGparameter ...
static final int CG_PARAMETERCLASS_UNKNOWN
Defined as part of enum type "CGparameterclass" with expression '0', CType: int.
static int cgGetParameterIndex(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetParameterIndex(CGparameter ...
static final int CG_HALF3
Defined as part of enum type "CGtype" with expression '0x403', CType: int.
static final int CG_BLENDINDICES10
Defined as part of enum type "CGresource" with expression '2703', CType: int.
static void cgSetParameter1fv(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgSetParameter1fv(CGparameter p...
static final int CG_TEXCOORD6
Defined as part of enum type "CGresource" with expression '3226', CType: int.
static final int CG_NORMAL1
Defined as part of enum type "CGresource" with expression '3093', CType: int.
static final int CG_INT3
Defined as part of enum type "CGtype" with expression '0x448', CType: int.
static final int CG_HALF4x3
Defined as part of enum type "CGtype" with expression '0x413', CType: int.
static final int CG_SAMPLE1
Defined as part of enum type "CGresource" with expression '2950', CType: int.
static void cgGLSetParameterArray4f(CGparameter param, long offset, long nelements, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLSetParameterArray4f(CGparam...
static final int CG_POSITION2
Defined as part of enum type "CGresource" with expression '2439', CType: int.
static final int CG_POSITION9
Defined as part of enum type "CGresource" with expression '2446', CType: int.
static CGparameter cgGetFirstLeafEffectParameter(CGeffect arg0)
Entry point (through function pointer) to C language function: CGparameter cgGetFirstLeafEffectPara...
static void cgGLEnableProfile(int profile)
Entry point (through function pointer) to C language function: void cgGLEnableProfile(CGprofile pro...
static void cgGLGetParameter2f(CGparameter param, float[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameter2f(CGparameter ...
static boolean cgIsParentType(int parent, int child)
Entry point (through function pointer) to C language function: CGbool cgIsParentType(CGtype parent,...
static void cgSetMatrixParameterfr(CGparameter param, FloatBuffer matrix)
Entry point (through function pointer) to C language function: void cgSetMatrixParameterfr(CGparame...
static final int CG_DEPTH3
Defined as part of enum type "CGresource" with expression '2936', CType: int.
static CGannotation cgGetNextAnnotation(CGannotation arg0)
Entry point (through function pointer) to C language function: CGannotation cgGetNextAnnotation(CGa...
static void cgSetMultiDimArraySize(CGparameter param, int[] sizes, int sizes_offset)
Entry point (through function pointer) to C language function: void cgSetMultiDimArraySize(CGparame...
static int cgGetUserType(Buffer handle, int index)
Entry point (through function pointer) to C language function: CGtype cgGetUserType(CGhandle handle...
static final int CG_BOOL4x3
Defined as part of enum type "CGtype" with expression '0x46d', CType: int.
static void cgCompileProgram(CGprogram program)
Entry point (through function pointer) to C language function: void cgCompileProgram(CGprogram prog...
static final int CG_TEXUNIT9
Defined as part of enum type "CGresource" with expression '2057', CType: int.
static int cgGLGetLatestProfile(int profile_type)
Entry point (through function pointer) to C language function: CGprofile cgGLGetLatestProfile(CGGLe...
static final int CG_TEXCOORD15
Defined as part of enum type "CGresource" with expression '3235', CType: int.
static final int CG_SAMPLERRECT
Defined as part of enum type "CGtype" with expression '0x42c', CType: int.
static CGparameter cgCreateParameterMultiDimArray(CGcontext ctx, int type, int dim, IntBuffer lengths)
Entry point (through function pointer) to C language function: CGparameter cgCreateParameterMultiDi...
static int cgGetParameterRows(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetParameterRows(CGparameter p...
static void cgSetParameter2dv(CGparameter param, DoubleBuffer v)
Entry point (through function pointer) to C language function: void cgSetParameter2dv(CGparameter p...
static CGannotation cgGetNamedPassAnnotation(CGpass arg0, String arg1)
Entry point (through function pointer) to C language function: CGannotation cgGetNamedPassAnnotatio...
static String cgGetProgramString(CGprogram prog, int pname)
Entry point (through function pointer) to C language function: const char * cgGetProgramString(CGpr...
static void cgGLSetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, FloatBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArrayfc(C...
static void cgSetPassState(CGpass arg0)
Entry point (through function pointer) to C language function: void cgSetPassState(CGpass)
static final int CG_BOOL
Defined as part of enum type "CGtype" with expression '0x45a', CType: int.
static CGstateassignment cgGetNextStateAssignment(CGstateassignment arg0)
Entry point (through function pointer) to C language function: CGstateassignment cgGetNextStateAssi...
static CGparameter cgGetFirstParameter(CGprogram prog, int name_space)
Entry point (through function pointer) to C language function: CGparameter cgGetFirstParameter(CGpr...
static final int CG_NOT_ENOUGH_DATA_ERROR
Defined as part of enum type "CGerror" with expression '51', CType: int.
static void cgGetMatrixParameterir(CGparameter param, IntBuffer matrix)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterir(CGparame...
static final int CG_TEXUNIT0
Defined as part of enum type "CGresource" with expression '2048', CType: int.
static final int CG_BLENDWEIGHT0
Defined as part of enum type "CGresource" with expression '3028', CType: int.
static final int CG_TANGENT10
Defined as part of enum type "CGresource" with expression '2575', CType: int.
static final int CG_BLENDINDICES3
Defined as part of enum type "CGresource" with expression '2696', CType: int.
static int cgGetParameterColumns(CGparameter param)
Entry point (through function pointer) to C language function: int cgGetParameterColumns(CGparamete...
static final int CG_INVALID_PROFILE_ERROR
Defined as part of enum type "CGerror" with expression '3', CType: int.
static void cgGLGetParameterArray4d(CGparameter param, long offset, long nelements, double[] v, int v_offset)
Entry point (through function pointer) to C language function: void cgGLGetParameterArray4d(CGparam...
static final int CG_BLENDWEIGHT11
Defined as part of enum type "CGresource" with expression '3039', CType: int.
static boolean cgIsPass(CGpass arg0)
Entry point (through function pointer) to C language function: CGbool cgIsPass(CGpass)
static void cgGLSetParameter4fv(CGparameter param, FloatBuffer v)
Entry point (through function pointer) to C language function: void cgGLSetParameter4fv(CGparameter...
static final int CG_FOG0
Defined as part of enum type "CGresource" with expression '2917', CType: int.
static final int CG_PROGRAM_PROFILE
Defined as part of enum type "CGenum" with expression '4107', CType: int.
static final int CG_OFFSET_TEXTURE_SCALE
Defined as part of enum type "CGresource" with expression '3289', CType: int.
static void cgGLSetMatrixParameterArraydc(CGparameter param, long offset, long nelements, DoubleBuffer matrices)
Entry point (through function pointer) to C language function: void cgGLSetMatrixParameterArraydc(C...
static final int CG_HALF1x2
Defined as part of enum type "CGtype" with expression '0x406', CType: int.
static final int CG_INVALID_PASS_HANDLE_ERROR
Defined as part of enum type "CGerror" with expression '43', CType: int.
static void cgResetPassState(CGpass arg0)
Entry point (through function pointer) to C language function: void cgResetPassState(CGpass)
static void cgGetMatrixParameterdr(CGparameter param, DoubleBuffer matrix)
Entry point (through function pointer) to C language function: void cgGetMatrixParameterdr(CGparame...
static final int CG_BLENDWEIGHT7
Defined as part of enum type "CGresource" with expression '3035', CType: int.
static void cgSetAutoCompile(CGcontext ctx, int flag)
Entry point (through function pointer) to C language function: void cgSetAutoCompile(CGcontext ctx,...
This table is a cache of pointers to the dynamically-linkable C library.