JOGL v2.6.0-rc-20250706
JOGL, High-Performance Graphics Binding for Java™ (public API).
com.jogamp.opengl.cg.CgGL Class Reference
Collaboration diagram for com.jogamp.opengl.cg.CgGL:

Static Public Member Functions

static CGcontext cgCreateContext ()
 Entry point (through function pointer) to C language function:
CGcontext cgCreateContext()

More...
 
static void cgDestroyContext (CGcontext ctx)
 Entry point (through function pointer) to C language function:
void cgDestroyContext(CGcontext ctx)

More...
 
static boolean cgIsContext (CGcontext ctx)
 Entry point (through function pointer) to C language function:
CGbool cgIsContext(CGcontext ctx)

More...
 
static String cgGetLastListing (CGcontext ctx)
 Entry point (through function pointer) to C language function:
const char * cgGetLastListing(CGcontext ctx)

More...
 
static void cgSetLastListing (Buffer handle, String listing)
 Entry point (through function pointer) to C language function:
void cgSetLastListing(CGhandle handle, const char * listing)
More...
 
static void cgSetAutoCompile (CGcontext ctx, int flag)
 Entry point (through function pointer) to C language function:
void cgSetAutoCompile(CGcontext ctx, CGenum flag)
More...
 
static int cgGetAutoCompile (CGcontext ctx)
 Entry point (through function pointer) to C language function:
CGenum cgGetAutoCompile(CGcontext ctx)

More...
 
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 ctx, CGenum program_type, const char * program, CGprofile profile, const char * entry, const char * * args)
More...
 
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(CGcontext ctx, CGenum program_type, const char * program_file, CGprofile profile, const char * entry, const char * * args)
More...
 
static CGprogram cgCopyProgram (CGprogram program)
 Entry point (through function pointer) to C language function:
CGprogram cgCopyProgram(CGprogram program)

More...
 
static void cgDestroyProgram (CGprogram program)
 Entry point (through function pointer) to C language function:
void cgDestroyProgram(CGprogram program)

More...
 
static CGprogram cgGetFirstProgram (CGcontext ctx)
 Entry point (through function pointer) to C language function:
CGprogram cgGetFirstProgram(CGcontext ctx)

More...
 
static CGprogram cgGetNextProgram (CGprogram current)
 Entry point (through function pointer) to C language function:
CGprogram cgGetNextProgram(CGprogram current)

More...
 
static CGcontext cgGetProgramContext (CGprogram prog)
 Entry point (through function pointer) to C language function:
CGcontext cgGetProgramContext(CGprogram prog)

More...
 
static boolean cgIsProgram (CGprogram program)
 Entry point (through function pointer) to C language function:
CGbool cgIsProgram(CGprogram program)

More...
 
static void cgCompileProgram (CGprogram program)
 Entry point (through function pointer) to C language function:
void cgCompileProgram(CGprogram program)

More...
 
static boolean cgIsProgramCompiled (CGprogram program)
 Entry point (through function pointer) to C language function:
CGbool cgIsProgramCompiled(CGprogram program)

More...
 
static String cgGetProgramString (CGprogram prog, int pname)
 Entry point (through function pointer) to C language function:
const char * cgGetProgramString(CGprogram prog, CGenum pname)
More...
 
static int cgGetProgramProfile (CGprogram prog)
 Entry point (through function pointer) to C language function:
CGprofile cgGetProgramProfile(CGprogram prog)

More...
 
static void cgSetProgramProfile (CGprogram prog, int profile)
 Entry point (through function pointer) to C language function:
void cgSetProgramProfile(CGprogram prog, CGprofile profile)
More...
 
static void cgSetPassProgramParameters (CGprogram arg0)
 Entry point (through function pointer) to C language function:
void cgSetPassProgramParameters(CGprogram)

More...
 
static CGparameter cgCreateParameter (CGcontext ctx, int type)
 Entry point (through function pointer) to C language function:
CGparameter cgCreateParameter(CGcontext ctx, CGtype type)
More...
 
static CGparameter cgCreateParameterArray (CGcontext ctx, int type, int length)
 Entry point (through function pointer) to C language function:
CGparameter cgCreateParameterArray(CGcontext ctx, CGtype type, int length)
More...
 
static CGparameter cgCreateParameterMultiDimArray (CGcontext ctx, int type, int dim, IntBuffer lengths)
 Entry point (through function pointer) to C language function:
CGparameter cgCreateParameterMultiDimArray(CGcontext ctx, CGtype type, int dim, const int * lengths)
More...
 
static CGparameter cgCreateParameterMultiDimArray (CGcontext ctx, int type, int dim, int[] lengths, int lengths_offset)
 Entry point (through function pointer) to C language function:
CGparameter cgCreateParameterMultiDimArray(CGcontext ctx, CGtype type, int dim, const int * lengths)
More...
 
static void cgDestroyParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
void cgDestroyParameter(CGparameter param)

More...
 
static void cgConnectParameter (CGparameter from, CGparameter to)
 Entry point (through function pointer) to C language function:
void cgConnectParameter(CGparameter from, CGparameter to)

More...
 
static void cgDisconnectParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
void cgDisconnectParameter(CGparameter param)

More...
 
static CGparameter cgGetConnectedParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
CGparameter cgGetConnectedParameter(CGparameter param)

More...
 
static int cgGetNumConnectedToParameters (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetNumConnectedToParameters(CGparameter param)

More...
 
static CGparameter cgGetConnectedToParameter (CGparameter param, int index)
 Entry point (through function pointer) to C language function:
CGparameter cgGetConnectedToParameter(CGparameter param, int index)

More...
 
static CGparameter cgGetNamedParameter (CGprogram prog, String name)
 Entry point (through function pointer) to C language function:
CGparameter cgGetNamedParameter(CGprogram prog, const char * name)

More...
 
static CGparameter cgGetNamedProgramParameter (CGprogram prog, int name_space, String name)
 Entry point (through function pointer) to C language function:
CGparameter cgGetNamedProgramParameter(CGprogram prog, CGenum name_space, const char * name)
More...
 
static CGparameter cgGetFirstParameter (CGprogram prog, int name_space)
 Entry point (through function pointer) to C language function:
CGparameter cgGetFirstParameter(CGprogram prog, CGenum name_space)
More...
 
static CGparameter cgGetNextParameter (CGparameter current)
 Entry point (through function pointer) to C language function:
CGparameter cgGetNextParameter(CGparameter current)

More...
 
static CGparameter cgGetFirstLeafParameter (CGprogram prog, int name_space)
 Entry point (through function pointer) to C language function:
CGparameter cgGetFirstLeafParameter(CGprogram prog, CGenum name_space)
More...
 
static CGparameter cgGetNextLeafParameter (CGparameter current)
 Entry point (through function pointer) to C language function:
CGparameter cgGetNextLeafParameter(CGparameter current)

More...
 
static CGparameter cgGetFirstStructParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
CGparameter cgGetFirstStructParameter(CGparameter param)

More...
 
static CGparameter cgGetNamedStructParameter (CGparameter param, String name)
 Entry point (through function pointer) to C language function:
CGparameter cgGetNamedStructParameter(CGparameter param, const char * name)

More...
 
static CGparameter cgGetFirstDependentParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
CGparameter cgGetFirstDependentParameter(CGparameter param)

More...
 
static CGparameter cgGetArrayParameter (CGparameter aparam, int index)
 Entry point (through function pointer) to C language function:
CGparameter cgGetArrayParameter(CGparameter aparam, int index)

More...
 
static int cgGetArrayDimension (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetArrayDimension(CGparameter param)

More...
 
static int cgGetArrayType (CGparameter param)
 Entry point (through function pointer) to C language function:
CGtype cgGetArrayType(CGparameter param)

More...
 
static int cgGetArraySize (CGparameter param, int dimension)
 Entry point (through function pointer) to C language function:
int cgGetArraySize(CGparameter param, int dimension)

More...
 
static int cgGetArrayTotalSize (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetArrayTotalSize(CGparameter param)

More...
 
static void cgSetArraySize (CGparameter param, int size)
 Entry point (through function pointer) to C language function:
void cgSetArraySize(CGparameter param, int size)

More...
 
static void cgSetMultiDimArraySize (CGparameter param, IntBuffer sizes)
 Entry point (through function pointer) to C language function:
void cgSetMultiDimArraySize(CGparameter param, const int * sizes)
More...
 
static void cgSetMultiDimArraySize (CGparameter param, int[] sizes, int sizes_offset)
 Entry point (through function pointer) to C language function:
void cgSetMultiDimArraySize(CGparameter param, const int * sizes)

More...
 
static CGprogram cgGetParameterProgram (CGparameter param)
 Entry point (through function pointer) to C language function:
CGprogram cgGetParameterProgram(CGparameter param)

More...
 
static CGcontext cgGetParameterContext (CGparameter param)
 Entry point (through function pointer) to C language function:
CGcontext cgGetParameterContext(CGparameter param)

More...
 
static boolean cgIsParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
CGbool cgIsParameter(CGparameter param)

More...
 
static String cgGetParameterName (CGparameter param)
 Entry point (through function pointer) to C language function:
const char * cgGetParameterName(CGparameter param)

More...
 
static int cgGetParameterType (CGparameter param)
 Entry point (through function pointer) to C language function:
CGtype cgGetParameterType(CGparameter param)

More...
 
static int cgGetParameterBaseType (CGparameter param)
 Entry point (through function pointer) to C language function:
CGtype cgGetParameterBaseType(CGparameter param)

More...
 
static int cgGetParameterClass (CGparameter param)
 Entry point (through function pointer) to C language function:
CGparameterclass cgGetParameterClass(CGparameter param)

More...
 
static int cgGetParameterRows (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetParameterRows(CGparameter param)

More...
 
static int cgGetParameterColumns (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetParameterColumns(CGparameter param)

More...
 
static int cgGetParameterNamedType (CGparameter param)
 Entry point (through function pointer) to C language function:
CGtype cgGetParameterNamedType(CGparameter param)

More...
 
static String cgGetParameterSemantic (CGparameter param)
 Entry point (through function pointer) to C language function:
const char * cgGetParameterSemantic(CGparameter param)

More...
 
static int cgGetParameterResource (CGparameter param)
 Entry point (through function pointer) to C language function:
CGresource cgGetParameterResource(CGparameter param)

More...
 
static int cgGetParameterBaseResource (CGparameter param)
 Entry point (through function pointer) to C language function:
CGresource cgGetParameterBaseResource(CGparameter param)

More...
 
static long cgGetParameterResourceIndex (CGparameter param)
 Entry point (through function pointer) to C language function:
unsigned long cgGetParameterResourceIndex(CGparameter param)

More...
 
static int cgGetParameterVariability (CGparameter param)
 Entry point (through function pointer) to C language function:
CGenum cgGetParameterVariability(CGparameter param)

More...
 
static int cgGetParameterDirection (CGparameter param)
 Entry point (through function pointer) to C language function:
CGenum cgGetParameterDirection(CGparameter param)

More...
 
static boolean cgIsParameterReferenced (CGparameter param)
 Entry point (through function pointer) to C language function:
CGbool cgIsParameterReferenced(CGparameter param)

More...
 
static boolean cgIsParameterUsed (CGparameter param, Buffer handle)
 Entry point (through function pointer) to C language function:
CGbool cgIsParameterUsed(CGparameter param, CGhandle handle)
More...
 
static void cgSetParameterValuedr (CGparameter param, int n, DoubleBuffer vals)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuedr(CGparameter param, int n, const double * vals)
More...
 
static void cgSetParameterValuedr (CGparameter param, int n, double[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuedr(CGparameter param, int n, const double * vals)

More...
 
static void cgSetParameterValuedc (CGparameter param, int n, DoubleBuffer vals)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuedc(CGparameter param, int n, const double * vals)
More...
 
static void cgSetParameterValuedc (CGparameter param, int n, double[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuedc(CGparameter param, int n, const double * vals)

More...
 
static void cgSetParameterValuefr (CGparameter param, int n, FloatBuffer vals)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuefr(CGparameter param, int n, const float * vals)
More...
 
static void cgSetParameterValuefr (CGparameter param, int n, float[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuefr(CGparameter param, int n, const float * vals)

More...
 
static void cgSetParameterValuefc (CGparameter param, int n, FloatBuffer vals)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuefc(CGparameter param, int n, const float * vals)
More...
 
static void cgSetParameterValuefc (CGparameter param, int n, float[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameterValuefc(CGparameter param, int n, const float * vals)

More...
 
static void cgSetParameterValueir (CGparameter param, int n, IntBuffer vals)
 Entry point (through function pointer) to C language function:
void cgSetParameterValueir(CGparameter param, int n, const int * vals)
More...
 
static void cgSetParameterValueir (CGparameter param, int n, int[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameterValueir(CGparameter param, int n, const int * vals)

More...
 
static void cgSetParameterValueic (CGparameter param, int n, IntBuffer vals)
 Entry point (through function pointer) to C language function:
void cgSetParameterValueic(CGparameter param, int n, const int * vals)
More...
 
static void cgSetParameterValueic (CGparameter param, int n, int[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameterValueic(CGparameter param, int n, const int * vals)

More...
 
static int cgGetParameterValuedr (CGparameter param, int n, DoubleBuffer vals)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuedr(CGparameter param, int n, double * vals)
More...
 
static int cgGetParameterValuedr (CGparameter param, int n, double[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuedr(CGparameter param, int n, double * vals)

More...
 
static int cgGetParameterValuedc (CGparameter param, int n, DoubleBuffer vals)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuedc(CGparameter param, int n, double * vals)
More...
 
static int cgGetParameterValuedc (CGparameter param, int n, double[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuedc(CGparameter param, int n, double * vals)

More...
 
static int cgGetParameterValuefr (CGparameter param, int n, FloatBuffer vals)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuefr(CGparameter param, int n, float * vals)
More...
 
static int cgGetParameterValuefr (CGparameter param, int n, float[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuefr(CGparameter param, int n, float * vals)

More...
 
static int cgGetParameterValuefc (CGparameter param, int n, FloatBuffer vals)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuefc(CGparameter param, int n, float * vals)
More...
 
static int cgGetParameterValuefc (CGparameter param, int n, float[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
int cgGetParameterValuefc(CGparameter param, int n, float * vals)

More...
 
static int cgGetParameterValueir (CGparameter param, int n, IntBuffer vals)
 Entry point (through function pointer) to C language function:
int cgGetParameterValueir(CGparameter param, int n, int * vals)
More...
 
static int cgGetParameterValueir (CGparameter param, int n, int[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
int cgGetParameterValueir(CGparameter param, int n, int * vals)

More...
 
static int cgGetParameterValueic (CGparameter param, int n, IntBuffer vals)
 Entry point (through function pointer) to C language function:
int cgGetParameterValueic(CGparameter param, int n, int * vals)
More...
 
static int cgGetParameterValueic (CGparameter param, int n, int[] vals, int vals_offset)
 Entry point (through function pointer) to C language function:
int cgGetParameterValueic(CGparameter param, int n, int * vals)

More...
 
static String cgGetStringParameterValue (CGparameter param)
 Entry point (through function pointer) to C language function:
const char * cgGetStringParameterValue(CGparameter param)

More...
 
static void cgSetStringParameterValue (CGparameter param, String str)
 Entry point (through function pointer) to C language function:
void cgSetStringParameterValue(CGparameter param, const char * str)

More...
 
static int cgGetParameterOrdinalNumber (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetParameterOrdinalNumber(CGparameter param)

More...
 
static boolean cgIsParameterGlobal (CGparameter param)
 Entry point (through function pointer) to C language function:
CGbool cgIsParameterGlobal(CGparameter param)

More...
 
static int cgGetParameterIndex (CGparameter param)
 Entry point (through function pointer) to C language function:
int cgGetParameterIndex(CGparameter param)

More...
 
static void cgSetParameterVariability (CGparameter param, int vary)
 Entry point (through function pointer) to C language function:
void cgSetParameterVariability(CGparameter param, CGenum vary)
More...
 
static void cgSetParameterSemantic (CGparameter param, String semantic)
 Entry point (through function pointer) to C language function:
void cgSetParameterSemantic(CGparameter param, const char * semantic)

More...
 
static void cgSetParameter1f (CGparameter param, float x)
 Entry point (through function pointer) to C language function:
void cgSetParameter1f(CGparameter param, float x)

More...
 
static void cgSetParameter2f (CGparameter param, float x, float y)
 Entry point (through function pointer) to C language function:
void cgSetParameter2f(CGparameter param, float x, float y)

More...
 
static void cgSetParameter3f (CGparameter param, float x, float y, float z)
 Entry point (through function pointer) to C language function:
void cgSetParameter3f(CGparameter param, float x, float y, float z)

More...
 
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 param, float x, float y, float z, float w)

More...
 
static void cgSetParameter1d (CGparameter param, double x)
 Entry point (through function pointer) to C language function:
void cgSetParameter1d(CGparameter param, double x)

More...
 
static void cgSetParameter2d (CGparameter param, double x, double y)
 Entry point (through function pointer) to C language function:
void cgSetParameter2d(CGparameter param, double x, double y)

More...
 
static void cgSetParameter3d (CGparameter param, double x, double y, double z)
 Entry point (through function pointer) to C language function:
void cgSetParameter3d(CGparameter param, double x, double y, double z)

More...
 
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 param, double x, double y, double z, double w)

More...
 
static void cgSetParameter1i (CGparameter param, int x)
 Entry point (through function pointer) to C language function:
void cgSetParameter1i(CGparameter param, int x)

More...
 
static void cgSetParameter2i (CGparameter param, int x, int y)
 Entry point (through function pointer) to C language function:
void cgSetParameter2i(CGparameter param, int x, int y)

More...
 
static void cgSetParameter3i (CGparameter param, int x, int y, int z)
 Entry point (through function pointer) to C language function:
void cgSetParameter3i(CGparameter param, int x, int y, int z)

More...
 
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 param, int x, int y, int z, int w)

More...
 
static void cgSetParameter1iv (CGparameter param, IntBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter1iv(CGparameter param, const int * v)
More...
 
static void cgSetParameter1iv (CGparameter param, int[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter1iv(CGparameter param, const int * v)

More...
 
static void cgSetParameter2iv (CGparameter param, IntBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter2iv(CGparameter param, const int * v)
More...
 
static void cgSetParameter2iv (CGparameter param, int[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter2iv(CGparameter param, const int * v)

More...
 
static void cgSetParameter3iv (CGparameter param, IntBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter3iv(CGparameter param, const int * v)
More...
 
static void cgSetParameter3iv (CGparameter param, int[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter3iv(CGparameter param, const int * v)

More...
 
static void cgSetParameter4iv (CGparameter param, IntBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter4iv(CGparameter param, const int * v)
More...
 
static void cgSetParameter4iv (CGparameter param, int[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter4iv(CGparameter param, const int * v)

More...
 
static void cgSetParameter1fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter1fv(CGparameter param, const float * v)
More...
 
static void cgSetParameter1fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter1fv(CGparameter param, const float * v)

More...
 
static void cgSetParameter2fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter2fv(CGparameter param, const float * v)
More...
 
static void cgSetParameter2fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter2fv(CGparameter param, const float * v)

More...
 
static void cgSetParameter3fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter3fv(CGparameter param, const float * v)
More...
 
static void cgSetParameter3fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter3fv(CGparameter param, const float * v)

More...
 
static void cgSetParameter4fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter4fv(CGparameter param, const float * v)
More...
 
static void cgSetParameter4fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter4fv(CGparameter param, const float * v)

More...
 
static void cgSetParameter1dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter1dv(CGparameter param, const double * v)
More...
 
static void cgSetParameter1dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter1dv(CGparameter param, const double * v)

More...
 
static void cgSetParameter2dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter2dv(CGparameter param, const double * v)
More...
 
static void cgSetParameter2dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter2dv(CGparameter param, const double * v)

More...
 
static void cgSetParameter3dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter3dv(CGparameter param, const double * v)
More...
 
static void cgSetParameter3dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter3dv(CGparameter param, const double * v)

More...
 
static void cgSetParameter4dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgSetParameter4dv(CGparameter param, const double * v)
More...
 
static void cgSetParameter4dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgSetParameter4dv(CGparameter param, const double * v)

More...
 
static void cgSetMatrixParameterir (CGparameter param, IntBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterir(CGparameter param, const int * matrix)
More...
 
static void cgSetMatrixParameterir (CGparameter param, int[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterir(CGparameter param, const int * matrix)

More...
 
static void cgSetMatrixParameterdr (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdr(CGparameter param, const double * matrix)
More...
 
static void cgSetMatrixParameterdr (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdr(CGparameter param, const double * matrix)

More...
 
static void cgSetMatrixParameterfr (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfr(CGparameter param, const float * matrix)
More...
 
static void cgSetMatrixParameterfr (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfr(CGparameter param, const float * matrix)

More...
 
static void cgSetMatrixParameteric (CGparameter param, IntBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameteric(CGparameter param, const int * matrix)
More...
 
static void cgSetMatrixParameteric (CGparameter param, int[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameteric(CGparameter param, const int * matrix)

More...
 
static void cgSetMatrixParameterdc (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdc(CGparameter param, const double * matrix)
More...
 
static void cgSetMatrixParameterdc (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdc(CGparameter param, const double * matrix)

More...
 
static void cgSetMatrixParameterfc (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfc(CGparameter param, const float * matrix)
More...
 
static void cgSetMatrixParameterfc (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfc(CGparameter param, const float * matrix)

More...
 
static void cgGetMatrixParameterir (CGparameter param, IntBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterir(CGparameter param, int * matrix)
More...
 
static void cgGetMatrixParameterir (CGparameter param, int[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterir(CGparameter param, int * matrix)

More...
 
static void cgGetMatrixParameterdr (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdr(CGparameter param, double * matrix)
More...
 
static void cgGetMatrixParameterdr (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdr(CGparameter param, double * matrix)

More...
 
static void cgGetMatrixParameterfr (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfr(CGparameter param, float * matrix)
More...
 
static void cgGetMatrixParameterfr (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfr(CGparameter param, float * matrix)

More...
 
static void cgGetMatrixParameteric (CGparameter param, IntBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameteric(CGparameter param, int * matrix)
More...
 
static void cgGetMatrixParameteric (CGparameter param, int[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameteric(CGparameter param, int * matrix)

More...
 
static void cgGetMatrixParameterdc (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdc(CGparameter param, double * matrix)
More...
 
static void cgGetMatrixParameterdc (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdc(CGparameter param, double * matrix)

More...
 
static void cgGetMatrixParameterfc (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfc(CGparameter param, float * matrix)
More...
 
static void cgGetMatrixParameterfc (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfc(CGparameter param, float * matrix)

More...
 
static String cgGetTypeString (int type)
 Entry point (through function pointer) to C language function:
const char * cgGetTypeString(CGtype type)
More...
 
static int cgGetType (String type_string)
 Entry point (through function pointer) to C language function:
CGtype cgGetType(const char * type_string)

More...
 
static int cgGetNamedUserType (Buffer handle, String name)
 Entry point (through function pointer) to C language function:
CGtype cgGetNamedUserType(CGhandle handle, const char * name)
More...
 
static int cgGetNumUserTypes (Buffer handle)
 Entry point (through function pointer) to C language function:
int cgGetNumUserTypes(CGhandle handle)
More...
 
static int cgGetUserType (Buffer handle, int index)
 Entry point (through function pointer) to C language function:
CGtype cgGetUserType(CGhandle handle, int index)
More...
 
static int cgGetNumParentTypes (int type)
 Entry point (through function pointer) to C language function:
int cgGetNumParentTypes(CGtype type)
More...
 
static int cgGetParentType (int type, int index)
 Entry point (through function pointer) to C language function:
CGtype cgGetParentType(CGtype type, int index)
More...
 
static boolean cgIsParentType (int parent, int child)
 Entry point (through function pointer) to C language function:
CGbool cgIsParentType(CGtype parent, CGtype child)
More...
 
static boolean cgIsInterfaceType (int type)
 Entry point (through function pointer) to C language function:
CGbool cgIsInterfaceType(CGtype type)
More...
 
static String cgGetResourceString (int resource)
 Entry point (through function pointer) to C language function:
const char * cgGetResourceString(CGresource resource)
More...
 
static int cgGetResource (String resource_string)
 Entry point (through function pointer) to C language function:
CGresource cgGetResource(const char * resource_string)

More...
 
static String cgGetEnumString (int en)
 Entry point (through function pointer) to C language function:
const char * cgGetEnumString(CGenum en)
More...
 
static int cgGetEnum (String enum_string)
 Entry point (through function pointer) to C language function:
CGenum cgGetEnum(const char * enum_string)

More...
 
static String cgGetProfileString (int profile)
 Entry point (through function pointer) to C language function:
const char * cgGetProfileString(CGprofile profile)
More...
 
static int cgGetProfile (String profile_string)
 Entry point (through function pointer) to C language function:
CGprofile cgGetProfile(const char * profile_string)

More...
 
static int cgGetError ()
 Entry point (through function pointer) to C language function:
CGerror cgGetError()

More...
 
static int cgGetFirstError ()
 Entry point (through function pointer) to C language function:
CGerror cgGetFirstError()

More...
 
static String cgGetErrorString (int error)
 Entry point (through function pointer) to C language function:
const char * cgGetErrorString(CGerror error)
More...
 
static String cgGetLastErrorString (IntBuffer error)
 Entry point (through function pointer) to C language function:
const char * cgGetLastErrorString(CGerror * error)
More...
 
static String cgGetLastErrorString (int[] error, int error_offset)
 Entry point (through function pointer) to C language function:
const char * cgGetLastErrorString(CGerror * error)

More...
 
static String cgGetString (int sname)
 Entry point (through function pointer) to C language function:
const char * cgGetString(CGenum sname)
More...
 
static CGeffect cgCreateEffect (CGcontext arg0, String code, String[] args)
 Entry point (through function pointer) to C language function:
CGeffect cgCreateEffect(CGcontext, const char * code, const char * * args)

More...
 
static CGeffect cgCreateEffectFromFile (CGcontext arg0, String filename, String[] args)
 Entry point (through function pointer) to C language function:
CGeffect cgCreateEffectFromFile(CGcontext, const char * filename, const char * * args)

More...
 
static void cgDestroyEffect (CGeffect arg0)
 Entry point (through function pointer) to C language function:
void cgDestroyEffect(CGeffect)

More...
 
static CGcontext cgGetEffectContext (CGeffect arg0)
 Entry point (through function pointer) to C language function:
CGcontext cgGetEffectContext(CGeffect)

More...
 
static boolean cgIsEffect (CGeffect effect)
 Entry point (through function pointer) to C language function:
CGbool cgIsEffect(CGeffect effect)

More...
 
static CGeffect cgGetFirstEffect (CGcontext arg0)
 Entry point (through function pointer) to C language function:
CGeffect cgGetFirstEffect(CGcontext)

More...
 
static CGeffect cgGetNextEffect (CGeffect arg0)
 Entry point (through function pointer) to C language function:
CGeffect cgGetNextEffect(CGeffect)

More...
 
static CGprogram cgCreateProgramFromEffect (CGeffect effect, int profile, String entry, String[] args)
 Entry point (through function pointer) to C language function:
CGprogram cgCreateProgramFromEffect(CGeffect effect, CGprofile profile, const char * entry, const char * * args)
More...
 
static CGtechnique cgGetFirstTechnique (CGeffect arg0)
 Entry point (through function pointer) to C language function:
CGtechnique cgGetFirstTechnique(CGeffect)

More...
 
static CGtechnique cgGetNextTechnique (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGtechnique cgGetNextTechnique(CGtechnique)

More...
 
static CGtechnique cgGetNamedTechnique (CGeffect arg0, String name)
 Entry point (through function pointer) to C language function:
CGtechnique cgGetNamedTechnique(CGeffect, const char * name)

More...
 
static String cgGetTechniqueName (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
const char * cgGetTechniqueName(CGtechnique)

More...
 
static boolean cgIsTechnique (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGbool cgIsTechnique(CGtechnique)

More...
 
static boolean cgValidateTechnique (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGbool cgValidateTechnique(CGtechnique)

More...
 
static boolean cgIsTechniqueValidated (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGbool cgIsTechniqueValidated(CGtechnique)

More...
 
static CGeffect cgGetTechniqueEffect (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGeffect cgGetTechniqueEffect(CGtechnique)

More...
 
static CGpass cgGetFirstPass (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGpass cgGetFirstPass(CGtechnique)

More...
 
static CGpass cgGetNamedPass (CGtechnique arg0, String name)
 Entry point (through function pointer) to C language function:
CGpass cgGetNamedPass(CGtechnique, const char * name)

More...
 
static CGpass cgGetNextPass (CGpass arg0)
 Entry point (through function pointer) to C language function:
CGpass cgGetNextPass(CGpass)

More...
 
static boolean cgIsPass (CGpass arg0)
 Entry point (through function pointer) to C language function:
CGbool cgIsPass(CGpass)

More...
 
static String cgGetPassName (CGpass arg0)
 Entry point (through function pointer) to C language function:
const char * cgGetPassName(CGpass)

More...
 
static CGtechnique cgGetPassTechnique (CGpass arg0)
 Entry point (through function pointer) to C language function:
CGtechnique cgGetPassTechnique(CGpass)

More...
 
static void cgSetPassState (CGpass arg0)
 Entry point (through function pointer) to C language function:
void cgSetPassState(CGpass)

More...
 
static void cgResetPassState (CGpass arg0)
 Entry point (through function pointer) to C language function:
void cgResetPassState(CGpass)

More...
 
static CGstateassignment cgGetFirstStateAssignment (CGpass arg0)
 Entry point (through function pointer) to C language function:
CGstateassignment cgGetFirstStateAssignment(CGpass)

More...
 
static CGstateassignment cgGetNamedStateAssignment (CGpass arg0, String name)
 Entry point (through function pointer) to C language function:
CGstateassignment cgGetNamedStateAssignment(CGpass, const char * name)

More...
 
static CGstateassignment cgGetNextStateAssignment (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGstateassignment cgGetNextStateAssignment(CGstateassignment)

More...
 
static boolean cgIsStateAssignment (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGbool cgIsStateAssignment(CGstateassignment)

More...
 
static boolean cgCallStateSetCallback (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGbool cgCallStateSetCallback(CGstateassignment)

More...
 
static boolean cgCallStateValidateCallback (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGbool cgCallStateValidateCallback(CGstateassignment)

More...
 
static boolean cgCallStateResetCallback (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGbool cgCallStateResetCallback(CGstateassignment)

More...
 
static CGpass cgGetStateAssignmentPass (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGpass cgGetStateAssignmentPass(CGstateassignment)

More...
 
static CGparameter cgGetSamplerStateAssignmentParameter (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGparameter cgGetSamplerStateAssignmentParameter(CGstateassignment)

More...
 
static String cgGetStringStateAssignmentValue (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
const char * cgGetStringStateAssignmentValue(CGstateassignment)

More...
 
static CGprogram cgGetProgramStateAssignmentValue (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGprogram cgGetProgramStateAssignmentValue(CGstateassignment)

More...
 
static CGparameter cgGetTextureStateAssignmentValue (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGparameter cgGetTextureStateAssignmentValue(CGstateassignment)

More...
 
static CGparameter cgGetSamplerStateAssignmentValue (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGparameter cgGetSamplerStateAssignmentValue(CGstateassignment)

More...
 
static int cgGetStateAssignmentIndex (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
int cgGetStateAssignmentIndex(CGstateassignment)

More...
 
static int cgGetNumDependentStateAssignmentParameters (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
int cgGetNumDependentStateAssignmentParameters(CGstateassignment)

More...
 
static CGparameter cgGetDependentStateAssignmentParameter (CGstateassignment arg0, int index)
 Entry point (through function pointer) to C language function:
CGparameter cgGetDependentStateAssignmentParameter(CGstateassignment, int index)

More...
 
static CGstate cgGetStateAssignmentState (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGstate cgGetStateAssignmentState(CGstateassignment)

More...
 
static CGstate cgGetSamplerStateAssignmentState (CGstateassignment arg0)
 Entry point (through function pointer) to C language function:
CGstate cgGetSamplerStateAssignmentState(CGstateassignment)

More...
 
static CGstate cgCreateState (CGcontext arg0, String name, int arg2)
 Entry point (through function pointer) to C language function:
CGstate cgCreateState(CGcontext, const char * name, CGtype)
More...
 
static CGstate cgCreateArrayState (CGcontext arg0, String name, int arg2, int nelems)
 Entry point (through function pointer) to C language function:
CGstate cgCreateArrayState(CGcontext, const char * name, CGtype, int nelems)
More...
 
static int cgGetStateType (CGstate arg0)
 Entry point (through function pointer) to C language function:
CGtype cgGetStateType(CGstate)

More...
 
static String cgGetStateName (CGstate arg0)
 Entry point (through function pointer) to C language function:
const char * cgGetStateName(CGstate)

More...
 
static CGstate cgGetNamedState (CGcontext arg0, String name)
 Entry point (through function pointer) to C language function:
CGstate cgGetNamedState(CGcontext, const char * name)

More...
 
static CGstate cgGetFirstState (CGcontext arg0)
 Entry point (through function pointer) to C language function:
CGstate cgGetFirstState(CGcontext)

More...
 
static CGstate cgGetNextState (CGstate arg0)
 Entry point (through function pointer) to C language function:
CGstate cgGetNextState(CGstate)

More...
 
static boolean cgIsState (CGstate arg0)
 Entry point (through function pointer) to C language function:
CGbool cgIsState(CGstate)

More...
 
static void cgAddStateEnumerant (CGstate arg0, String name, int value)
 Entry point (through function pointer) to C language function:
void cgAddStateEnumerant(CGstate, const char * name, int value)

More...
 
static CGstate cgCreateSamplerState (CGcontext arg0, String name, int arg2)
 Entry point (through function pointer) to C language function:
CGstate cgCreateSamplerState(CGcontext, const char * name, CGtype)
More...
 
static CGstate cgCreateArraySamplerState (CGcontext arg0, String name, int arg2, int nelems)
 Entry point (through function pointer) to C language function:
CGstate cgCreateArraySamplerState(CGcontext, const char * name, CGtype, int nelems)
More...
 
static CGstate cgGetNamedSamplerState (CGcontext arg0, String name)
 Entry point (through function pointer) to C language function:
CGstate cgGetNamedSamplerState(CGcontext, const char * name)

More...
 
static CGstate cgGetFirstSamplerState (CGcontext arg0)
 Entry point (through function pointer) to C language function:
CGstate cgGetFirstSamplerState(CGcontext)

More...
 
static CGstateassignment cgGetFirstSamplerStateAssignment (CGparameter arg0)
 Entry point (through function pointer) to C language function:
CGstateassignment cgGetFirstSamplerStateAssignment(CGparameter)

More...
 
static CGstateassignment cgGetNamedSamplerStateAssignment (CGparameter arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGstateassignment cgGetNamedSamplerStateAssignment(CGparameter, const char * )

More...
 
static void cgSetSamplerState (CGparameter arg0)
 Entry point (through function pointer) to C language function:
void cgSetSamplerState(CGparameter)

More...
 
static CGparameter cgGetNamedEffectParameter (CGeffect arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGparameter cgGetNamedEffectParameter(CGeffect, const char * )

More...
 
static CGparameter cgGetFirstLeafEffectParameter (CGeffect arg0)
 Entry point (through function pointer) to C language function:
CGparameter cgGetFirstLeafEffectParameter(CGeffect)

More...
 
static CGparameter cgGetFirstEffectParameter (CGeffect arg0)
 Entry point (through function pointer) to C language function:
CGparameter cgGetFirstEffectParameter(CGeffect)

More...
 
static CGparameter cgGetEffectParameterBySemantic (CGeffect arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGparameter cgGetEffectParameterBySemantic(CGeffect, const char * )

More...
 
static CGannotation cgGetFirstTechniqueAnnotation (CGtechnique arg0)
 Entry point (through function pointer) to C language function:
CGannotation cgGetFirstTechniqueAnnotation(CGtechnique)

More...
 
static CGannotation cgGetFirstPassAnnotation (CGpass arg0)
 Entry point (through function pointer) to C language function:
CGannotation cgGetFirstPassAnnotation(CGpass)

More...
 
static CGannotation cgGetFirstParameterAnnotation (CGparameter arg0)
 Entry point (through function pointer) to C language function:
CGannotation cgGetFirstParameterAnnotation(CGparameter)

More...
 
static CGannotation cgGetFirstProgramAnnotation (CGprogram arg0)
 Entry point (through function pointer) to C language function:
CGannotation cgGetFirstProgramAnnotation(CGprogram)

More...
 
static CGannotation cgGetNextAnnotation (CGannotation arg0)
 Entry point (through function pointer) to C language function:
CGannotation cgGetNextAnnotation(CGannotation)

More...
 
static CGannotation cgGetNamedTechniqueAnnotation (CGtechnique arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGannotation cgGetNamedTechniqueAnnotation(CGtechnique, const char * )

More...
 
static CGannotation cgGetNamedPassAnnotation (CGpass arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGannotation cgGetNamedPassAnnotation(CGpass, const char * )

More...
 
static CGannotation cgGetNamedParameterAnnotation (CGparameter arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGannotation cgGetNamedParameterAnnotation(CGparameter, const char * )

More...
 
static CGannotation cgGetNamedProgramAnnotation (CGprogram arg0, String arg1)
 Entry point (through function pointer) to C language function:
CGannotation cgGetNamedProgramAnnotation(CGprogram, const char * )

More...
 
static boolean cgIsAnnotation (CGannotation arg0)
 Entry point (through function pointer) to C language function:
CGbool cgIsAnnotation(CGannotation)

More...
 
static String cgGetAnnotationName (CGannotation arg0)
 Entry point (through function pointer) to C language function:
const char * cgGetAnnotationName(CGannotation)

More...
 
static int cgGetAnnotationType (CGannotation arg0)
 Entry point (through function pointer) to C language function:
CGtype cgGetAnnotationType(CGannotation)

More...
 
static String cgGetStringAnnotationValue (CGannotation arg0)
 Entry point (through function pointer) to C language function:
const char * cgGetStringAnnotationValue(CGannotation)

More...
 
static int cgGetNumDependentAnnotationParameters (CGannotation arg0)
 Entry point (through function pointer) to C language function:
int cgGetNumDependentAnnotationParameters(CGannotation)

More...
 
static CGparameter cgGetDependentAnnotationParameter (CGannotation arg0, int index)
 Entry point (through function pointer) to C language function:
CGparameter cgGetDependentAnnotationParameter(CGannotation, int index)

More...
 
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, float * , int ncomps, int nx, int ny, int nz)
More...
 
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, float * , int ncomps, int nx, int ny, int nz)

More...
 
static boolean cgGLIsProfileSupported (int profile)
 Entry point (through function pointer) to C language function:
CGbool cgGLIsProfileSupported(CGprofile profile)
More...
 
static void cgGLEnableProfile (int profile)
 Entry point (through function pointer) to C language function:
void cgGLEnableProfile(CGprofile profile)
More...
 
static void cgGLDisableProfile (int profile)
 Entry point (through function pointer) to C language function:
void cgGLDisableProfile(CGprofile profile)
More...
 
static int cgGLGetLatestProfile (int profile_type)
 Entry point (through function pointer) to C language function:
CGprofile cgGLGetLatestProfile(CGGLenum profile_type)
More...
 
static void cgGLSetOptimalOptions (int profile)
 Entry point (through function pointer) to C language function:
void cgGLSetOptimalOptions(CGprofile profile)
More...
 
static void cgGLLoadProgram (CGprogram program)
 Entry point (through function pointer) to C language function:
void cgGLLoadProgram(CGprogram program)

More...
 
static boolean cgGLIsProgramLoaded (CGprogram program)
 Entry point (through function pointer) to C language function:
CGbool cgGLIsProgramLoaded(CGprogram program)

More...
 
static void cgGLBindProgram (CGprogram program)
 Entry point (through function pointer) to C language function:
void cgGLBindProgram(CGprogram program)

More...
 
static void cgGLUnbindProgram (int profile)
 Entry point (through function pointer) to C language function:
void cgGLUnbindProgram(CGprofile profile)
More...
 
static int cgGLGetProgramID (CGprogram program)
 Entry point (through function pointer) to C language function:
GLuint cgGLGetProgramID(CGprogram program)

More...
 
static void cgGLSetParameter1f (CGparameter param, float x)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter1f(CGparameter param, float x)

More...
 
static void cgGLSetParameter2f (CGparameter param, float x, float y)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter2f(CGparameter param, float x, float y)

More...
 
static void cgGLSetParameter3f (CGparameter param, float x, float y, float z)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter3f(CGparameter param, float x, float y, float z)

More...
 
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 param, float x, float y, float z, float w)

More...
 
static void cgGLSetParameter1fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter1fv(CGparameter param, const float * v)
More...
 
static void cgGLSetParameter1fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter1fv(CGparameter param, const float * v)

More...
 
static void cgGLSetParameter2fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter2fv(CGparameter param, const float * v)
More...
 
static void cgGLSetParameter2fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter2fv(CGparameter param, const float * v)

More...
 
static void cgGLSetParameter3fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter3fv(CGparameter param, const float * v)
More...
 
static void cgGLSetParameter3fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter3fv(CGparameter param, const float * v)

More...
 
static void cgGLSetParameter4fv (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter4fv(CGparameter param, const float * v)
More...
 
static void cgGLSetParameter4fv (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter4fv(CGparameter param, const float * v)

More...
 
static void cgGLSetParameter1d (CGparameter param, double x)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter1d(CGparameter param, double x)

More...
 
static void cgGLSetParameter2d (CGparameter param, double x, double y)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter2d(CGparameter param, double x, double y)

More...
 
static void cgGLSetParameter3d (CGparameter param, double x, double y, double z)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter3d(CGparameter param, double x, double y, double z)

More...
 
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 param, double x, double y, double z, double w)

More...
 
static void cgGLSetParameter1dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter1dv(CGparameter param, const double * v)
More...
 
static void cgGLSetParameter1dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter1dv(CGparameter param, const double * v)

More...
 
static void cgGLSetParameter2dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter2dv(CGparameter param, const double * v)
More...
 
static void cgGLSetParameter2dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter2dv(CGparameter param, const double * v)

More...
 
static void cgGLSetParameter3dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter3dv(CGparameter param, const double * v)
More...
 
static void cgGLSetParameter3dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter3dv(CGparameter param, const double * v)

More...
 
static void cgGLSetParameter4dv (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter4dv(CGparameter param, const double * v)
More...
 
static void cgGLSetParameter4dv (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetParameter4dv(CGparameter param, const double * v)

More...
 
static void cgGLGetParameter1f (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter1f(CGparameter param, float * v)
More...
 
static void cgGLGetParameter1f (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter1f(CGparameter param, float * v)

More...
 
static void cgGLGetParameter2f (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter2f(CGparameter param, float * v)
More...
 
static void cgGLGetParameter2f (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter2f(CGparameter param, float * v)

More...
 
static void cgGLGetParameter3f (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter3f(CGparameter param, float * v)
More...
 
static void cgGLGetParameter3f (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter3f(CGparameter param, float * v)

More...
 
static void cgGLGetParameter4f (CGparameter param, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter4f(CGparameter param, float * v)
More...
 
static void cgGLGetParameter4f (CGparameter param, float[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter4f(CGparameter param, float * v)

More...
 
static void cgGLGetParameter1d (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter1d(CGparameter param, double * v)
More...
 
static void cgGLGetParameter1d (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter1d(CGparameter param, double * v)

More...
 
static void cgGLGetParameter2d (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter2d(CGparameter param, double * v)
More...
 
static void cgGLGetParameter2d (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter2d(CGparameter param, double * v)

More...
 
static void cgGLGetParameter3d (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter3d(CGparameter param, double * v)
More...
 
static void cgGLGetParameter3d (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter3d(CGparameter param, double * v)

More...
 
static void cgGLGetParameter4d (CGparameter param, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter4d(CGparameter param, double * v)
More...
 
static void cgGLGetParameter4d (CGparameter param, double[] v, int v_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetParameter4d(CGparameter param, double * v)

More...
 
static void cgGLSetParameterArray1f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray1f(CGparameter param, long offset, long nelements, const float * v)
More...
 
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(CGparameter param, long offset, long nelements, const float * v)

More...
 
static void cgGLSetParameterArray2f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray2f(CGparameter param, long offset, long nelements, const float * v)
More...
 
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(CGparameter param, long offset, long nelements, const float * v)

More...
 
static void cgGLSetParameterArray3f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray3f(CGparameter param, long offset, long nelements, const float * v)
More...
 
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(CGparameter param, long offset, long nelements, const float * v)

More...
 
static void cgGLSetParameterArray4f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray4f(CGparameter param, long offset, long nelements, const float * v)
More...
 
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(CGparameter param, long offset, long nelements, const float * v)

More...
 
static void cgGLSetParameterArray1d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray1d(CGparameter param, long offset, long nelements, const double * v)
More...
 
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(CGparameter param, long offset, long nelements, const double * v)

More...
 
static void cgGLSetParameterArray2d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray2d(CGparameter param, long offset, long nelements, const double * v)
More...
 
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(CGparameter param, long offset, long nelements, const double * v)

More...
 
static void cgGLSetParameterArray3d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray3d(CGparameter param, long offset, long nelements, const double * v)
More...
 
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(CGparameter param, long offset, long nelements, const double * v)

More...
 
static void cgGLSetParameterArray4d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterArray4d(CGparameter param, long offset, long nelements, const double * v)
More...
 
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(CGparameter param, long offset, long nelements, const double * v)

More...
 
static void cgGLGetParameterArray1f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray1f(CGparameter param, long offset, long nelements, float * v)
More...
 
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(CGparameter param, long offset, long nelements, float * v)

More...
 
static void cgGLGetParameterArray2f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray2f(CGparameter param, long offset, long nelements, float * v)
More...
 
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(CGparameter param, long offset, long nelements, float * v)

More...
 
static void cgGLGetParameterArray3f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray3f(CGparameter param, long offset, long nelements, float * v)
More...
 
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(CGparameter param, long offset, long nelements, float * v)

More...
 
static void cgGLGetParameterArray4f (CGparameter param, long offset, long nelements, FloatBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray4f(CGparameter param, long offset, long nelements, float * v)
More...
 
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(CGparameter param, long offset, long nelements, float * v)

More...
 
static void cgGLGetParameterArray1d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray1d(CGparameter param, long offset, long nelements, double * v)
More...
 
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(CGparameter param, long offset, long nelements, double * v)

More...
 
static void cgGLGetParameterArray2d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray2d(CGparameter param, long offset, long nelements, double * v)
More...
 
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(CGparameter param, long offset, long nelements, double * v)

More...
 
static void cgGLGetParameterArray3d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray3d(CGparameter param, long offset, long nelements, double * v)
More...
 
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(CGparameter param, long offset, long nelements, double * v)

More...
 
static void cgGLGetParameterArray4d (CGparameter param, long offset, long nelements, DoubleBuffer v)
 Entry point (through function pointer) to C language function:
void cgGLGetParameterArray4d(CGparameter param, long offset, long nelements, double * v)
More...
 
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(CGparameter param, long offset, long nelements, double * v)

More...
 
static void cgGLSetParameterPointer (CGparameter param, int fsize, int type, int stride, Buffer pointer)
 Entry point (through function pointer) to C language function:
void cgGLSetParameterPointer(CGparameter param, GLint fsize, GLenum type, GLsizei stride, const GLvoid * pointer)
More...
 
static void cgGLEnableClientState (CGparameter param)
 Entry point (through function pointer) to C language function:
void cgGLEnableClientState(CGparameter param)

More...
 
static void cgGLDisableClientState (CGparameter param)
 Entry point (through function pointer) to C language function:
void cgGLDisableClientState(CGparameter param)

More...
 
static void cgGLSetMatrixParameterdr (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdr(CGparameter param, const double * matrix)
More...
 
static void cgGLSetMatrixParameterdr (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdr(CGparameter param, const double * matrix)

More...
 
static void cgGLSetMatrixParameterfr (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfr(CGparameter param, const float * matrix)
More...
 
static void cgGLSetMatrixParameterfr (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfr(CGparameter param, const float * matrix)

More...
 
static void cgGLSetMatrixParameterdc (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdc(CGparameter param, const double * matrix)
More...
 
static void cgGLSetMatrixParameterdc (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdc(CGparameter param, const double * matrix)

More...
 
static void cgGLSetMatrixParameterfc (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfc(CGparameter param, const float * matrix)
More...
 
static void cgGLSetMatrixParameterfc (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfc(CGparameter param, const float * matrix)

More...
 
static void cgGLGetMatrixParameterdr (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdr(CGparameter param, double * matrix)
More...
 
static void cgGLGetMatrixParameterdr (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdr(CGparameter param, double * matrix)

More...
 
static void cgGLGetMatrixParameterfr (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfr(CGparameter param, float * matrix)
More...
 
static void cgGLGetMatrixParameterfr (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfr(CGparameter param, float * matrix)

More...
 
static void cgGLGetMatrixParameterdc (CGparameter param, DoubleBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdc(CGparameter param, double * matrix)
More...
 
static void cgGLGetMatrixParameterdc (CGparameter param, double[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdc(CGparameter param, double * matrix)

More...
 
static void cgGLGetMatrixParameterfc (CGparameter param, FloatBuffer matrix)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfc(CGparameter param, float * matrix)
More...
 
static void cgGLGetMatrixParameterfc (CGparameter param, float[] matrix, int matrix_offset)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfc(CGparameter param, float * matrix)

More...
 
static void cgGLSetStateMatrixParameter (CGparameter param, int matrix, int transform)
 Entry point (through function pointer) to C language function:
void cgGLSetStateMatrixParameter(CGparameter param, CGGLenum matrix, CGGLenum transform)
More...
 
static void cgGLSetMatrixParameterArrayfc (CGparameter param, long offset, long nelements, FloatBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, const float * matrices)
More...
 
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(CGparameter param, long offset, long nelements, const float * matrices)

More...
 
static void cgGLSetMatrixParameterArrayfr (CGparameter param, long offset, long nelements, FloatBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, const float * matrices)
More...
 
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(CGparameter param, long offset, long nelements, const float * matrices)

More...
 
static void cgGLSetMatrixParameterArraydc (CGparameter param, long offset, long nelements, DoubleBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArraydc(CGparameter param, long offset, long nelements, const double * matrices)
More...
 
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(CGparameter param, long offset, long nelements, const double * matrices)

More...
 
static void cgGLSetMatrixParameterArraydr (CGparameter param, long offset, long nelements, DoubleBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArraydr(CGparameter param, long offset, long nelements, const double * matrices)
More...
 
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(CGparameter param, long offset, long nelements, const double * matrices)

More...
 
static void cgGLGetMatrixParameterArrayfc (CGparameter param, long offset, long nelements, FloatBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, float * matrices)
More...
 
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(CGparameter param, long offset, long nelements, float * matrices)

More...
 
static void cgGLGetMatrixParameterArrayfr (CGparameter param, long offset, long nelements, FloatBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, float * matrices)
More...
 
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(CGparameter param, long offset, long nelements, float * matrices)

More...
 
static void cgGLGetMatrixParameterArraydc (CGparameter param, long offset, long nelements, DoubleBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArraydc(CGparameter param, long offset, long nelements, double * matrices)
More...
 
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(CGparameter param, long offset, long nelements, double * matrices)

More...
 
static void cgGLGetMatrixParameterArraydr (CGparameter param, long offset, long nelements, DoubleBuffer matrices)
 Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArraydr(CGparameter param, long offset, long nelements, double * matrices)
More...
 
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(CGparameter param, long offset, long nelements, double * matrices)

More...
 
static void cgGLSetTextureParameter (CGparameter param, int texobj)
 Entry point (through function pointer) to C language function:
void cgGLSetTextureParameter(CGparameter param, GLuint texobj)

More...
 
static int cgGLGetTextureParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
GLuint cgGLGetTextureParameter(CGparameter param)

More...
 
static void cgGLEnableTextureParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
void cgGLEnableTextureParameter(CGparameter param)

More...
 
static void cgGLDisableTextureParameter (CGparameter param)
 Entry point (through function pointer) to C language function:
void cgGLDisableTextureParameter(CGparameter param)

More...
 
static int cgGLGetTextureEnum (CGparameter param)
 Entry point (through function pointer) to C language function:
GLenum cgGLGetTextureEnum(CGparameter param)

More...
 
static void cgGLSetManageTextureParameters (CGcontext ctx, boolean flag)
 Entry point (through function pointer) to C language function:
void cgGLSetManageTextureParameters(CGcontext ctx, CGbool flag)

More...
 
static boolean cgGLGetManageTextureParameters (CGcontext ctx)
 Entry point (through function pointer) to C language function:
CGbool cgGLGetManageTextureParameters(CGcontext ctx)

More...
 
static void cgGLSetupSampler (CGparameter param, int texobj)
 Entry point (through function pointer) to C language function:
void cgGLSetupSampler(CGparameter param, GLuint texobj)

More...
 
static void cgGLRegisterStates (CGcontext arg0)
 Entry point (through function pointer) to C language function:
void cgGLRegisterStates(CGcontext)

More...
 
static CgProcAddressTable getCgProcAddressTable ()
 
static CGprogram cgCreateProgramFromStream (CGcontext ctx, int program_type, java.io.InputStream stream, int profile, java.lang.String entry, java.lang.String[] args) throws java.io.IOException
 A convenience method which reads all available data from the InputStream and then calls cgCreateProgram. More...
 

Static Public Attributes

static final int CG_NO_ERROR = 0x0
 Defined as part of enum type "CGerror" with expression '0', CType: int. More...
 
static final int CG_COMPILER_ERROR = 0x1
 Defined as part of enum type "CGerror" with expression '1', CType: int. More...
 
static final int CG_INVALID_PARAMETER_ERROR = 0x2
 Defined as part of enum type "CGerror" with expression '2', CType: int. More...
 
static final int CG_INVALID_PROFILE_ERROR = 0x3
 Defined as part of enum type "CGerror" with expression '3', CType: int. More...
 
static final int CG_PROGRAM_LOAD_ERROR = 0x4
 Defined as part of enum type "CGerror" with expression '4', CType: int. More...
 
static final int CG_PROGRAM_BIND_ERROR = 0x5
 Defined as part of enum type "CGerror" with expression '5', CType: int. More...
 
static final int CG_PROGRAM_NOT_LOADED_ERROR = 0x6
 Defined as part of enum type "CGerror" with expression '6', CType: int. More...
 
static final int CG_UNSUPPORTED_GL_EXTENSION_ERROR = 0x7
 Defined as part of enum type "CGerror" with expression '7', CType: int. More...
 
static final int CG_INVALID_VALUE_TYPE_ERROR = 0x8
 Defined as part of enum type "CGerror" with expression '8', CType: int. More...
 
static final int CG_NOT_MATRIX_PARAM_ERROR = 0x9
 Defined as part of enum type "CGerror" with expression '9', CType: int. More...
 
static final int CG_INVALID_ENUMERANT_ERROR = 0xa
 Defined as part of enum type "CGerror" with expression '10', CType: int. More...
 
static final int CG_NOT_4x4_MATRIX_ERROR = 0xb
 Defined as part of enum type "CGerror" with expression '11', CType: int. More...
 
static final int CG_FILE_READ_ERROR = 0xc
 Defined as part of enum type "CGerror" with expression '12', CType: int. More...
 
static final int CG_FILE_WRITE_ERROR = 0xd
 Defined as part of enum type "CGerror" with expression '13', CType: int. More...
 
static final int CG_NVPARSE_ERROR = 0xe
 Defined as part of enum type "CGerror" with expression '14', CType: int. More...
 
static final int CG_MEMORY_ALLOC_ERROR = 0xf
 Defined as part of enum type "CGerror" with expression '15', CType: int. More...
 
static final int CG_INVALID_CONTEXT_HANDLE_ERROR = 0x10
 Defined as part of enum type "CGerror" with expression '16', CType: int. More...
 
static final int CG_INVALID_PROGRAM_HANDLE_ERROR = 0x11
 Defined as part of enum type "CGerror" with expression '17', CType: int. More...
 
static final int CG_INVALID_PARAM_HANDLE_ERROR = 0x12
 Defined as part of enum type "CGerror" with expression '18', CType: int. More...
 
static final int CG_UNKNOWN_PROFILE_ERROR = 0x13
 Defined as part of enum type "CGerror" with expression '19', CType: int. More...
 
static final int CG_VAR_ARG_ERROR = 0x14
 Defined as part of enum type "CGerror" with expression '20', CType: int. More...
 
static final int CG_INVALID_DIMENSION_ERROR = 0x15
 Defined as part of enum type "CGerror" with expression '21', CType: int. More...
 
static final int CG_ARRAY_PARAM_ERROR = 0x16
 Defined as part of enum type "CGerror" with expression '22', CType: int. More...
 
static final int CG_OUT_OF_ARRAY_BOUNDS_ERROR = 0x17
 Defined as part of enum type "CGerror" with expression '23', CType: int. More...
 
static final int CG_CONFLICTING_TYPES_ERROR = 0x18
 Defined as part of enum type "CGerror" with expression '24', CType: int. More...
 
static final int CG_CONFLICTING_PARAMETER_TYPES_ERROR = 0x19
 Defined as part of enum type "CGerror" with expression '25', CType: int. More...
 
static final int CG_PARAMETER_IS_NOT_SHARED_ERROR = 0x1a
 Defined as part of enum type "CGerror" with expression '26', CType: int. More...
 
static final int CG_INVALID_PARAMETER_VARIABILITY_ERROR = 0x1b
 Defined as part of enum type "CGerror" with expression '27', CType: int. More...
 
static final int CG_CANNOT_DESTROY_PARAMETER_ERROR = 0x1c
 Defined as part of enum type "CGerror" with expression '28', CType: int. More...
 
static final int CG_NOT_ROOT_PARAMETER_ERROR = 0x1d
 Defined as part of enum type "CGerror" with expression '29', CType: int. More...
 
static final int CG_PARAMETERS_DO_NOT_MATCH_ERROR = 0x1e
 Defined as part of enum type "CGerror" with expression '30', CType: int. More...
 
static final int CG_IS_NOT_PROGRAM_PARAMETER_ERROR = 0x1f
 Defined as part of enum type "CGerror" with expression '31', CType: int. More...
 
static final int CG_INVALID_PARAMETER_TYPE_ERROR = 0x20
 Defined as part of enum type "CGerror" with expression '32', CType: int. More...
 
static final int CG_PARAMETER_IS_NOT_RESIZABLE_ARRAY_ERROR = 0x21
 Defined as part of enum type "CGerror" with expression '33', CType: int. More...
 
static final int CG_INVALID_SIZE_ERROR = 0x22
 Defined as part of enum type "CGerror" with expression '34', CType: int. More...
 
static final int CG_BIND_CREATES_CYCLE_ERROR = 0x23
 Defined as part of enum type "CGerror" with expression '35', CType: int. More...
 
static final int CG_ARRAY_TYPES_DO_NOT_MATCH_ERROR = 0x24
 Defined as part of enum type "CGerror" with expression '36', CType: int. More...
 
static final int CG_ARRAY_DIMENSIONS_DO_NOT_MATCH_ERROR = 0x25
 Defined as part of enum type "CGerror" with expression '37', CType: int. More...
 
static final int CG_ARRAY_HAS_WRONG_DIMENSION_ERROR = 0x26
 Defined as part of enum type "CGerror" with expression '38', CType: int. More...
 
static final int CG_TYPE_IS_NOT_DEFINED_IN_PROGRAM_ERROR = 0x27
 Defined as part of enum type "CGerror" with expression '39', CType: int. More...
 
static final int CG_INVALID_EFFECT_HANDLE_ERROR = 0x28
 Defined as part of enum type "CGerror" with expression '40', CType: int. More...
 
static final int CG_INVALID_STATE_HANDLE_ERROR = 0x29
 Defined as part of enum type "CGerror" with expression '41', CType: int. More...
 
static final int CG_INVALID_STATE_ASSIGNMENT_HANDLE_ERROR = 0x2a
 Defined as part of enum type "CGerror" with expression '42', CType: int. More...
 
static final int CG_INVALID_PASS_HANDLE_ERROR = 0x2b
 Defined as part of enum type "CGerror" with expression '43', CType: int. More...
 
static final int CG_INVALID_ANNOTATION_HANDLE_ERROR = 0x2c
 Defined as part of enum type "CGerror" with expression '44', CType: int. More...
 
static final int CG_INVALID_TECHNIQUE_HANDLE_ERROR = 0x2d
 Defined as part of enum type "CGerror" with expression '45', CType: int. More...
 
static final int CG_INVALID_PARAMETER_HANDLE_ERROR = 0x2e
 Defined as part of enum type "CGerror" with expression '46', CType: int. More...
 
static final int CG_STATE_ASSIGNMENT_TYPE_MISMATCH_ERROR = 0x2f
 Defined as part of enum type "CGerror" with expression '47', CType: int. More...
 
static final int CG_INVALID_FUNCTION_HANDLE_ERROR = 0x30
 Defined as part of enum type "CGerror" with expression '48', CType: int. More...
 
static final int CG_INVALID_TECHNIQUE_ERROR = 0x31
 Defined as part of enum type "CGerror" with expression '49', CType: int. More...
 
static final int CG_INVALID_POINTER_ERROR = 0x32
 Defined as part of enum type "CGerror" with expression '50', CType: int. More...
 
static final int CG_NOT_ENOUGH_DATA_ERROR = 0x33
 Defined as part of enum type "CGerror" with expression '51', CType: int. More...
 
static final int CG_NON_NUMERIC_PARAMETER_ERROR = 0x34
 Defined as part of enum type "CGerror" with expression '52', CType: int. More...
 
static final int CG_ARRAY_SIZE_MISMATCH_ERROR = 0x35
 Defined as part of enum type "CGerror" with expression '53', CType: int. More...
 
static final int CG_GL_MATRIX_IDENTITY = 0x0
 Defined as part of enum type "CGGLenum" with expression '0', CType: int. More...
 
static final int CG_GL_MATRIX_TRANSPOSE = 0x1
 Defined as part of enum type "CGGLenum" with expression '1', CType: int. More...
 
static final int CG_GL_MATRIX_INVERSE = 0x2
 Defined as part of enum type "CGGLenum" with expression '2', CType: int. More...
 
static final int CG_GL_MATRIX_INVERSE_TRANSPOSE = 0x3
 Defined as part of enum type "CGGLenum" with expression '3', CType: int. More...
 
static final int CG_GL_MODELVIEW_MATRIX = 0x4
 Defined as part of enum type "CGGLenum" with expression '0x4', CType: int. More...
 
static final int CG_GL_PROJECTION_MATRIX = 0x5
 Defined as part of enum type "CGGLenum" with expression '0x5', CType: int. More...
 
static final int CG_GL_TEXTURE_MATRIX = 0x6
 Defined as part of enum type "CGGLenum" with expression '0x6', CType: int. More...
 
static final int CG_GL_MODELVIEW_PROJECTION_MATRIX = 0x7
 Defined as part of enum type "CGGLenum" with expression '0x7', CType: int. More...
 
static final int CG_GL_VERTEX = 0x8
 Defined as part of enum type "CGGLenum" with expression '0x8', CType: int. More...
 
static final int CG_GL_FRAGMENT = 0x9
 Defined as part of enum type "CGGLenum" with expression '0x9', CType: int. More...
 
static final int CG_TEXUNIT0 = 0x800
 Defined as part of enum type "CGresource" with expression '2048', CType: int. More...
 
static final int CG_TEXUNIT1 = 0x801
 Defined as part of enum type "CGresource" with expression '2049', CType: int. More...
 
static final int CG_TEXUNIT2 = 0x802
 Defined as part of enum type "CGresource" with expression '2050', CType: int. More...
 
static final int CG_TEXUNIT3 = 0x803
 Defined as part of enum type "CGresource" with expression '2051', CType: int. More...
 
static final int CG_TEXUNIT4 = 0x804
 Defined as part of enum type "CGresource" with expression '2052', CType: int. More...
 
static final int CG_TEXUNIT5 = 0x805
 Defined as part of enum type "CGresource" with expression '2053', CType: int. More...
 
static final int CG_TEXUNIT6 = 0x806
 Defined as part of enum type "CGresource" with expression '2054', CType: int. More...
 
static final int CG_TEXUNIT7 = 0x807
 Defined as part of enum type "CGresource" with expression '2055', CType: int. More...
 
static final int CG_TEXUNIT8 = 0x808
 Defined as part of enum type "CGresource" with expression '2056', CType: int. More...
 
static final int CG_TEXUNIT9 = 0x809
 Defined as part of enum type "CGresource" with expression '2057', CType: int. More...
 
static final int CG_TEXUNIT10 = 0x80a
 Defined as part of enum type "CGresource" with expression '2058', CType: int. More...
 
static final int CG_TEXUNIT11 = 0x80b
 Defined as part of enum type "CGresource" with expression '2059', CType: int. More...
 
static final int CG_TEXUNIT12 = 0x80c
 Defined as part of enum type "CGresource" with expression '2060', CType: int. More...
 
static final int CG_TEXUNIT13 = 0x80d
 Defined as part of enum type "CGresource" with expression '2061', CType: int. More...
 
static final int CG_TEXUNIT14 = 0x80e
 Defined as part of enum type "CGresource" with expression '2062', CType: int. More...
 
static final int CG_TEXUNIT15 = 0x80f
 Defined as part of enum type "CGresource" with expression '2063', CType: int. More...
 
static final int CG_ATTR0 = 0x841
 Defined as part of enum type "CGresource" with expression '2113', CType: int. More...
 
static final int CG_ATTR1 = 0x842
 Defined as part of enum type "CGresource" with expression '2114', CType: int. More...
 
static final int CG_ATTR2 = 0x843
 Defined as part of enum type "CGresource" with expression '2115', CType: int. More...
 
static final int CG_ATTR3 = 0x844
 Defined as part of enum type "CGresource" with expression '2116', CType: int. More...
 
static final int CG_ATTR4 = 0x845
 Defined as part of enum type "CGresource" with expression '2117', CType: int. More...
 
static final int CG_ATTR5 = 0x846
 Defined as part of enum type "CGresource" with expression '2118', CType: int. More...
 
static final int CG_ATTR6 = 0x847
 Defined as part of enum type "CGresource" with expression '2119', CType: int. More...
 
static final int CG_ATTR7 = 0x848
 Defined as part of enum type "CGresource" with expression '2120', CType: int. More...
 
static final int CG_ATTR8 = 0x849
 Defined as part of enum type "CGresource" with expression '2121', CType: int. More...
 
static final int CG_ATTR9 = 0x84a
 Defined as part of enum type "CGresource" with expression '2122', CType: int. More...
 
static final int CG_ATTR10 = 0x84b
 Defined as part of enum type "CGresource" with expression '2123', CType: int. More...
 
static final int CG_ATTR11 = 0x84c
 Defined as part of enum type "CGresource" with expression '2124', CType: int. More...
 
static final int CG_ATTR12 = 0x84d
 Defined as part of enum type "CGresource" with expression '2125', CType: int. More...
 
static final int CG_ATTR13 = 0x84e
 Defined as part of enum type "CGresource" with expression '2126', CType: int. More...
 
static final int CG_ATTR14 = 0x84f
 Defined as part of enum type "CGresource" with expression '2127', CType: int. More...
 
static final int CG_ATTR15 = 0x850
 Defined as part of enum type "CGresource" with expression '2128', CType: int. More...
 
static final int CG_C = 0x882
 Defined as part of enum type "CGresource" with expression '2178', CType: int. More...
 
static final int CG_TEX0 = 0x883
 Defined as part of enum type "CGresource" with expression '2179', CType: int. More...
 
static final int CG_TEX1 = 0x884
 Defined as part of enum type "CGresource" with expression '2180', CType: int. More...
 
static final int CG_TEX2 = 0x885
 Defined as part of enum type "CGresource" with expression '2181', CType: int. More...
 
static final int CG_TEX3 = 0x890
 Defined as part of enum type "CGresource" with expression '2192', CType: int. More...
 
static final int CG_TEX4 = 0x891
 Defined as part of enum type "CGresource" with expression '2193', CType: int. More...
 
static final int CG_TEX5 = 0x892
 Defined as part of enum type "CGresource" with expression '2194', CType: int. More...
 
static final int CG_TEX6 = 0x893
 Defined as part of enum type "CGresource" with expression '2195', CType: int. More...
 
static final int CG_TEX7 = 0x894
 Defined as part of enum type "CGresource" with expression '2196', CType: int. More...
 
static final int CG_HPOS = 0x8c3
 Defined as part of enum type "CGresource" with expression '2243', CType: int. More...
 
static final int CG_COL0 = 0x8c5
 Defined as part of enum type "CGresource" with expression '2245', CType: int. More...
 
static final int CG_COL1 = 0x8c6
 Defined as part of enum type "CGresource" with expression '2246', CType: int. More...
 
static final int CG_COL2 = 0x8c7
 Defined as part of enum type "CGresource" with expression '2247', CType: int. More...
 
static final int CG_COL3 = 0x8c8
 Defined as part of enum type "CGresource" with expression '2248', CType: int. More...
 
static final int CG_PSIZ = 0x905
 Defined as part of enum type "CGresource" with expression '2309', CType: int. More...
 
static final int CG_WPOS = 0x945
 Defined as part of enum type "CGresource" with expression '2373', CType: int. More...
 
static final int CG_POSITION0 = 0x985
 Defined as part of enum type "CGresource" with expression '2437', CType: int. More...
 
static final int CG_POSITION1 = 0x986
 Defined as part of enum type "CGresource" with expression '2438', CType: int. More...
 
static final int CG_POSITION2 = 0x987
 Defined as part of enum type "CGresource" with expression '2439', CType: int. More...
 
static final int CG_POSITION3 = 0x988
 Defined as part of enum type "CGresource" with expression '2440', CType: int. More...
 
static final int CG_POSITION4 = 0x989
 Defined as part of enum type "CGresource" with expression '2441', CType: int. More...
 
static final int CG_POSITION5 = 0x98a
 Defined as part of enum type "CGresource" with expression '2442', CType: int. More...
 
static final int CG_POSITION6 = 0x98b
 Defined as part of enum type "CGresource" with expression '2443', CType: int. More...
 
static final int CG_POSITION7 = 0x98c
 Defined as part of enum type "CGresource" with expression '2444', CType: int. More...
 
static final int CG_POSITION8 = 0x98d
 Defined as part of enum type "CGresource" with expression '2445', CType: int. More...
 
static final int CG_POSITION9 = 0x98e
 Defined as part of enum type "CGresource" with expression '2446', CType: int. More...
 
static final int CG_POSITION10 = 0x98f
 Defined as part of enum type "CGresource" with expression '2447', CType: int. More...
 
static final int CG_POSITION11 = 0x990
 Defined as part of enum type "CGresource" with expression '2448', CType: int. More...
 
static final int CG_POSITION12 = 0x991
 Defined as part of enum type "CGresource" with expression '2449', CType: int. More...
 
static final int CG_POSITION13 = 0x992
 Defined as part of enum type "CGresource" with expression '2450', CType: int. More...
 
static final int CG_POSITION14 = 0x993
 Defined as part of enum type "CGresource" with expression '2451', CType: int. More...
 
static final int CG_POSITION15 = 0x994
 Defined as part of enum type "CGresource" with expression '2452', CType: int. More...
 
static final int CG_DIFFUSE0 = 0x9c5
 Defined as part of enum type "CGresource" with expression '2501', CType: int. More...
 
static final int CG_TANGENT0 = 0xa05
 Defined as part of enum type "CGresource" with expression '2565', CType: int. More...
 
static final int CG_TANGENT1 = 0xa06
 Defined as part of enum type "CGresource" with expression '2566', CType: int. More...
 
static final int CG_TANGENT2 = 0xa07
 Defined as part of enum type "CGresource" with expression '2567', CType: int. More...
 
static final int CG_TANGENT3 = 0xa08
 Defined as part of enum type "CGresource" with expression '2568', CType: int. More...
 
static final int CG_TANGENT4 = 0xa09
 Defined as part of enum type "CGresource" with expression '2569', CType: int. More...
 
static final int CG_TANGENT5 = 0xa0a
 Defined as part of enum type "CGresource" with expression '2570', CType: int. More...
 
static final int CG_TANGENT6 = 0xa0b
 Defined as part of enum type "CGresource" with expression '2571', CType: int. More...
 
static final int CG_TANGENT7 = 0xa0c
 Defined as part of enum type "CGresource" with expression '2572', CType: int. More...
 
static final int CG_TANGENT8 = 0xa0d
 Defined as part of enum type "CGresource" with expression '2573', CType: int. More...
 
static final int CG_TANGENT9 = 0xa0e
 Defined as part of enum type "CGresource" with expression '2574', CType: int. More...
 
static final int CG_TANGENT10 = 0xa0f
 Defined as part of enum type "CGresource" with expression '2575', CType: int. More...
 
static final int CG_TANGENT11 = 0xa10
 Defined as part of enum type "CGresource" with expression '2576', CType: int. More...
 
static final int CG_TANGENT12 = 0xa11
 Defined as part of enum type "CGresource" with expression '2577', CType: int. More...
 
static final int CG_TANGENT13 = 0xa12
 Defined as part of enum type "CGresource" with expression '2578', CType: int. More...
 
static final int CG_TANGENT14 = 0xa13
 Defined as part of enum type "CGresource" with expression '2579', CType: int. More...
 
static final int CG_TANGENT15 = 0xa14
 Defined as part of enum type "CGresource" with expression '2580', CType: int. More...
 
static final int CG_SPECULAR0 = 0xa45
 Defined as part of enum type "CGresource" with expression '2629', CType: int. More...
 
static final int CG_BLENDINDICES0 = 0xa85
 Defined as part of enum type "CGresource" with expression '2693', CType: int. More...
 
static final int CG_BLENDINDICES1 = 0xa86
 Defined as part of enum type "CGresource" with expression '2694', CType: int. More...
 
static final int CG_BLENDINDICES2 = 0xa87
 Defined as part of enum type "CGresource" with expression '2695', CType: int. More...
 
static final int CG_BLENDINDICES3 = 0xa88
 Defined as part of enum type "CGresource" with expression '2696', CType: int. More...
 
static final int CG_BLENDINDICES4 = 0xa89
 Defined as part of enum type "CGresource" with expression '2697', CType: int. More...
 
static final int CG_BLENDINDICES5 = 0xa8a
 Defined as part of enum type "CGresource" with expression '2698', CType: int. More...
 
static final int CG_BLENDINDICES6 = 0xa8b
 Defined as part of enum type "CGresource" with expression '2699', CType: int. More...
 
static final int CG_BLENDINDICES7 = 0xa8c
 Defined as part of enum type "CGresource" with expression '2700', CType: int. More...
 
static final int CG_BLENDINDICES8 = 0xa8d
 Defined as part of enum type "CGresource" with expression '2701', CType: int. More...
 
static final int CG_BLENDINDICES9 = 0xa8e
 Defined as part of enum type "CGresource" with expression '2702', CType: int. More...
 
static final int CG_BLENDINDICES10 = 0xa8f
 Defined as part of enum type "CGresource" with expression '2703', CType: int. More...
 
static final int CG_BLENDINDICES11 = 0xa90
 Defined as part of enum type "CGresource" with expression '2704', CType: int. More...
 
static final int CG_BLENDINDICES12 = 0xa91
 Defined as part of enum type "CGresource" with expression '2705', CType: int. More...
 
static final int CG_BLENDINDICES13 = 0xa92
 Defined as part of enum type "CGresource" with expression '2706', CType: int. More...
 
static final int CG_BLENDINDICES14 = 0xa93
 Defined as part of enum type "CGresource" with expression '2707', CType: int. More...
 
static final int CG_BLENDINDICES15 = 0xa94
 Defined as part of enum type "CGresource" with expression '2708', CType: int. More...
 
static final int CG_COLOR0 = 0xac5
 Defined as part of enum type "CGresource" with expression '2757', CType: int. More...
 
static final int CG_COLOR1 = 0xac6
 Defined as part of enum type "CGresource" with expression '2758', CType: int. More...
 
static final int CG_COLOR2 = 0xac7
 Defined as part of enum type "CGresource" with expression '2759', CType: int. More...
 
static final int CG_COLOR3 = 0xac8
 Defined as part of enum type "CGresource" with expression '2760', CType: int. More...
 
static final int CG_COLOR4 = 0xac9
 Defined as part of enum type "CGresource" with expression '2761', CType: int. More...
 
static final int CG_COLOR5 = 0xaca
 Defined as part of enum type "CGresource" with expression '2762', CType: int. More...
 
static final int CG_COLOR6 = 0xacb
 Defined as part of enum type "CGresource" with expression '2763', CType: int. More...
 
static final int CG_COLOR7 = 0xacc
 Defined as part of enum type "CGresource" with expression '2764', CType: int. More...
 
static final int CG_COLOR8 = 0xacd
 Defined as part of enum type "CGresource" with expression '2765', CType: int. More...
 
static final int CG_COLOR9 = 0xace
 Defined as part of enum type "CGresource" with expression '2766', CType: int. More...
 
static final int CG_COLOR10 = 0xacf
 Defined as part of enum type "CGresource" with expression '2767', CType: int. More...
 
static final int CG_COLOR11 = 0xad0
 Defined as part of enum type "CGresource" with expression '2768', CType: int. More...
 
static final int CG_COLOR12 = 0xad1
 Defined as part of enum type "CGresource" with expression '2769', CType: int. More...
 
static final int CG_COLOR13 = 0xad2
 Defined as part of enum type "CGresource" with expression '2770', CType: int. More...
 
static final int CG_COLOR14 = 0xad3
 Defined as part of enum type "CGresource" with expression '2771', CType: int. More...
 
static final int CG_COLOR15 = 0xad4
 Defined as part of enum type "CGresource" with expression '2772', CType: int. More...
 
static final int CG_PSIZE0 = 0xb05
 Defined as part of enum type "CGresource" with expression '2821', CType: int. More...
 
static final int CG_PSIZE1 = 0xb06
 Defined as part of enum type "CGresource" with expression '2822', CType: int. More...
 
static final int CG_PSIZE2 = 0xb07
 Defined as part of enum type "CGresource" with expression '2823', CType: int. More...
 
static final int CG_PSIZE3 = 0xb08
 Defined as part of enum type "CGresource" with expression '2824', CType: int. More...
 
static final int CG_PSIZE4 = 0xb09
 Defined as part of enum type "CGresource" with expression '2825', CType: int. More...
 
static final int CG_PSIZE5 = 0xb0a
 Defined as part of enum type "CGresource" with expression '2826', CType: int. More...
 
static final int CG_PSIZE6 = 0xb0b
 Defined as part of enum type "CGresource" with expression '2827', CType: int. More...
 
static final int CG_PSIZE7 = 0xb0c
 Defined as part of enum type "CGresource" with expression '2828', CType: int. More...
 
static final int CG_PSIZE8 = 0xb0d
 Defined as part of enum type "CGresource" with expression '2829', CType: int. More...
 
static final int CG_PSIZE9 = 0xb0e
 Defined as part of enum type "CGresource" with expression '2830', CType: int. More...
 
static final int CG_PSIZE10 = 0xb0f
 Defined as part of enum type "CGresource" with expression '2831', CType: int. More...
 
static final int CG_PSIZE11 = 0xb10
 Defined as part of enum type "CGresource" with expression '2832', CType: int. More...
 
static final int CG_PSIZE12 = 0xb11
 Defined as part of enum type "CGresource" with expression '2833', CType: int. More...
 
static final int CG_PSIZE13 = 0xb12
 Defined as part of enum type "CGresource" with expression '2834', CType: int. More...
 
static final int CG_PSIZE14 = 0xb13
 Defined as part of enum type "CGresource" with expression '2835', CType: int. More...
 
static final int CG_PSIZE15 = 0xb14
 Defined as part of enum type "CGresource" with expression '2836', CType: int. More...
 
static final int CG_BINORMAL0 = 0xb45
 Defined as part of enum type "CGresource" with expression '2885', CType: int. More...
 
static final int CG_BINORMAL1 = 0xb46
 Defined as part of enum type "CGresource" with expression '2886', CType: int. More...
 
static final int CG_BINORMAL2 = 0xb47
 Defined as part of enum type "CGresource" with expression '2887', CType: int. More...
 
static final int CG_BINORMAL3 = 0xb48
 Defined as part of enum type "CGresource" with expression '2888', CType: int. More...
 
static final int CG_BINORMAL4 = 0xb49
 Defined as part of enum type "CGresource" with expression '2889', CType: int. More...
 
static final int CG_BINORMAL5 = 0xb4a
 Defined as part of enum type "CGresource" with expression '2890', CType: int. More...
 
static final int CG_BINORMAL6 = 0xb4b
 Defined as part of enum type "CGresource" with expression '2891', CType: int. More...
 
static final int CG_BINORMAL7 = 0xb4c
 Defined as part of enum type "CGresource" with expression '2892', CType: int. More...
 
static final int CG_BINORMAL8 = 0xb4d
 Defined as part of enum type "CGresource" with expression '2893', CType: int. More...
 
static final int CG_BINORMAL9 = 0xb4e
 Defined as part of enum type "CGresource" with expression '2894', CType: int. More...
 
static final int CG_BINORMAL10 = 0xb4f
 Defined as part of enum type "CGresource" with expression '2895', CType: int. More...
 
static final int CG_BINORMAL11 = 0xb50
 Defined as part of enum type "CGresource" with expression '2896', CType: int. More...
 
static final int CG_BINORMAL12 = 0xb51
 Defined as part of enum type "CGresource" with expression '2897', CType: int. More...
 
static final int CG_BINORMAL13 = 0xb52
 Defined as part of enum type "CGresource" with expression '2898', CType: int. More...
 
static final int CG_BINORMAL14 = 0xb53
 Defined as part of enum type "CGresource" with expression '2899', CType: int. More...
 
static final int CG_BINORMAL15 = 0xb54
 Defined as part of enum type "CGresource" with expression '2900', CType: int. More...
 
static final int CG_FOG0 = 0xb65
 Defined as part of enum type "CGresource" with expression '2917', CType: int. More...
 
static final int CG_FOG1 = 0xb66
 Defined as part of enum type "CGresource" with expression '2918', CType: int. More...
 
static final int CG_FOG2 = 0xb67
 Defined as part of enum type "CGresource" with expression '2919', CType: int. More...
 
static final int CG_FOG3 = 0xb68
 Defined as part of enum type "CGresource" with expression '2920', CType: int. More...
 
static final int CG_FOG4 = 0xb69
 Defined as part of enum type "CGresource" with expression '2921', CType: int. More...
 
static final int CG_FOG5 = 0xb6a
 Defined as part of enum type "CGresource" with expression '2922', CType: int. More...
 
static final int CG_FOG6 = 0xb6b
 Defined as part of enum type "CGresource" with expression '2923', CType: int. More...
 
static final int CG_FOG7 = 0xb6c
 Defined as part of enum type "CGresource" with expression '2924', CType: int. More...
 
static final int CG_FOG8 = 0xb6d
 Defined as part of enum type "CGresource" with expression '2925', CType: int. More...
 
static final int CG_FOG9 = 0xb6e
 Defined as part of enum type "CGresource" with expression '2926', CType: int. More...
 
static final int CG_FOG10 = 0xb6f
 Defined as part of enum type "CGresource" with expression '2927', CType: int. More...
 
static final int CG_FOG11 = 0xb70
 Defined as part of enum type "CGresource" with expression '2928', CType: int. More...
 
static final int CG_FOG12 = 0xb71
 Defined as part of enum type "CGresource" with expression '2929', CType: int. More...
 
static final int CG_FOG13 = 0xb72
 Defined as part of enum type "CGresource" with expression '2930', CType: int. More...
 
static final int CG_FOG14 = 0xb73
 Defined as part of enum type "CGresource" with expression '2931', CType: int. More...
 
static final int CG_FOG15 = 0xb74
 Defined as part of enum type "CGresource" with expression '2932', CType: int. More...
 
static final int CG_DEPTH0 = 0xb75
 Defined as part of enum type "CGresource" with expression '2933', CType: int. More...
 
static final int CG_DEPTH1 = 0xb76
 Defined as part of enum type "CGresource" with expression '2934', CType: int. More...
 
static final int CG_DEPTH2 = 0xb77
 Defined as part of enum type "CGresource" with expression '2935', CType: int. More...
 
static final int CG_DEPTH3 = 0xb78
 Defined as part of enum type "CGresource" with expression '2936', CType: int. More...
 
static final int CG_DEPTH4 = 0xb79
 Defined as part of enum type "CGresource" with expression '2937', CType: int. More...
 
static final int CG_DEPTH5 = 0xb7a
 Defined as part of enum type "CGresource" with expression '2938', CType: int. More...
 
static final int CG_DEPTH6 = 0xb7b
 Defined as part of enum type "CGresource" with expression '2939', CType: int. More...
 
static final int CG_DEPTH7 = 0xb7c
 Defined as part of enum type "CGresource" with expression '2940', CType: int. More...
 
static final int CG_DEPTH8 = 0xb7d
 Defined as part of enum type "CGresource" with expression '2941', CType: int. More...
 
static final int CG_DEPTH9 = 0x7366
 Defined as part of enum type "CGresource" with expression '29542', CType: int. More...
 
static final int CG_DEPTH10 = 0xb7f
 Defined as part of enum type "CGresource" with expression '2943', CType: int. More...
 
static final int CG_DEPTH11 = 0xb80
 Defined as part of enum type "CGresource" with expression '2944', CType: int. More...
 
static final int CG_DEPTH12 = 0xb81
 Defined as part of enum type "CGresource" with expression '2945', CType: int. More...
 
static final int CG_DEPTH13 = 0xb82
 Defined as part of enum type "CGresource" with expression '2946', CType: int. More...
 
static final int CG_DEPTH14 = 0xb83
 Defined as part of enum type "CGresource" with expression '2947', CType: int. More...
 
static final int CG_DEPTH15 = 0xb84
 Defined as part of enum type "CGresource" with expression '2948', CType: int. More...
 
static final int CG_SAMPLE0 = 0xb85
 Defined as part of enum type "CGresource" with expression '2949', CType: int. More...
 
static final int CG_SAMPLE1 = 0xb86
 Defined as part of enum type "CGresource" with expression '2950', CType: int. More...
 
static final int CG_SAMPLE2 = 0xb87
 Defined as part of enum type "CGresource" with expression '2951', CType: int. More...
 
static final int CG_SAMPLE3 = 0xb88
 Defined as part of enum type "CGresource" with expression '2952', CType: int. More...
 
static final int CG_SAMPLE4 = 0xb89
 Defined as part of enum type "CGresource" with expression '2953', CType: int. More...
 
static final int CG_SAMPLE5 = 0xb8a
 Defined as part of enum type "CGresource" with expression '2954', CType: int. More...
 
static final int CG_SAMPLE6 = 0xb8b
 Defined as part of enum type "CGresource" with expression '2955', CType: int. More...
 
static final int CG_SAMPLE7 = 0xb8c
 Defined as part of enum type "CGresource" with expression '2956', CType: int. More...
 
static final int CG_SAMPLE8 = 0xb8d
 Defined as part of enum type "CGresource" with expression '2957', CType: int. More...
 
static final int CG_SAMPLE9 = 0xb8e
 Defined as part of enum type "CGresource" with expression '2958', CType: int. More...
 
static final int CG_SAMPLE10 = 0xb8f
 Defined as part of enum type "CGresource" with expression '2959', CType: int. More...
 
static final int CG_SAMPLE11 = 0xb90
 Defined as part of enum type "CGresource" with expression '2960', CType: int. More...
 
static final int CG_SAMPLE12 = 0xb91
 Defined as part of enum type "CGresource" with expression '2961', CType: int. More...
 
static final int CG_SAMPLE13 = 0xb92
 Defined as part of enum type "CGresource" with expression '2962', CType: int. More...
 
static final int CG_SAMPLE14 = 0xb93
 Defined as part of enum type "CGresource" with expression '2963', CType: int. More...
 
static final int CG_SAMPLE15 = 0xb94
 Defined as part of enum type "CGresource" with expression '2964', CType: int. More...
 
static final int CG_BLENDWEIGHT0 = 0xbd4
 Defined as part of enum type "CGresource" with expression '3028', CType: int. More...
 
static final int CG_BLENDWEIGHT1 = 0xbd5
 Defined as part of enum type "CGresource" with expression '3029', CType: int. More...
 
static final int CG_BLENDWEIGHT2 = 0xbd6
 Defined as part of enum type "CGresource" with expression '3030', CType: int. More...
 
static final int CG_BLENDWEIGHT3 = 0xbd7
 Defined as part of enum type "CGresource" with expression '3031', CType: int. More...
 
static final int CG_BLENDWEIGHT4 = 0xbd8
 Defined as part of enum type "CGresource" with expression '3032', CType: int. More...
 
static final int CG_BLENDWEIGHT5 = 0xbd9
 Defined as part of enum type "CGresource" with expression '3033', CType: int. More...
 
static final int CG_BLENDWEIGHT6 = 0xbda
 Defined as part of enum type "CGresource" with expression '3034', CType: int. More...
 
static final int CG_BLENDWEIGHT7 = 0xbdb
 Defined as part of enum type "CGresource" with expression '3035', CType: int. More...
 
static final int CG_BLENDWEIGHT8 = 0xbdc
 Defined as part of enum type "CGresource" with expression '3036', CType: int. More...
 
static final int CG_BLENDWEIGHT9 = 0xbdd
 Defined as part of enum type "CGresource" with expression '3037', CType: int. More...
 
static final int CG_BLENDWEIGHT10 = 0xbde
 Defined as part of enum type "CGresource" with expression '3038', CType: int. More...
 
static final int CG_BLENDWEIGHT11 = 0xbdf
 Defined as part of enum type "CGresource" with expression '3039', CType: int. More...
 
static final int CG_BLENDWEIGHT12 = 0xbe0
 Defined as part of enum type "CGresource" with expression '3040', CType: int. More...
 
static final int CG_BLENDWEIGHT13 = 0xbe1
 Defined as part of enum type "CGresource" with expression '3041', CType: int. More...
 
static final int CG_BLENDWEIGHT14 = 0xbe2
 Defined as part of enum type "CGresource" with expression '3042', CType: int. More...
 
static final int CG_BLENDWEIGHT15 = 0xbe3
 Defined as part of enum type "CGresource" with expression '3043', CType: int. More...
 
static final int CG_NORMAL0 = 0xc14
 Defined as part of enum type "CGresource" with expression '3092', CType: int. More...
 
static final int CG_NORMAL1 = 0xc15
 Defined as part of enum type "CGresource" with expression '3093', CType: int. More...
 
static final int CG_NORMAL2 = 0xc16
 Defined as part of enum type "CGresource" with expression '3094', CType: int. More...
 
static final int CG_NORMAL3 = 0xc17
 Defined as part of enum type "CGresource" with expression '3095', CType: int. More...
 
static final int CG_NORMAL4 = 0xc18
 Defined as part of enum type "CGresource" with expression '3096', CType: int. More...
 
static final int CG_NORMAL5 = 0xc19
 Defined as part of enum type "CGresource" with expression '3097', CType: int. More...
 
static final int CG_NORMAL6 = 0xc1a
 Defined as part of enum type "CGresource" with expression '3098', CType: int. More...
 
static final int CG_NORMAL7 = 0xc1b
 Defined as part of enum type "CGresource" with expression '3099', CType: int. More...
 
static final int CG_NORMAL8 = 0xc1c
 Defined as part of enum type "CGresource" with expression '3100', CType: int. More...
 
static final int CG_NORMAL9 = 0xc1d
 Defined as part of enum type "CGresource" with expression '3101', CType: int. More...
 
static final int CG_NORMAL10 = 0xc1e
 Defined as part of enum type "CGresource" with expression '3102', CType: int. More...
 
static final int CG_NORMAL11 = 0xc1f
 Defined as part of enum type "CGresource" with expression '3103', CType: int. More...
 
static final int CG_NORMAL12 = 0xc20
 Defined as part of enum type "CGresource" with expression '3104', CType: int. More...
 
static final int CG_NORMAL13 = 0xc21
 Defined as part of enum type "CGresource" with expression '3105', CType: int. More...
 
static final int CG_NORMAL14 = 0xc22
 Defined as part of enum type "CGresource" with expression '3106', CType: int. More...
 
static final int CG_NORMAL15 = 0xc23
 Defined as part of enum type "CGresource" with expression '3107', CType: int. More...
 
static final int CG_FOGCOORD = 0xc54
 Defined as part of enum type "CGresource" with expression '3156', CType: int. More...
 
static final int CG_TEXCOORD0 = 0xc94
 Defined as part of enum type "CGresource" with expression '3220', CType: int. More...
 
static final int CG_TEXCOORD1 = 0xc95
 Defined as part of enum type "CGresource" with expression '3221', CType: int. More...
 
static final int CG_TEXCOORD2 = 0xc96
 Defined as part of enum type "CGresource" with expression '3222', CType: int. More...
 
static final int CG_TEXCOORD3 = 0xc97
 Defined as part of enum type "CGresource" with expression '3223', CType: int. More...
 
static final int CG_TEXCOORD4 = 0xc98
 Defined as part of enum type "CGresource" with expression '3224', CType: int. More...
 
static final int CG_TEXCOORD5 = 0xc99
 Defined as part of enum type "CGresource" with expression '3225', CType: int. More...
 
static final int CG_TEXCOORD6 = 0xc9a
 Defined as part of enum type "CGresource" with expression '3226', CType: int. More...
 
static final int CG_TEXCOORD7 = 0xc9b
 Defined as part of enum type "CGresource" with expression '3227', CType: int. More...
 
static final int CG_TEXCOORD8 = 0xc9c
 Defined as part of enum type "CGresource" with expression '3228', CType: int. More...
 
static final int CG_TEXCOORD9 = 0xc9d
 Defined as part of enum type "CGresource" with expression '3229', CType: int. More...
 
static final int CG_TEXCOORD10 = 0xc9e
 Defined as part of enum type "CGresource" with expression '3230', CType: int. More...
 
static final int CG_TEXCOORD11 = 0xc9f
 Defined as part of enum type "CGresource" with expression '3231', CType: int. More...
 
static final int CG_TEXCOORD12 = 0xca0
 Defined as part of enum type "CGresource" with expression '3232', CType: int. More...
 
static final int CG_TEXCOORD13 = 0xca1
 Defined as part of enum type "CGresource" with expression '3233', CType: int. More...
 
static final int CG_TEXCOORD14 = 0xca2
 Defined as part of enum type "CGresource" with expression '3234', CType: int. More...
 
static final int CG_TEXCOORD15 = 0xca3
 Defined as part of enum type "CGresource" with expression '3235', CType: int. More...
 
static final int CG_COMBINER_CONST0 = 0xcd4
 Defined as part of enum type "CGresource" with expression '3284', CType: int. More...
 
static final int CG_COMBINER_CONST1 = 0xcd5
 Defined as part of enum type "CGresource" with expression '3285', CType: int. More...
 
static final int CG_COMBINER_STAGE_CONST0 = 0xcd6
 Defined as part of enum type "CGresource" with expression '3286', CType: int. More...
 
static final int CG_COMBINER_STAGE_CONST1 = 0xcd7
 Defined as part of enum type "CGresource" with expression '3287', CType: int. More...
 
static final int CG_OFFSET_TEXTURE_MATRIX = 0xcd8
 Defined as part of enum type "CGresource" with expression '3288', CType: int. More...
 
static final int CG_OFFSET_TEXTURE_SCALE = 0xcd9
 Defined as part of enum type "CGresource" with expression '3289', CType: int. More...
 
static final int CG_OFFSET_TEXTURE_BIAS = 0xcda
 Defined as part of enum type "CGresource" with expression '3290', CType: int. More...
 
static final int CG_CONST_EYE = 0xcdb
 Defined as part of enum type "CGresource" with expression '3291', CType: int. More...
 
static final int CG_TESSFACTOR = 0xcb7
 Defined as part of enum type "CGresource" with expression '3255', CType: int. More...
 
static final int CG_UNDEFINED = 0xcb8
 Defined as part of enum type "CGresource" with expression '0xcb8', CType: int. More...
 
static final long CG_UNKNOWN_TYPE = 0x0L
 Defined as part of enum type "CGtype" with expression '0x0L', CType: long. More...
 
static final long CG_STRUCT = 0x1L
 Defined as part of enum type "CGtype" with expression '0x1L', CType: long. More...
 
static final long CG_ARRAY = 0x2L
 Defined as part of enum type "CGtype" with expression '0x2L', CType: long. More...
 
static final int CG_TYPE_START_ENUM = 0x400
 Defined as part of enum type "CGtype" with expression '1024', CType: int. More...
 
static final int CG_HALF = 0x401
 Defined as part of enum type "CGtype" with expression '0x401', CType: int. More...
 
static final int CG_HALF2 = 0x402
 Defined as part of enum type "CGtype" with expression '0x402', CType: int. More...
 
static final int CG_HALF3 = 0x403
 Defined as part of enum type "CGtype" with expression '0x403', CType: int. More...
 
static final int CG_HALF4 = 0x404
 Defined as part of enum type "CGtype" with expression '0x404', CType: int. More...
 
static final int CG_HALF1x1 = 0x405
 Defined as part of enum type "CGtype" with expression '0x405', CType: int. More...
 
static final int CG_HALF1x2 = 0x406
 Defined as part of enum type "CGtype" with expression '0x406', CType: int. More...
 
static final int CG_HALF1x3 = 0x407
 Defined as part of enum type "CGtype" with expression '0x407', CType: int. More...
 
static final int CG_HALF1x4 = 0x408
 Defined as part of enum type "CGtype" with expression '0x408', CType: int. More...
 
static final int CG_HALF2x1 = 0x409
 Defined as part of enum type "CGtype" with expression '0x409', CType: int. More...
 
static final int CG_HALF2x2 = 0x40a
 Defined as part of enum type "CGtype" with expression '0x40a', CType: int. More...
 
static final int CG_HALF2x3 = 0x40b
 Defined as part of enum type "CGtype" with expression '0x40b', CType: int. More...
 
static final int CG_HALF2x4 = 0x40c
 Defined as part of enum type "CGtype" with expression '0x40c', CType: int. More...
 
static final int CG_HALF3x1 = 0x40d
 Defined as part of enum type "CGtype" with expression '0x40d', CType: int. More...
 
static final int CG_HALF3x2 = 0x40e
 Defined as part of enum type "CGtype" with expression '0x40e', CType: int. More...
 
static final int CG_HALF3x3 = 0x40f
 Defined as part of enum type "CGtype" with expression '0x40f', CType: int. More...
 
static final int CG_HALF3x4 = 0x410
 Defined as part of enum type "CGtype" with expression '0x410', CType: int. More...
 
static final int CG_HALF4x1 = 0x411
 Defined as part of enum type "CGtype" with expression '0x411', CType: int. More...
 
static final int CG_HALF4x2 = 0x412
 Defined as part of enum type "CGtype" with expression '0x412', CType: int. More...
 
static final int CG_HALF4x3 = 0x413
 Defined as part of enum type "CGtype" with expression '0x413', CType: int. More...
 
static final int CG_HALF4x4 = 0x414
 Defined as part of enum type "CGtype" with expression '0x414', CType: int. More...
 
static final int CG_FLOAT = 0x415
 Defined as part of enum type "CGtype" with expression '0x415', CType: int. More...
 
static final int CG_FLOAT2 = 0x416
 Defined as part of enum type "CGtype" with expression '0x416', CType: int. More...
 
static final int CG_FLOAT3 = 0x417
 Defined as part of enum type "CGtype" with expression '0x417', CType: int. More...
 
static final int CG_FLOAT4 = 0x418
 Defined as part of enum type "CGtype" with expression '0x418', CType: int. More...
 
static final int CG_FLOAT1x1 = 0x419
 Defined as part of enum type "CGtype" with expression '0x419', CType: int. More...
 
static final int CG_FLOAT1x2 = 0x41a
 Defined as part of enum type "CGtype" with expression '0x41a', CType: int. More...
 
static final int CG_FLOAT1x3 = 0x41b
 Defined as part of enum type "CGtype" with expression '0x41b', CType: int. More...
 
static final int CG_FLOAT1x4 = 0x41c
 Defined as part of enum type "CGtype" with expression '0x41c', CType: int. More...
 
static final int CG_FLOAT2x1 = 0x41d
 Defined as part of enum type "CGtype" with expression '0x41d', CType: int. More...
 
static final int CG_FLOAT2x2 = 0x41e
 Defined as part of enum type "CGtype" with expression '0x41e', CType: int. More...
 
static final int CG_FLOAT2x3 = 0x41f
 Defined as part of enum type "CGtype" with expression '0x41f', CType: int. More...
 
static final int CG_FLOAT2x4 = 0x420
 Defined as part of enum type "CGtype" with expression '0x420', CType: int. More...
 
static final int CG_FLOAT3x1 = 0x421
 Defined as part of enum type "CGtype" with expression '0x421', CType: int. More...
 
static final int CG_FLOAT3x2 = 0x422
 Defined as part of enum type "CGtype" with expression '0x422', CType: int. More...
 
static final int CG_FLOAT3x3 = 0x423
 Defined as part of enum type "CGtype" with expression '0x423', CType: int. More...
 
static final int CG_FLOAT3x4 = 0x424
 Defined as part of enum type "CGtype" with expression '0x424', CType: int. More...
 
static final int CG_FLOAT4x1 = 0x425
 Defined as part of enum type "CGtype" with expression '0x425', CType: int. More...
 
static final int CG_FLOAT4x2 = 0x426
 Defined as part of enum type "CGtype" with expression '0x426', CType: int. More...
 
static final int CG_FLOAT4x3 = 0x427
 Defined as part of enum type "CGtype" with expression '0x427', CType: int. More...
 
static final int CG_FLOAT4x4 = 0x428
 Defined as part of enum type "CGtype" with expression '0x428', CType: int. More...
 
static final int CG_SAMPLER1D = 0x429
 Defined as part of enum type "CGtype" with expression '0x429', CType: int. More...
 
static final int CG_SAMPLER2D = 0x42a
 Defined as part of enum type "CGtype" with expression '0x42a', CType: int. More...
 
static final int CG_SAMPLER3D = 0x42b
 Defined as part of enum type "CGtype" with expression '0x42b', CType: int. More...
 
static final int CG_SAMPLERRECT = 0x42c
 Defined as part of enum type "CGtype" with expression '0x42c', CType: int. More...
 
static final int CG_SAMPLERCUBE = 0x42d
 Defined as part of enum type "CGtype" with expression '0x42d', CType: int. More...
 
static final int CG_FIXED = 0x42e
 Defined as part of enum type "CGtype" with expression '0x42e', CType: int. More...
 
static final int CG_FIXED2 = 0x42f
 Defined as part of enum type "CGtype" with expression '0x42f', CType: int. More...
 
static final int CG_FIXED3 = 0x430
 Defined as part of enum type "CGtype" with expression '0x430', CType: int. More...
 
static final int CG_FIXED4 = 0x431
 Defined as part of enum type "CGtype" with expression '0x431', CType: int. More...
 
static final int CG_FIXED1x1 = 0x432
 Defined as part of enum type "CGtype" with expression '0x432', CType: int. More...
 
static final int CG_FIXED1x2 = 0x433
 Defined as part of enum type "CGtype" with expression '0x433', CType: int. More...
 
static final int CG_FIXED1x3 = 0x434
 Defined as part of enum type "CGtype" with expression '0x434', CType: int. More...
 
static final int CG_FIXED1x4 = 0x435
 Defined as part of enum type "CGtype" with expression '0x435', CType: int. More...
 
static final int CG_FIXED2x1 = 0x436
 Defined as part of enum type "CGtype" with expression '0x436', CType: int. More...
 
static final int CG_FIXED2x2 = 0x437
 Defined as part of enum type "CGtype" with expression '0x437', CType: int. More...
 
static final int CG_FIXED2x3 = 0x438
 Defined as part of enum type "CGtype" with expression '0x438', CType: int. More...
 
static final int CG_FIXED2x4 = 0x439
 Defined as part of enum type "CGtype" with expression '0x439', CType: int. More...
 
static final int CG_FIXED3x1 = 0x43a
 Defined as part of enum type "CGtype" with expression '0x43a', CType: int. More...
 
static final int CG_FIXED3x2 = 0x43b
 Defined as part of enum type "CGtype" with expression '0x43b', CType: int. More...
 
static final int CG_FIXED3x3 = 0x43c
 Defined as part of enum type "CGtype" with expression '0x43c', CType: int. More...
 
static final int CG_FIXED3x4 = 0x43d
 Defined as part of enum type "CGtype" with expression '0x43d', CType: int. More...
 
static final int CG_FIXED4x1 = 0x43e
 Defined as part of enum type "CGtype" with expression '0x43e', CType: int. More...
 
static final int CG_FIXED4x2 = 0x43f
 Defined as part of enum type "CGtype" with expression '0x43f', CType: int. More...
 
static final int CG_FIXED4x3 = 0x440
 Defined as part of enum type "CGtype" with expression '0x440', CType: int. More...
 
static final int CG_FIXED4x4 = 0x441
 Defined as part of enum type "CGtype" with expression '0x441', CType: int. More...
 
static final int CG_HALF1 = 0x442
 Defined as part of enum type "CGtype" with expression '0x442', CType: int. More...
 
static final int CG_FLOAT1 = 0x443
 Defined as part of enum type "CGtype" with expression '0x443', CType: int. More...
 
static final int CG_FIXED1 = 0x444
 Defined as part of enum type "CGtype" with expression '0x444', CType: int. More...
 
static final int CG_INT = 0x445
 Defined as part of enum type "CGtype" with expression '0x445', CType: int. More...
 
static final int CG_INT1 = 0x446
 Defined as part of enum type "CGtype" with expression '0x446', CType: int. More...
 
static final int CG_INT2 = 0x447
 Defined as part of enum type "CGtype" with expression '0x447', CType: int. More...
 
static final int CG_INT3 = 0x448
 Defined as part of enum type "CGtype" with expression '0x448', CType: int. More...
 
static final int CG_INT4 = 0x449
 Defined as part of enum type "CGtype" with expression '0x449', CType: int. More...
 
static final int CG_INT1x1 = 0x44a
 Defined as part of enum type "CGtype" with expression '0x44a', CType: int. More...
 
static final int CG_INT1x2 = 0x44b
 Defined as part of enum type "CGtype" with expression '0x44b', CType: int. More...
 
static final int CG_INT1x3 = 0x44c
 Defined as part of enum type "CGtype" with expression '0x44c', CType: int. More...
 
static final int CG_INT1x4 = 0x44d
 Defined as part of enum type "CGtype" with expression '0x44d', CType: int. More...
 
static final int CG_INT2x1 = 0x44e
 Defined as part of enum type "CGtype" with expression '0x44e', CType: int. More...
 
static final int CG_INT2x2 = 0x44f
 Defined as part of enum type "CGtype" with expression '0x44f', CType: int. More...
 
static final int CG_INT2x3 = 0x450
 Defined as part of enum type "CGtype" with expression '0x450', CType: int. More...
 
static final int CG_INT2x4 = 0x451
 Defined as part of enum type "CGtype" with expression '0x451', CType: int. More...
 
static final int CG_INT3x1 = 0x452
 Defined as part of enum type "CGtype" with expression '0x452', CType: int. More...
 
static final int CG_INT3x2 = 0x453
 Defined as part of enum type "CGtype" with expression '0x453', CType: int. More...
 
static final int CG_INT3x3 = 0x454
 Defined as part of enum type "CGtype" with expression '0x454', CType: int. More...
 
static final int CG_INT3x4 = 0x455
 Defined as part of enum type "CGtype" with expression '0x455', CType: int. More...
 
static final int CG_INT4x1 = 0x456
 Defined as part of enum type "CGtype" with expression '0x456', CType: int. More...
 
static final int CG_INT4x2 = 0x457
 Defined as part of enum type "CGtype" with expression '0x457', CType: int. More...
 
static final int CG_INT4x3 = 0x458
 Defined as part of enum type "CGtype" with expression '0x458', CType: int. More...
 
static final int CG_INT4x4 = 0x459
 Defined as part of enum type "CGtype" with expression '0x459', CType: int. More...
 
static final int CG_BOOL = 0x45a
 Defined as part of enum type "CGtype" with expression '0x45a', CType: int. More...
 
static final int CG_BOOL1 = 0x45b
 Defined as part of enum type "CGtype" with expression '0x45b', CType: int. More...
 
static final int CG_BOOL2 = 0x45c
 Defined as part of enum type "CGtype" with expression '0x45c', CType: int. More...
 
static final int CG_BOOL3 = 0x45d
 Defined as part of enum type "CGtype" with expression '0x45d', CType: int. More...
 
static final int CG_BOOL4 = 0x45e
 Defined as part of enum type "CGtype" with expression '0x45e', CType: int. More...
 
static final int CG_BOOL1x1 = 0x45f
 Defined as part of enum type "CGtype" with expression '0x45f', CType: int. More...
 
static final int CG_BOOL1x2 = 0x460
 Defined as part of enum type "CGtype" with expression '0x460', CType: int. More...
 
static final int CG_BOOL1x3 = 0x461
 Defined as part of enum type "CGtype" with expression '0x461', CType: int. More...
 
static final int CG_BOOL1x4 = 0x462
 Defined as part of enum type "CGtype" with expression '0x462', CType: int. More...
 
static final int CG_BOOL2x1 = 0x463
 Defined as part of enum type "CGtype" with expression '0x463', CType: int. More...
 
static final int CG_BOOL2x2 = 0x464
 Defined as part of enum type "CGtype" with expression '0x464', CType: int. More...
 
static final int CG_BOOL2x3 = 0x465
 Defined as part of enum type "CGtype" with expression '0x465', CType: int. More...
 
static final int CG_BOOL2x4 = 0x466
 Defined as part of enum type "CGtype" with expression '0x466', CType: int. More...
 
static final int CG_BOOL3x1 = 0x467
 Defined as part of enum type "CGtype" with expression '0x467', CType: int. More...
 
static final int CG_BOOL3x2 = 0x468
 Defined as part of enum type "CGtype" with expression '0x468', CType: int. More...
 
static final int CG_BOOL3x3 = 0x469
 Defined as part of enum type "CGtype" with expression '0x469', CType: int. More...
 
static final int CG_BOOL3x4 = 0x46a
 Defined as part of enum type "CGtype" with expression '0x46a', CType: int. More...
 
static final int CG_BOOL4x1 = 0x46b
 Defined as part of enum type "CGtype" with expression '0x46b', CType: int. More...
 
static final int CG_BOOL4x2 = 0x46c
 Defined as part of enum type "CGtype" with expression '0x46c', CType: int. More...
 
static final int CG_BOOL4x3 = 0x46d
 Defined as part of enum type "CGtype" with expression '0x46d', CType: int. More...
 
static final int CG_BOOL4x4 = 0x46e
 Defined as part of enum type "CGtype" with expression '0x46e', CType: int. More...
 
static final int CG_STRING = 0x46f
 Defined as part of enum type "CGtype" with expression '0x46f', CType: int. More...
 
static final int CG_PROGRAM_TYPE = 0x470
 Defined as part of enum type "CGtype" with expression '0x470', CType: int. More...
 
static final int CG_TEXTURE = 0x471
 Defined as part of enum type "CGtype" with expression '0x471', CType: int. More...
 
static final int CG_PROFILE_START = 0x1800
 Defined as part of enum type "CGprofile" with expression '6144', CType: int. More...
 
static final int CG_PROFILE_UNKNOWN = 0x1801
 Defined as part of enum type "CGprofile" with expression '0x1801', CType: int. More...
 
static final int CG_PROFILE_VP20 = 0x1802
 Defined as part of enum type "CGprofile" with expression '6146', CType: int. More...
 
static final int CG_PROFILE_FP20 = 0x1803
 Defined as part of enum type "CGprofile" with expression '6147', CType: int. More...
 
static final int CG_PROFILE_VP30 = 0x1804
 Defined as part of enum type "CGprofile" with expression '6148', CType: int. More...
 
static final int CG_PROFILE_FP30 = 0x1805
 Defined as part of enum type "CGprofile" with expression '6149', CType: int. More...
 
static final int CG_PROFILE_ARBVP1 = 0x1806
 Defined as part of enum type "CGprofile" with expression '6150', CType: int. More...
 
static final int CG_PROFILE_FP40 = 0x1807
 Defined as part of enum type "CGprofile" with expression '6151', CType: int. More...
 
static final int CG_PROFILE_ARBFP1 = 0x1b58
 Defined as part of enum type "CGprofile" with expression '7000', CType: int. More...
 
static final int CG_PROFILE_VP40 = 0x1b59
 Defined as part of enum type "CGprofile" with expression '7001', CType: int. More...
 
static final int CG_PROFILE_VS_1_1 = 0x1809
 Defined as part of enum type "CGprofile" with expression '6153', CType: int. More...
 
static final int CG_PROFILE_VS_2_0 = 0x180a
 Defined as part of enum type "CGprofile" with expression '6154', CType: int. More...
 
static final int CG_PROFILE_VS_2_X = 0x180b
 Defined as part of enum type "CGprofile" with expression '6155', CType: int. More...
 
static final int CG_PROFILE_PS_1_1 = 0x180f
 Defined as part of enum type "CGprofile" with expression '6159', CType: int. More...
 
static final int CG_PROFILE_PS_1_2 = 0x1810
 Defined as part of enum type "CGprofile" with expression '6160', CType: int. More...
 
static final int CG_PROFILE_PS_1_3 = 0x1811
 Defined as part of enum type "CGprofile" with expression '6161', CType: int. More...
 
static final int CG_PROFILE_PS_2_0 = 0x1812
 Defined as part of enum type "CGprofile" with expression '6162', CType: int. More...
 
static final int CG_PROFILE_PS_2_X = 0x1813
 Defined as part of enum type "CGprofile" with expression '6163', CType: int. More...
 
static final int GENERIC = 0x1b5a
 Defined as part of enum type "CGprofile" with expression '7002', CType: int. More...
 
static final int CG_PROFILE_MAX = 0x1bbc
 Defined as part of enum type "CGprofile" with expression '7100', CType: int. More...
 
static final int CG_PARAMETERCLASS_UNKNOWN = 0x0
 Defined as part of enum type "CGparameterclass" with expression '0', CType: int. More...
 
static final int CG_PARAMETERCLASS_SCALAR = 0x1
 Defined as part of enum type "CGparameterclass" with expression '0x1', CType: int. More...
 
static final int CG_PARAMETERCLASS_VECTOR = 0x2
 Defined as part of enum type "CGparameterclass" with expression '0x2', CType: int. More...
 
static final int CG_PARAMETERCLASS_MATRIX = 0x3
 Defined as part of enum type "CGparameterclass" with expression '0x3', CType: int. More...
 
static final int CG_PARAMETERCLASS_STRUCT = 0x4
 Defined as part of enum type "CGparameterclass" with expression '0x4', CType: int. More...
 
static final int CG_PARAMETERCLASS_ARRAY = 0x5
 Defined as part of enum type "CGparameterclass" with expression '0x5', CType: int. More...
 
static final int CG_PARAMETERCLASS_SAMPLER = 0x6
 Defined as part of enum type "CGparameterclass" with expression '0x6', CType: int. More...
 
static final int CG_PARAMETERCLASS_OBJECT = 0x7
 Defined as part of enum type "CGparameterclass" with expression '0x7', CType: int. More...
 
static final int CG_UNKNOWN = 0x1000
 Defined as part of enum type "CGenum" with expression '4096', CType: int. More...
 
static final int CG_IN = 0x1001
 Defined as part of enum type "CGenum" with expression '4097', CType: int. More...
 
static final int CG_OUT = 0x1002
 Defined as part of enum type "CGenum" with expression '4098', CType: int. More...
 
static final int CG_INOUT = 0x1003
 Defined as part of enum type "CGenum" with expression '4099', CType: int. More...
 
static final int CG_MIXED = 0x1004
 Defined as part of enum type "CGenum" with expression '4100', CType: int. More...
 
static final int CG_VARYING = 0x1005
 Defined as part of enum type "CGenum" with expression '4101', CType: int. More...
 
static final int CG_UNIFORM = 0x1006
 Defined as part of enum type "CGenum" with expression '4102', CType: int. More...
 
static final int CG_CONSTANT = 0x1007
 Defined as part of enum type "CGenum" with expression '4103', CType: int. More...
 
static final int CG_PROGRAM_SOURCE = 0x1008
 Defined as part of enum type "CGenum" with expression '4104', CType: int. More...
 
static final int CG_PROGRAM_ENTRY = 0x1009
 Defined as part of enum type "CGenum" with expression '4105', CType: int. More...
 
static final int CG_COMPILED_PROGRAM = 0x100a
 Defined as part of enum type "CGenum" with expression '4106', CType: int. More...
 
static final int CG_PROGRAM_PROFILE = 0x100b
 Defined as part of enum type "CGenum" with expression '4107', CType: int. More...
 
static final int CG_GLOBAL = 0x100c
 Defined as part of enum type "CGenum" with expression '4108', CType: int. More...
 
static final int CG_PROGRAM = 0x100d
 Defined as part of enum type "CGenum" with expression '4109', CType: int. More...
 
static final int CG_DEFAULT = 0x100e
 Defined as part of enum type "CGenum" with expression '4110', CType: int. More...
 
static final int CG_ERROR = 0x100f
 Defined as part of enum type "CGenum" with expression '4111', CType: int. More...
 
static final int CG_SOURCE = 0x1010
 Defined as part of enum type "CGenum" with expression '4112', CType: int. More...
 
static final int CG_OBJECT = 0x1011
 Defined as part of enum type "CGenum" with expression '4113', CType: int. More...
 
static final int CG_COMPILE_MANUAL = 0x1012
 Defined as part of enum type "CGenum" with expression '4114', CType: int. More...
 
static final int CG_COMPILE_IMMEDIATE = 0x1013
 Defined as part of enum type "CGenum" with expression '4115', CType: int. More...
 
static final int CG_COMPILE_LAZY = 0x1014
 Defined as part of enum type "CGenum" with expression '4116', CType: int. More...
 
static final int CG_CURRENT = 0x1015
 Defined as part of enum type "CGenum" with expression '4117', CType: int. More...
 
static final int CG_LITERAL = 0x1016
 Defined as part of enum type "CGenum" with expression '4118', CType: int. More...
 
static final int CG_VERSION = 0x1017
 Defined as part of enum type "CGenum" with expression '4119', CType: int. More...
 
static final int CG_ROW_MAJOR = 0x1018
 Defined as part of enum type "CGenum" with expression '4120', CType: int. More...
 
static final int CG_COLUMN_MAJOR = 0x1019
 Defined as part of enum type "CGenum" with expression '4121', CType: int. More...
 
static final int CG_VERSION_NUM = 0x578
 Define "CG_VERSION_NUM" with expression '1400', CType: int. More...
 

Detailed Description

Definition at line 23 of file CgGL.java.

Member Function Documentation

◆ cgAddStateEnumerant()

static void com.jogamp.opengl.cg.CgGL.cgAddStateEnumerant ( CGstate  arg0,
String  name,
int  value 
)
static

Entry point (through function pointer) to C language function:
void cgAddStateEnumerant(CGstate, const char * name, int value)

Definition at line 4341 of file CgGL.java.

Here is the call graph for this function:

◆ cgCallStateResetCallback()

static boolean com.jogamp.opengl.cg.CgGL.cgCallStateResetCallback ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgCallStateResetCallback(CGstateassignment)

Definition at line 4034 of file CgGL.java.

Here is the call graph for this function:

◆ cgCallStateSetCallback()

static boolean com.jogamp.opengl.cg.CgGL.cgCallStateSetCallback ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgCallStateSetCallback(CGstateassignment)

Definition at line 4008 of file CgGL.java.

Here is the call graph for this function:

◆ cgCallStateValidateCallback()

static boolean com.jogamp.opengl.cg.CgGL.cgCallStateValidateCallback ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgCallStateValidateCallback(CGstateassignment)

Definition at line 4021 of file CgGL.java.

Here is the call graph for this function:

◆ cgCompileProgram()

static void com.jogamp.opengl.cg.CgGL.cgCompileProgram ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
void cgCompileProgram(CGprogram program)

Definition at line 1244 of file CgGL.java.

Here is the call graph for this function:

◆ cgConnectParameter()

static void com.jogamp.opengl.cg.CgGL.cgConnectParameter ( CGparameter  from,
CGparameter  to 
)
static

Entry point (through function pointer) to C language function:
void cgConnectParameter(CGparameter from, CGparameter to)

Definition at line 1423 of file CgGL.java.

Here is the call graph for this function:

◆ cgCopyProgram()

static CGprogram com.jogamp.opengl.cg.CgGL.cgCopyProgram ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
CGprogram cgCopyProgram(CGprogram program)

Definition at line 1154 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateArraySamplerState()

static CGstate com.jogamp.opengl.cg.CgGL.cgCreateArraySamplerState ( CGcontext  arg0,
String  name,
int  arg2,
int  nelems 
)
static

Entry point (through function pointer) to C language function:
CGstate cgCreateArraySamplerState(CGcontext, const char * name, CGtype, int nelems)

Parameters
arg2valid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 4376 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateArrayState()

static CGstate com.jogamp.opengl.cg.CgGL.cgCreateArrayState ( CGcontext  arg0,
String  name,
int  arg2,
int  nelems 
)
static

Entry point (through function pointer) to C language function:
CGstate cgCreateArrayState(CGcontext, const char * name, CGtype, int nelems)

Parameters
arg2valid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 4236 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateContext()

static CGcontext com.jogamp.opengl.cg.CgGL.cgCreateContext ( )
static

Entry point (through function pointer) to C language function:
CGcontext cgCreateContext()

Definition at line 1005 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateEffect()

static CGeffect com.jogamp.opengl.cg.CgGL.cgCreateEffect ( CGcontext  arg0,
String  code,
String[]  args 
)
static

Entry point (through function pointer) to C language function:
CGeffect cgCreateEffect(CGcontext, const char * code, const char * * args)

Definition at line 3589 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateEffectFromFile()

static CGeffect com.jogamp.opengl.cg.CgGL.cgCreateEffectFromFile ( CGcontext  arg0,
String  filename,
String[]  args 
)
static

Entry point (through function pointer) to C language function:
CGeffect cgCreateEffectFromFile(CGcontext, const char * filename, const char * * args)

Definition at line 3605 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgCreateParameter ( CGcontext  ctx,
int  type 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgCreateParameter(CGcontext ctx, CGtype type)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 1332 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateParameterArray()

static CGparameter com.jogamp.opengl.cg.CgGL.cgCreateParameterArray ( CGcontext  ctx,
int  type,
int  length 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgCreateParameterArray(CGcontext ctx, CGtype type, int length)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 1352 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateParameterMultiDimArray() [1/2]

static CGparameter com.jogamp.opengl.cg.CgGL.cgCreateParameterMultiDimArray ( CGcontext  ctx,
int  type,
int  dim,
int[]  lengths,
int  lengths_offset 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgCreateParameterMultiDimArray(CGcontext ctx, CGtype type, int dim, const int * lengths)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 1395 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateParameterMultiDimArray() [2/2]

static CGparameter com.jogamp.opengl.cg.CgGL.cgCreateParameterMultiDimArray ( CGcontext  ctx,
int  type,
int  dim,
IntBuffer  lengths 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgCreateParameterMultiDimArray(CGcontext ctx, CGtype type, int dim, const int * lengths)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE
lengthsa direct or array-backed java.nio.IntBuffer

Definition at line 1373 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateProgram()

static CGprogram com.jogamp.opengl.cg.CgGL.cgCreateProgram ( CGcontext  ctx,
int  program_type,
String  program,
int  profile,
String  entry,
String[]  args 
)
static

Entry point (through function pointer) to C language function:
CGprogram cgCreateProgram(CGcontext ctx, CGenum program_type, const char * program, CGprofile profile, const char * entry, const char * * args)

Parameters
program_typevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 1110 of file CgGL.java.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ cgCreateProgramFromEffect()

static CGprogram com.jogamp.opengl.cg.CgGL.cgCreateProgramFromEffect ( CGeffect  effect,
int  profile,
String  entry,
String[]  args 
)
static

Entry point (through function pointer) to C language function:
CGprogram cgCreateProgramFromEffect(CGeffect effect, CGprofile profile, const char * entry, const char * * args)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 3697 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateProgramFromFile()

static CGprogram com.jogamp.opengl.cg.CgGL.cgCreateProgramFromFile ( CGcontext  ctx,
int  program_type,
String  program_file,
int  profile,
String  entry,
String[]  args 
)
static

Entry point (through function pointer) to C language function:
CGprogram cgCreateProgramFromFile(CGcontext ctx, CGenum program_type, const char * program_file, CGprofile profile, const char * entry, const char * * args)

Parameters
program_typevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 1134 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateProgramFromStream()

static CGprogram com.jogamp.opengl.cg.CgGL.cgCreateProgramFromStream ( CGcontext  ctx,
int  program_type,
java.io.InputStream  stream,
int  profile,
java.lang.String  entry,
java.lang.String[]  args 
) throws java.io.IOException
static

A convenience method which reads all available data from the InputStream and then calls cgCreateProgram.

Definition at line 6600 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateSamplerState()

static CGstate com.jogamp.opengl.cg.CgGL.cgCreateSamplerState ( CGcontext  arg0,
String  name,
int  arg2 
)
static

Entry point (through function pointer) to C language function:
CGstate cgCreateSamplerState(CGcontext, const char * name, CGtype)

Parameters
arg2valid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 4356 of file CgGL.java.

Here is the call graph for this function:

◆ cgCreateState()

static CGstate com.jogamp.opengl.cg.CgGL.cgCreateState ( CGcontext  arg0,
String  name,
int  arg2 
)
static

Entry point (through function pointer) to C language function:
CGstate cgCreateState(CGcontext, const char * name, CGtype)

Parameters
arg2valid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 4216 of file CgGL.java.

Here is the call graph for this function:

◆ cgDestroyContext()

static void com.jogamp.opengl.cg.CgGL.cgDestroyContext ( CGcontext  ctx)
static

Entry point (through function pointer) to C language function:
void cgDestroyContext(CGcontext ctx)

Definition at line 1021 of file CgGL.java.

Here is the call graph for this function:

◆ cgDestroyEffect()

static void com.jogamp.opengl.cg.CgGL.cgDestroyEffect ( CGeffect  arg0)
static

Entry point (through function pointer) to C language function:
void cgDestroyEffect(CGeffect)

Definition at line 3621 of file CgGL.java.

Here is the call graph for this function:

◆ cgDestroyParameter()

static void com.jogamp.opengl.cg.CgGL.cgDestroyParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
void cgDestroyParameter(CGparameter param)

Definition at line 1410 of file CgGL.java.

Here is the call graph for this function:

◆ cgDestroyProgram()

static void com.jogamp.opengl.cg.CgGL.cgDestroyProgram ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
void cgDestroyProgram(CGprogram program)

Definition at line 1170 of file CgGL.java.

Here is the call graph for this function:

◆ cgDisconnectParameter()

static void com.jogamp.opengl.cg.CgGL.cgDisconnectParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
void cgDisconnectParameter(CGparameter param)

Definition at line 1436 of file CgGL.java.

Here is the call graph for this function:

◆ cgEvaluateProgram() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgEvaluateProgram ( CGprogram  arg0,
float[]  arg1,
int  arg1_offset,
int  ncomps,
int  nx,
int  ny,
int  nz 
)
static

Entry point (through function pointer) to C language function:
void cgEvaluateProgram(CGprogram, float * , int ncomps, int nx, int ny, int nz)

Definition at line 4776 of file CgGL.java.

Here is the call graph for this function:

◆ cgEvaluateProgram() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgEvaluateProgram ( CGprogram  arg0,
FloatBuffer  arg1,
int  ncomps,
int  nx,
int  ny,
int  nz 
)
static

Entry point (through function pointer) to C language function:
void cgEvaluateProgram(CGprogram, float * , int ncomps, int nx, int ny, int nz)

Parameters
arg1a direct or array-backed java.nio.FloatBuffer

Definition at line 4761 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetAnnotationName()

static String com.jogamp.opengl.cg.CgGL.cgGetAnnotationName ( CGannotation  arg0)
static

Entry point (through function pointer) to C language function:
const char * cgGetAnnotationName(CGannotation)

Definition at line 4692 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetAnnotationType()

static int com.jogamp.opengl.cg.CgGL.cgGetAnnotationType ( CGannotation  arg0)
static

Entry point (through function pointer) to C language function:
CGtype cgGetAnnotationType(CGannotation)

Definition at line 4705 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetArrayDimension()

static int com.jogamp.opengl.cg.CgGL.cgGetArrayDimension ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetArrayDimension(CGparameter param)

Definition at line 1666 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetArrayParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetArrayParameter ( CGparameter  aparam,
int  index 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetArrayParameter(CGparameter aparam, int index)

Definition at line 1650 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetArraySize()

static int com.jogamp.opengl.cg.CgGL.cgGetArraySize ( CGparameter  param,
int  dimension 
)
static

Entry point (through function pointer) to C language function:
int cgGetArraySize(CGparameter param, int dimension)

Definition at line 1692 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetArrayTotalSize()

static int com.jogamp.opengl.cg.CgGL.cgGetArrayTotalSize ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetArrayTotalSize(CGparameter param)

Definition at line 1705 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetArrayType()

static int com.jogamp.opengl.cg.CgGL.cgGetArrayType ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGtype cgGetArrayType(CGparameter param)

Definition at line 1679 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetAutoCompile()

static int com.jogamp.opengl.cg.CgGL.cgGetAutoCompile ( CGcontext  ctx)
static

Entry point (through function pointer) to C language function:
CGenum cgGetAutoCompile(CGcontext ctx)

Definition at line 1093 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetConnectedParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetConnectedParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetConnectedParameter(CGparameter param)

Definition at line 1449 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetConnectedToParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetConnectedToParameter ( CGparameter  param,
int  index 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetConnectedToParameter(CGparameter param, int index)

Definition at line 1478 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetDependentAnnotationParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetDependentAnnotationParameter ( CGannotation  arg0,
int  index 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetDependentAnnotationParameter(CGannotation, int index)

Definition at line 4744 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetDependentStateAssignmentParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetDependentStateAssignmentParameter ( CGstateassignment  arg0,
int  index 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetDependentStateAssignmentParameter(CGstateassignment, int index)

Definition at line 4166 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetEffectContext()

static CGcontext com.jogamp.opengl.cg.CgGL.cgGetEffectContext ( CGeffect  arg0)
static

Entry point (through function pointer) to C language function:
CGcontext cgGetEffectContext(CGeffect)

Definition at line 3634 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetEffectParameterBySemantic()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetEffectParameterBySemantic ( CGeffect  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetEffectParameterBySemantic(CGeffect, const char * )

Definition at line 4519 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetEnum()

static int com.jogamp.opengl.cg.CgGL.cgGetEnum ( String  enum_string)
static

Entry point (through function pointer) to C language function:
CGenum cgGetEnum(const char * enum_string)

Definition at line 3458 of file CgGL.java.

◆ cgGetEnumString()

static String com.jogamp.opengl.cg.CgGL.cgGetEnumString ( int  en)
static

Entry point (through function pointer) to C language function:
const char * cgGetEnumString(CGenum en)

Parameters
envalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 3443 of file CgGL.java.

◆ cgGetError()

static int com.jogamp.opengl.cg.CgGL.cgGetError ( )
static

Entry point (through function pointer) to C language function:
CGerror cgGetError()

Definition at line 3501 of file CgGL.java.

◆ cgGetErrorString()

static String com.jogamp.opengl.cg.CgGL.cgGetErrorString ( int  error)
static

Entry point (through function pointer) to C language function:
const char * cgGetErrorString(CGerror error)

Parameters
errorvalid values are: CG_NO_ERROR, CG_COMPILER_ERROR, CG_INVALID_PARAMETER_ERROR, CG_INVALID_PROFILE_ERROR, CG_PROGRAM_LOAD_ERROR, CG_PROGRAM_BIND_ERROR, CG_PROGRAM_NOT_LOADED_ERROR, CG_UNSUPPORTED_GL_EXTENSION_ERROR, CG_INVALID_VALUE_TYPE_ERROR, CG_NOT_MATRIX_PARAM_ERROR, CG_INVALID_ENUMERANT_ERROR, CG_NOT_4x4_MATRIX_ERROR, CG_FILE_READ_ERROR, CG_FILE_WRITE_ERROR, CG_NVPARSE_ERROR, CG_MEMORY_ALLOC_ERROR, CG_INVALID_CONTEXT_HANDLE_ERROR, CG_INVALID_PROGRAM_HANDLE_ERROR, CG_INVALID_PARAM_HANDLE_ERROR, CG_UNKNOWN_PROFILE_ERROR, CG_VAR_ARG_ERROR, CG_INVALID_DIMENSION_ERROR, CG_ARRAY_PARAM_ERROR, CG_OUT_OF_ARRAY_BOUNDS_ERROR, CG_CONFLICTING_TYPES_ERROR, CG_CONFLICTING_PARAMETER_TYPES_ERROR, CG_PARAMETER_IS_NOT_SHARED_ERROR, CG_INVALID_PARAMETER_VARIABILITY_ERROR, CG_CANNOT_DESTROY_PARAMETER_ERROR, CG_NOT_ROOT_PARAMETER_ERROR, CG_PARAMETERS_DO_NOT_MATCH_ERROR, CG_IS_NOT_PROGRAM_PARAMETER_ERROR, CG_INVALID_PARAMETER_TYPE_ERROR, CG_PARAMETER_IS_NOT_RESIZABLE_ARRAY_ERROR, CG_INVALID_SIZE_ERROR, CG_BIND_CREATES_CYCLE_ERROR, CG_ARRAY_TYPES_DO_NOT_MATCH_ERROR, CG_ARRAY_DIMENSIONS_DO_NOT_MATCH_ERROR, CG_ARRAY_HAS_WRONG_DIMENSION_ERROR, CG_TYPE_IS_NOT_DEFINED_IN_PROGRAM_ERROR, CG_INVALID_EFFECT_HANDLE_ERROR, CG_INVALID_STATE_HANDLE_ERROR, CG_INVALID_STATE_ASSIGNMENT_HANDLE_ERROR, CG_INVALID_PASS_HANDLE_ERROR, CG_INVALID_ANNOTATION_HANDLE_ERROR, CG_INVALID_TECHNIQUE_HANDLE_ERROR, CG_INVALID_PARAMETER_HANDLE_ERROR, CG_STATE_ASSIGNMENT_TYPE_MISMATCH_ERROR, CG_INVALID_FUNCTION_HANDLE_ERROR, CG_INVALID_TECHNIQUE_ERROR, CG_INVALID_POINTER_ERROR, CG_NOT_ENOUGH_DATA_ERROR, CG_NON_NUMERIC_PARAMETER_ERROR, CG_ARRAY_SIZE_MISMATCH_ERROR

Definition at line 3529 of file CgGL.java.

◆ cgGetFirstDependentParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetFirstDependentParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetFirstDependentParameter(CGparameter param)

Definition at line 1634 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstEffect()

static CGeffect com.jogamp.opengl.cg.CgGL.cgGetFirstEffect ( CGcontext  arg0)
static

Entry point (through function pointer) to C language function:
CGeffect cgGetFirstEffect(CGcontext)

Definition at line 3663 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstEffectParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetFirstEffectParameter ( CGeffect  arg0)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetFirstEffectParameter(CGeffect)

Definition at line 4503 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstError()

static int com.jogamp.opengl.cg.CgGL.cgGetFirstError ( )
static

Entry point (through function pointer) to C language function:
CGerror cgGetFirstError()

Definition at line 3514 of file CgGL.java.

◆ cgGetFirstLeafEffectParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetFirstLeafEffectParameter ( CGeffect  arg0)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetFirstLeafEffectParameter(CGeffect)

Definition at line 4487 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstLeafParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetFirstLeafParameter ( CGprogram  prog,
int  name_space 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetFirstLeafParameter(CGprogram prog, CGenum name_space)

Parameters
name_spacevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 1568 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetFirstParameter ( CGprogram  prog,
int  name_space 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetFirstParameter(CGprogram prog, CGenum name_space)

Parameters
name_spacevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 1532 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstParameterAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetFirstParameterAnnotation ( CGparameter  arg0)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetFirstParameterAnnotation(CGparameter)

Definition at line 4567 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstPass()

static CGpass com.jogamp.opengl.cg.CgGL.cgGetFirstPass ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGpass cgGetFirstPass(CGtechnique)

Definition at line 3831 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstPassAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetFirstPassAnnotation ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetFirstPassAnnotation(CGpass)

Definition at line 4551 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstProgram()

static CGprogram com.jogamp.opengl.cg.CgGL.cgGetFirstProgram ( CGcontext  ctx)
static

Entry point (through function pointer) to C language function:
CGprogram cgGetFirstProgram(CGcontext ctx)

Definition at line 1183 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstProgramAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetFirstProgramAnnotation ( CGprogram  arg0)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetFirstProgramAnnotation(CGprogram)

Definition at line 4583 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstSamplerState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetFirstSamplerState ( CGcontext  arg0)
static

Entry point (through function pointer) to C language function:
CGstate cgGetFirstSamplerState(CGcontext)

Definition at line 4410 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstSamplerStateAssignment()

static CGstateassignment com.jogamp.opengl.cg.CgGL.cgGetFirstSamplerStateAssignment ( CGparameter  arg0)
static

Entry point (through function pointer) to C language function:
CGstateassignment cgGetFirstSamplerStateAssignment(CGparameter)

Definition at line 4426 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetFirstState ( CGcontext  arg0)
static

Entry point (through function pointer) to C language function:
CGstate cgGetFirstState(CGcontext)

Definition at line 4296 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstStateAssignment()

static CGstateassignment com.jogamp.opengl.cg.CgGL.cgGetFirstStateAssignment ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
CGstateassignment cgGetFirstStateAssignment(CGpass)

Definition at line 3947 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstStructParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetFirstStructParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetFirstStructParameter(CGparameter param)

Definition at line 1602 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstTechnique()

static CGtechnique com.jogamp.opengl.cg.CgGL.cgGetFirstTechnique ( CGeffect  arg0)
static

Entry point (through function pointer) to C language function:
CGtechnique cgGetFirstTechnique(CGeffect)

Definition at line 3715 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetFirstTechniqueAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetFirstTechniqueAnnotation ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetFirstTechniqueAnnotation(CGtechnique)

Definition at line 4535 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetLastErrorString() [1/2]

static String com.jogamp.opengl.cg.CgGL.cgGetLastErrorString ( int[]  error,
int  error_offset 
)
static

Entry point (through function pointer) to C language function:
const char * cgGetLastErrorString(CGerror * error)

Definition at line 3560 of file CgGL.java.

◆ cgGetLastErrorString() [2/2]

static String com.jogamp.opengl.cg.CgGL.cgGetLastErrorString ( IntBuffer  error)
static

Entry point (through function pointer) to C language function:
const char * cgGetLastErrorString(CGerror * error)

Parameters
errora direct or array-backed java.nio.IntBuffer

Definition at line 3545 of file CgGL.java.

◆ cgGetLastListing()

static String com.jogamp.opengl.cg.CgGL.cgGetLastListing ( CGcontext  ctx)
static

Entry point (through function pointer) to C language function:
const char * cgGetLastListing(CGcontext ctx)

Definition at line 1047 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterdc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterdc ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdc(CGparameter param, double * matrix)

Definition at line 3221 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterdc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterdc ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdc(CGparameter param, double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 3206 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterdr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterdr ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdr(CGparameter param, double * matrix)

Definition at line 3137 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterdr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterdr ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterdr(CGparameter param, double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 3122 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterfc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterfc ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfc(CGparameter param, float * matrix)

Definition at line 3249 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterfc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterfc ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfc(CGparameter param, float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 3234 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterfr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterfr ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfr(CGparameter param, float * matrix)

Definition at line 3165 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterfr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterfr ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterfr(CGparameter param, float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 3150 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameteric() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameteric ( CGparameter  param,
int[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameteric(CGparameter param, int * matrix)

Definition at line 3193 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameteric() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameteric ( CGparameter  param,
IntBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameteric(CGparameter param, int * matrix)

Parameters
matrixa direct or array-backed java.nio.IntBuffer

Definition at line 3178 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterir() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterir ( CGparameter  param,
int[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterir(CGparameter param, int * matrix)

Definition at line 3109 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetMatrixParameterir() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGetMatrixParameterir ( CGparameter  param,
IntBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGetMatrixParameterir(CGparameter param, int * matrix)

Parameters
matrixa direct or array-backed java.nio.IntBuffer

Definition at line 3094 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedEffectParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetNamedEffectParameter ( CGeffect  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetNamedEffectParameter(CGeffect, const char * )

Definition at line 4471 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetNamedParameter ( CGprogram  prog,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetNamedParameter(CGprogram prog, const char * name)

Definition at line 1494 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedParameterAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetNamedParameterAnnotation ( CGparameter  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetNamedParameterAnnotation(CGparameter, const char * )

Definition at line 4647 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedPass()

static CGpass com.jogamp.opengl.cg.CgGL.cgGetNamedPass ( CGtechnique  arg0,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGpass cgGetNamedPass(CGtechnique, const char * name)

Definition at line 3847 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedPassAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetNamedPassAnnotation ( CGpass  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetNamedPassAnnotation(CGpass, const char * )

Definition at line 4631 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedProgramAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetNamedProgramAnnotation ( CGprogram  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetNamedProgramAnnotation(CGprogram, const char * )

Definition at line 4663 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedProgramParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetNamedProgramParameter ( CGprogram  prog,
int  name_space,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetNamedProgramParameter(CGprogram prog, CGenum name_space, const char * name)

Parameters
name_spacevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 1512 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedSamplerState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetNamedSamplerState ( CGcontext  arg0,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGstate cgGetNamedSamplerState(CGcontext, const char * name)

Definition at line 4394 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedSamplerStateAssignment()

static CGstateassignment com.jogamp.opengl.cg.CgGL.cgGetNamedSamplerStateAssignment ( CGparameter  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGstateassignment cgGetNamedSamplerStateAssignment(CGparameter, const char * )

Definition at line 4442 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetNamedState ( CGcontext  arg0,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGstate cgGetNamedState(CGcontext, const char * name)

Definition at line 4280 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedStateAssignment()

static CGstateassignment com.jogamp.opengl.cg.CgGL.cgGetNamedStateAssignment ( CGpass  arg0,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGstateassignment cgGetNamedStateAssignment(CGpass, const char * name)

Definition at line 3963 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedStructParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetNamedStructParameter ( CGparameter  param,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetNamedStructParameter(CGparameter param, const char * name)

Definition at line 1618 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedTechnique()

static CGtechnique com.jogamp.opengl.cg.CgGL.cgGetNamedTechnique ( CGeffect  arg0,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGtechnique cgGetNamedTechnique(CGeffect, const char * name)

Definition at line 3747 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedTechniqueAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetNamedTechniqueAnnotation ( CGtechnique  arg0,
String  arg1 
)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetNamedTechniqueAnnotation(CGtechnique, const char * )

Definition at line 4615 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNamedUserType()

static int com.jogamp.opengl.cg.CgGL.cgGetNamedUserType ( Buffer  handle,
String  name 
)
static

Entry point (through function pointer) to C language function:
CGtype cgGetNamedUserType(CGhandle handle, const char * name)

Parameters
handlea direct or array-backed java.nio.Buffer

Definition at line 3292 of file CgGL.java.

◆ cgGetNextAnnotation()

static CGannotation com.jogamp.opengl.cg.CgGL.cgGetNextAnnotation ( CGannotation  arg0)
static

Entry point (through function pointer) to C language function:
CGannotation cgGetNextAnnotation(CGannotation)

Definition at line 4599 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextEffect()

static CGeffect com.jogamp.opengl.cg.CgGL.cgGetNextEffect ( CGeffect  arg0)
static

Entry point (through function pointer) to C language function:
CGeffect cgGetNextEffect(CGeffect)

Definition at line 3679 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextLeafParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetNextLeafParameter ( CGparameter  current)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetNextLeafParameter(CGparameter current)

Definition at line 1586 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetNextParameter ( CGparameter  current)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetNextParameter(CGparameter current)

Definition at line 1550 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextPass()

static CGpass com.jogamp.opengl.cg.CgGL.cgGetNextPass ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
CGpass cgGetNextPass(CGpass)

Definition at line 3863 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextProgram()

static CGprogram com.jogamp.opengl.cg.CgGL.cgGetNextProgram ( CGprogram  current)
static

Entry point (through function pointer) to C language function:
CGprogram cgGetNextProgram(CGprogram current)

Definition at line 1199 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetNextState ( CGstate  arg0)
static

Entry point (through function pointer) to C language function:
CGstate cgGetNextState(CGstate)

Definition at line 4312 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextStateAssignment()

static CGstateassignment com.jogamp.opengl.cg.CgGL.cgGetNextStateAssignment ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGstateassignment cgGetNextStateAssignment(CGstateassignment)

Definition at line 3979 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNextTechnique()

static CGtechnique com.jogamp.opengl.cg.CgGL.cgGetNextTechnique ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGtechnique cgGetNextTechnique(CGtechnique)

Definition at line 3731 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNumConnectedToParameters()

static int com.jogamp.opengl.cg.CgGL.cgGetNumConnectedToParameters ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetNumConnectedToParameters(CGparameter param)

Definition at line 1465 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNumDependentAnnotationParameters()

static int com.jogamp.opengl.cg.CgGL.cgGetNumDependentAnnotationParameters ( CGannotation  arg0)
static

Entry point (through function pointer) to C language function:
int cgGetNumDependentAnnotationParameters(CGannotation)

Definition at line 4731 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNumDependentStateAssignmentParameters()

static int com.jogamp.opengl.cg.CgGL.cgGetNumDependentStateAssignmentParameters ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
int cgGetNumDependentStateAssignmentParameters(CGstateassignment)

Definition at line 4153 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetNumParentTypes()

static int com.jogamp.opengl.cg.CgGL.cgGetNumParentTypes ( int  type)
static

Entry point (through function pointer) to C language function:
int cgGetNumParentTypes(CGtype type)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 3341 of file CgGL.java.

◆ cgGetNumUserTypes()

static int com.jogamp.opengl.cg.CgGL.cgGetNumUserTypes ( Buffer  handle)
static

Entry point (through function pointer) to C language function:
int cgGetNumUserTypes(CGhandle handle)

Parameters
handlea direct or array-backed java.nio.Buffer

Definition at line 3308 of file CgGL.java.

◆ cgGetParameterBaseResource()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterBaseResource ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGresource cgGetParameterBaseResource(CGparameter param)

Definition at line 1921 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterBaseType()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterBaseType ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGtype cgGetParameterBaseType(CGparameter param)

Definition at line 1830 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterClass()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterClass ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGparameterclass cgGetParameterClass(CGparameter param)

Definition at line 1843 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterColumns()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterColumns ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetParameterColumns(CGparameter param)

Definition at line 1869 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterContext()

static CGcontext com.jogamp.opengl.cg.CgGL.cgGetParameterContext ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGcontext cgGetParameterContext(CGparameter param)

Definition at line 1775 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterDirection()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterDirection ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGenum cgGetParameterDirection(CGparameter param)

Definition at line 1960 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterIndex()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterIndex ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetParameterIndex(CGparameter param)

Definition at line 2390 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterName()

static String com.jogamp.opengl.cg.CgGL.cgGetParameterName ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
const char * cgGetParameterName(CGparameter param)

Definition at line 1804 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterNamedType()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterNamedType ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGtype cgGetParameterNamedType(CGparameter param)

Definition at line 1882 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterOrdinalNumber()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterOrdinalNumber ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetParameterOrdinalNumber(CGparameter param)

Definition at line 2364 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterProgram()

static CGprogram com.jogamp.opengl.cg.CgGL.cgGetParameterProgram ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGprogram cgGetParameterProgram(CGparameter param)

Definition at line 1759 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterResource()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterResource ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGresource cgGetParameterResource(CGparameter param)

Definition at line 1908 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterResourceIndex()

static long com.jogamp.opengl.cg.CgGL.cgGetParameterResourceIndex ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
unsigned long cgGetParameterResourceIndex(CGparameter param)

Definition at line 1934 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterRows()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterRows ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
int cgGetParameterRows(CGparameter param)

Definition at line 1856 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterSemantic()

static String com.jogamp.opengl.cg.CgGL.cgGetParameterSemantic ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
const char * cgGetParameterSemantic(CGparameter param)

Definition at line 1895 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterType()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterType ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGtype cgGetParameterType(CGparameter param)

Definition at line 1817 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuedc() [1/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuedc ( CGparameter  param,
int  n,
double[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuedc(CGparameter param, int n, double * vals)

Definition at line 2214 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuedc() [2/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuedc ( CGparameter  param,
int  n,
DoubleBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuedc(CGparameter param, int n, double * vals)

Parameters
valsa direct or array-backed java.nio.DoubleBuffer

Definition at line 2199 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuedr() [1/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuedr ( CGparameter  param,
int  n,
double[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuedr(CGparameter param, int n, double * vals)

Definition at line 2186 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuedr() [2/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuedr ( CGparameter  param,
int  n,
DoubleBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuedr(CGparameter param, int n, double * vals)

Parameters
valsa direct or array-backed java.nio.DoubleBuffer

Definition at line 2171 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuefc() [1/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuefc ( CGparameter  param,
int  n,
float[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuefc(CGparameter param, int n, float * vals)

Definition at line 2270 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuefc() [2/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuefc ( CGparameter  param,
int  n,
FloatBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuefc(CGparameter param, int n, float * vals)

Parameters
valsa direct or array-backed java.nio.FloatBuffer

Definition at line 2255 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuefr() [1/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuefr ( CGparameter  param,
int  n,
float[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuefr(CGparameter param, int n, float * vals)

Definition at line 2242 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValuefr() [2/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValuefr ( CGparameter  param,
int  n,
FloatBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValuefr(CGparameter param, int n, float * vals)

Parameters
valsa direct or array-backed java.nio.FloatBuffer

Definition at line 2227 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValueic() [1/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValueic ( CGparameter  param,
int  n,
int[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValueic(CGparameter param, int n, int * vals)

Definition at line 2326 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValueic() [2/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValueic ( CGparameter  param,
int  n,
IntBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValueic(CGparameter param, int n, int * vals)

Parameters
valsa direct or array-backed java.nio.IntBuffer

Definition at line 2311 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValueir() [1/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValueir ( CGparameter  param,
int  n,
int[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValueir(CGparameter param, int n, int * vals)

Definition at line 2298 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterValueir() [2/2]

static int com.jogamp.opengl.cg.CgGL.cgGetParameterValueir ( CGparameter  param,
int  n,
IntBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
int cgGetParameterValueir(CGparameter param, int n, int * vals)

Parameters
valsa direct or array-backed java.nio.IntBuffer

Definition at line 2283 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParameterVariability()

static int com.jogamp.opengl.cg.CgGL.cgGetParameterVariability ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGenum cgGetParameterVariability(CGparameter param)

Definition at line 1947 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetParentType()

static int com.jogamp.opengl.cg.CgGL.cgGetParentType ( int  type,
int  index 
)
static

Entry point (through function pointer) to C language function:
CGtype cgGetParentType(CGtype type, int index)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 3358 of file CgGL.java.

◆ cgGetPassName()

static String com.jogamp.opengl.cg.CgGL.cgGetPassName ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
const char * cgGetPassName(CGpass)

Definition at line 3892 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetPassTechnique()

static CGtechnique com.jogamp.opengl.cg.CgGL.cgGetPassTechnique ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
CGtechnique cgGetPassTechnique(CGpass)

Definition at line 3905 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetProfile()

static int com.jogamp.opengl.cg.CgGL.cgGetProfile ( String  profile_string)
static

Entry point (through function pointer) to C language function:
CGprofile cgGetProfile(const char * profile_string)

Definition at line 3488 of file CgGL.java.

◆ cgGetProfileString()

static String com.jogamp.opengl.cg.CgGL.cgGetProfileString ( int  profile)
static

Entry point (through function pointer) to C language function:
const char * cgGetProfileString(CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 3473 of file CgGL.java.

◆ cgGetProgramContext()

static CGcontext com.jogamp.opengl.cg.CgGL.cgGetProgramContext ( CGprogram  prog)
static

Entry point (through function pointer) to C language function:
CGcontext cgGetProgramContext(CGprogram prog)

Definition at line 1215 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetProgramProfile()

static int com.jogamp.opengl.cg.CgGL.cgGetProgramProfile ( CGprogram  prog)
static

Entry point (through function pointer) to C language function:
CGprofile cgGetProgramProfile(CGprogram prog)

Definition at line 1287 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetProgramStateAssignmentValue()

static CGprogram com.jogamp.opengl.cg.CgGL.cgGetProgramStateAssignmentValue ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGprogram cgGetProgramStateAssignmentValue(CGstateassignment)

Definition at line 4092 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetProgramString()

static String com.jogamp.opengl.cg.CgGL.cgGetProgramString ( CGprogram  prog,
int  pname 
)
static

Entry point (through function pointer) to C language function:
const char * cgGetProgramString(CGprogram prog, CGenum pname)

Parameters
pnamevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 1272 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetResource()

static int com.jogamp.opengl.cg.CgGL.cgGetResource ( String  resource_string)
static

Entry point (through function pointer) to C language function:
CGresource cgGetResource(const char * resource_string)

Definition at line 3428 of file CgGL.java.

◆ cgGetResourceString()

static String com.jogamp.opengl.cg.CgGL.cgGetResourceString ( int  resource)
static

Entry point (through function pointer) to C language function:
const char * cgGetResourceString(CGresource resource)

Parameters
resourcevalid values are: CG_TEXUNIT0, CG_TEXUNIT1, CG_TEXUNIT2, CG_TEXUNIT3, CG_TEXUNIT4, CG_TEXUNIT5, CG_TEXUNIT6, CG_TEXUNIT7, CG_TEXUNIT8, CG_TEXUNIT9, CG_TEXUNIT10, CG_TEXUNIT11, CG_TEXUNIT12, CG_TEXUNIT13, CG_TEXUNIT14, CG_TEXUNIT15, CG_ATTR0, CG_ATTR1, CG_ATTR2, CG_ATTR3, CG_ATTR4, CG_ATTR5, CG_ATTR6, CG_ATTR7, CG_ATTR8, CG_ATTR9, CG_ATTR10, CG_ATTR11, CG_ATTR12, CG_ATTR13, CG_ATTR14, CG_ATTR15, CG_C, CG_TEX0, CG_TEX1, CG_TEX2, CG_TEX3, CG_TEX4, CG_TEX5, CG_TEX6, CG_TEX7, CG_HPOS, CG_COL0, CG_COL1, CG_COL2, CG_COL3, CG_PSIZ, CG_WPOS, CG_POSITION0, CG_POSITION1, CG_POSITION2, CG_POSITION3, CG_POSITION4, CG_POSITION5, CG_POSITION6, CG_POSITION7, CG_POSITION8, CG_POSITION9, CG_POSITION10, CG_POSITION11, CG_POSITION12, CG_POSITION13, CG_POSITION14, CG_POSITION15, CG_DIFFUSE0, CG_TANGENT0, CG_TANGENT1, CG_TANGENT2, CG_TANGENT3, CG_TANGENT4, CG_TANGENT5, CG_TANGENT6, CG_TANGENT7, CG_TANGENT8, CG_TANGENT9, CG_TANGENT10, CG_TANGENT11, CG_TANGENT12, CG_TANGENT13, CG_TANGENT14, CG_TANGENT15, CG_SPECULAR0, CG_BLENDINDICES0, CG_BLENDINDICES1, CG_BLENDINDICES2, CG_BLENDINDICES3, CG_BLENDINDICES4, CG_BLENDINDICES5, CG_BLENDINDICES6, CG_BLENDINDICES7, CG_BLENDINDICES8, CG_BLENDINDICES9, CG_BLENDINDICES10, CG_BLENDINDICES11, CG_BLENDINDICES12, CG_BLENDINDICES13, CG_BLENDINDICES14, CG_BLENDINDICES15, CG_COLOR0, CG_COLOR1, CG_COLOR2, CG_COLOR3, CG_COLOR4, CG_COLOR5, CG_COLOR6, CG_COLOR7, CG_COLOR8, CG_COLOR9, CG_COLOR10, CG_COLOR11, CG_COLOR12, CG_COLOR13, CG_COLOR14, CG_COLOR15, CG_PSIZE0, CG_PSIZE1, CG_PSIZE2, CG_PSIZE3, CG_PSIZE4, CG_PSIZE5, CG_PSIZE6, CG_PSIZE7, CG_PSIZE8, CG_PSIZE9, CG_PSIZE10, CG_PSIZE11, CG_PSIZE12, CG_PSIZE13, CG_PSIZE14, CG_PSIZE15, CG_BINORMAL0, CG_BINORMAL1, CG_BINORMAL2, CG_BINORMAL3, CG_BINORMAL4, CG_BINORMAL5, CG_BINORMAL6, CG_BINORMAL7, CG_BINORMAL8, CG_BINORMAL9, CG_BINORMAL10, CG_BINORMAL11, CG_BINORMAL12, CG_BINORMAL13, CG_BINORMAL14, CG_BINORMAL15, CG_FOG0, CG_FOG1, CG_FOG2, CG_FOG3, CG_FOG4, CG_FOG5, CG_FOG6, CG_FOG7, CG_FOG8, CG_FOG9, CG_FOG10, CG_FOG11, CG_FOG12, CG_FOG13, CG_FOG14, CG_FOG15, CG_DEPTH0, CG_DEPTH1, CG_DEPTH2, CG_DEPTH3, CG_DEPTH4, CG_DEPTH5, CG_DEPTH6, CG_DEPTH7, CG_DEPTH8, CG_DEPTH9, CG_DEPTH10, CG_DEPTH11, CG_DEPTH12, CG_DEPTH13, CG_DEPTH14, CG_DEPTH15, CG_SAMPLE0, CG_SAMPLE1, CG_SAMPLE2, CG_SAMPLE3, CG_SAMPLE4, CG_SAMPLE5, CG_SAMPLE6, CG_SAMPLE7, CG_SAMPLE8, CG_SAMPLE9, CG_SAMPLE10, CG_SAMPLE11, CG_SAMPLE12, CG_SAMPLE13, CG_SAMPLE14, CG_SAMPLE15, CG_BLENDWEIGHT0, CG_BLENDWEIGHT1, CG_BLENDWEIGHT2, CG_BLENDWEIGHT3, CG_BLENDWEIGHT4, CG_BLENDWEIGHT5, CG_BLENDWEIGHT6, CG_BLENDWEIGHT7, CG_BLENDWEIGHT8, CG_BLENDWEIGHT9, CG_BLENDWEIGHT10, CG_BLENDWEIGHT11, CG_BLENDWEIGHT12, CG_BLENDWEIGHT13, CG_BLENDWEIGHT14, CG_BLENDWEIGHT15, CG_NORMAL0, CG_NORMAL1, CG_NORMAL2, CG_NORMAL3, CG_NORMAL4, CG_NORMAL5, CG_NORMAL6, CG_NORMAL7, CG_NORMAL8, CG_NORMAL9, CG_NORMAL10, CG_NORMAL11, CG_NORMAL12, CG_NORMAL13, CG_NORMAL14, CG_NORMAL15, CG_FOGCOORD, CG_TEXCOORD0, CG_TEXCOORD1, CG_TEXCOORD2, CG_TEXCOORD3, CG_TEXCOORD4, CG_TEXCOORD5, CG_TEXCOORD6, CG_TEXCOORD7, CG_TEXCOORD8, CG_TEXCOORD9, CG_TEXCOORD10, CG_TEXCOORD11, CG_TEXCOORD12, CG_TEXCOORD13, CG_TEXCOORD14, CG_TEXCOORD15, CG_COMBINER_CONST0, CG_COMBINER_CONST1, CG_COMBINER_STAGE_CONST0, CG_COMBINER_STAGE_CONST1, CG_OFFSET_TEXTURE_MATRIX, CG_OFFSET_TEXTURE_SCALE, CG_OFFSET_TEXTURE_BIAS, CG_CONST_EYE, CG_TESSFACTOR, CG_UNDEFINED

Definition at line 3413 of file CgGL.java.

◆ cgGetSamplerStateAssignmentParameter()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetSamplerStateAssignmentParameter ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetSamplerStateAssignmentParameter(CGstateassignment)

Definition at line 4063 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetSamplerStateAssignmentState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetSamplerStateAssignmentState ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGstate cgGetSamplerStateAssignmentState(CGstateassignment)

Definition at line 4198 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetSamplerStateAssignmentValue()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetSamplerStateAssignmentValue ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetSamplerStateAssignmentValue(CGstateassignment)

Definition at line 4124 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStateAssignmentIndex()

static int com.jogamp.opengl.cg.CgGL.cgGetStateAssignmentIndex ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
int cgGetStateAssignmentIndex(CGstateassignment)

Definition at line 4140 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStateAssignmentPass()

static CGpass com.jogamp.opengl.cg.CgGL.cgGetStateAssignmentPass ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGpass cgGetStateAssignmentPass(CGstateassignment)

Definition at line 4047 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStateAssignmentState()

static CGstate com.jogamp.opengl.cg.CgGL.cgGetStateAssignmentState ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGstate cgGetStateAssignmentState(CGstateassignment)

Definition at line 4182 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStateName()

static String com.jogamp.opengl.cg.CgGL.cgGetStateName ( CGstate  arg0)
static

Entry point (through function pointer) to C language function:
const char * cgGetStateName(CGstate)

Definition at line 4267 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStateType()

static int com.jogamp.opengl.cg.CgGL.cgGetStateType ( CGstate  arg0)
static

Entry point (through function pointer) to C language function:
CGtype cgGetStateType(CGstate)

Definition at line 4254 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetString()

static String com.jogamp.opengl.cg.CgGL.cgGetString ( int  sname)
static

Entry point (through function pointer) to C language function:
const char * cgGetString(CGenum sname)

Parameters
snamevalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 3574 of file CgGL.java.

◆ cgGetStringAnnotationValue()

static String com.jogamp.opengl.cg.CgGL.cgGetStringAnnotationValue ( CGannotation  arg0)
static

Entry point (through function pointer) to C language function:
const char * cgGetStringAnnotationValue(CGannotation)

Definition at line 4718 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStringParameterValue()

static String com.jogamp.opengl.cg.CgGL.cgGetStringParameterValue ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
const char * cgGetStringParameterValue(CGparameter param)

Definition at line 2338 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetStringStateAssignmentValue()

static String com.jogamp.opengl.cg.CgGL.cgGetStringStateAssignmentValue ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
const char * cgGetStringStateAssignmentValue(CGstateassignment)

Definition at line 4079 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetTechniqueEffect()

static CGeffect com.jogamp.opengl.cg.CgGL.cgGetTechniqueEffect ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGeffect cgGetTechniqueEffect(CGtechnique)

Definition at line 3815 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetTechniqueName()

static String com.jogamp.opengl.cg.CgGL.cgGetTechniqueName ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
const char * cgGetTechniqueName(CGtechnique)

Definition at line 3763 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetTextureStateAssignmentValue()

static CGparameter com.jogamp.opengl.cg.CgGL.cgGetTextureStateAssignmentValue ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGparameter cgGetTextureStateAssignmentValue(CGstateassignment)

Definition at line 4108 of file CgGL.java.

Here is the call graph for this function:

◆ cgGetType()

static int com.jogamp.opengl.cg.CgGL.cgGetType ( String  type_string)
static

Entry point (through function pointer) to C language function:
CGtype cgGetType(const char * type_string)

Definition at line 3278 of file CgGL.java.

◆ cgGetTypeString()

static String com.jogamp.opengl.cg.CgGL.cgGetTypeString ( int  type)
static

Entry point (through function pointer) to C language function:
const char * cgGetTypeString(CGtype type)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 3263 of file CgGL.java.

◆ cgGetUserType()

static int com.jogamp.opengl.cg.CgGL.cgGetUserType ( Buffer  handle,
int  index 
)
static

Entry point (through function pointer) to C language function:
CGtype cgGetUserType(CGhandle handle, int index)

Parameters
handlea direct or array-backed java.nio.Buffer

Definition at line 3324 of file CgGL.java.

◆ cgGLBindProgram()

static void com.jogamp.opengl.cg.CgGL.cgGLBindProgram ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
void cgGLBindProgram(CGprogram program)

Definition at line 4899 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLDisableClientState()

static void com.jogamp.opengl.cg.CgGL.cgGLDisableClientState ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
void cgGLDisableClientState(CGparameter param)

Definition at line 5972 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLDisableProfile()

static void com.jogamp.opengl.cg.CgGL.cgGLDisableProfile ( int  profile)
static

Entry point (through function pointer) to C language function:
void cgGLDisableProfile(CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 4824 of file CgGL.java.

◆ cgGLDisableTextureParameter()

static void com.jogamp.opengl.cg.CgGL.cgGLDisableTextureParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
void cgGLDisableTextureParameter(CGparameter param)

Definition at line 6493 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLEnableClientState()

static void com.jogamp.opengl.cg.CgGL.cgGLEnableClientState ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
void cgGLEnableClientState(CGparameter param)

Definition at line 5959 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLEnableProfile()

static void com.jogamp.opengl.cg.CgGL.cgGLEnableProfile ( int  profile)
static

Entry point (through function pointer) to C language function:
void cgGLEnableProfile(CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 4807 of file CgGL.java.

◆ cgGLEnableTextureParameter()

static void com.jogamp.opengl.cg.CgGL.cgGLEnableTextureParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
void cgGLEnableTextureParameter(CGparameter param)

Definition at line 6480 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetLatestProfile()

static int com.jogamp.opengl.cg.CgGL.cgGLGetLatestProfile ( int  profile_type)
static

Entry point (through function pointer) to C language function:
CGprofile cgGLGetLatestProfile(CGGLenum profile_type)

Parameters
profile_typevalid values are: CG_GL_MATRIX_IDENTITY, CG_GL_MATRIX_TRANSPOSE, CG_GL_MATRIX_INVERSE, CG_GL_MATRIX_INVERSE_TRANSPOSE, CG_GL_MODELVIEW_MATRIX, CG_GL_PROJECTION_MATRIX, CG_GL_TEXTURE_MATRIX, CG_GL_MODELVIEW_PROJECTION_MATRIX, CG_GL_VERTEX, CG_GL_FRAGMENT

Definition at line 4841 of file CgGL.java.

◆ cgGLGetManageTextureParameters()

static boolean com.jogamp.opengl.cg.CgGL.cgGLGetManageTextureParameters ( CGcontext  ctx)
static

Entry point (through function pointer) to C language function:
CGbool cgGLGetManageTextureParameters(CGcontext ctx)

Definition at line 6532 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArraydc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArraydc ( CGparameter  param,
long  offset,
long  nelements,
double[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArraydc(CGparameter param, long offset, long nelements, double * matrices)

Definition at line 6414 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArraydc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArraydc ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArraydc(CGparameter param, long offset, long nelements, double * matrices)

Parameters
matricesa direct or array-backed java.nio.DoubleBuffer

Definition at line 6399 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArraydr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArraydr ( CGparameter  param,
long  offset,
long  nelements,
double[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArraydr(CGparameter param, long offset, long nelements, double * matrices)

Definition at line 6442 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArraydr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArraydr ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArraydr(CGparameter param, long offset, long nelements, double * matrices)

Parameters
matricesa direct or array-backed java.nio.DoubleBuffer

Definition at line 6427 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArrayfc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArrayfc ( CGparameter  param,
long  offset,
long  nelements,
float[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, float * matrices)

Definition at line 6358 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArrayfc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArrayfc ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, float * matrices)

Parameters
matricesa direct or array-backed java.nio.FloatBuffer

Definition at line 6343 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArrayfr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArrayfr ( CGparameter  param,
long  offset,
long  nelements,
float[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, float * matrices)

Definition at line 6386 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterArrayfr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterArrayfr ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, float * matrices)

Parameters
matricesa direct or array-backed java.nio.FloatBuffer

Definition at line 6371 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterdc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterdc ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdc(CGparameter param, double * matrix)

Definition at line 6169 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterdc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterdc ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdc(CGparameter param, double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 6154 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterdr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterdr ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdr(CGparameter param, double * matrix)

Definition at line 6113 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterdr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterdr ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterdr(CGparameter param, double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 6098 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterfc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterfc ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfc(CGparameter param, float * matrix)

Definition at line 6197 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterfc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterfc ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfc(CGparameter param, float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 6182 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterfr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterfr ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfr(CGparameter param, float * matrix)

Definition at line 6141 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetMatrixParameterfr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetMatrixParameterfr ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetMatrixParameterfr(CGparameter param, float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 6126 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter1d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter1d ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter1d(CGparameter param, double * v)

Definition at line 5398 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter1d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter1d ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter1d(CGparameter param, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5383 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter1f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter1f ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter1f(CGparameter param, float * v)

Definition at line 5286 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter1f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter1f ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter1f(CGparameter param, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5271 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter2d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter2d ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter2d(CGparameter param, double * v)

Definition at line 5426 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter2d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter2d ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter2d(CGparameter param, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5411 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter2f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter2f ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter2f(CGparameter param, float * v)

Definition at line 5314 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter2f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter2f ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter2f(CGparameter param, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5299 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter3d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter3d ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter3d(CGparameter param, double * v)

Definition at line 5454 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter3d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter3d ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter3d(CGparameter param, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5439 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter3f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter3f ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter3f(CGparameter param, float * v)

Definition at line 5342 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter3f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter3f ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter3f(CGparameter param, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5327 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter4d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter4d ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter4d(CGparameter param, double * v)

Definition at line 5482 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter4d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter4d ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter4d(CGparameter param, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5467 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter4f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter4f ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter4f(CGparameter param, float * v)

Definition at line 5370 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameter4f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameter4f ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameter4f(CGparameter param, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5355 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray1d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray1d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray1d(CGparameter param, long offset, long nelements, double * v)

Definition at line 5846 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray1d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray1d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray1d(CGparameter param, long offset, long nelements, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5831 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray1f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray1f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray1f(CGparameter param, long offset, long nelements, float * v)

Definition at line 5734 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray1f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray1f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray1f(CGparameter param, long offset, long nelements, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5719 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray2d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray2d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray2d(CGparameter param, long offset, long nelements, double * v)

Definition at line 5874 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray2d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray2d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray2d(CGparameter param, long offset, long nelements, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5859 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray2f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray2f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray2f(CGparameter param, long offset, long nelements, float * v)

Definition at line 5762 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray2f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray2f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray2f(CGparameter param, long offset, long nelements, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5747 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray3d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray3d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray3d(CGparameter param, long offset, long nelements, double * v)

Definition at line 5902 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray3d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray3d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray3d(CGparameter param, long offset, long nelements, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5887 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray3f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray3f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray3f(CGparameter param, long offset, long nelements, float * v)

Definition at line 5790 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray3f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray3f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray3f(CGparameter param, long offset, long nelements, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5775 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray4d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray4d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray4d(CGparameter param, long offset, long nelements, double * v)

Definition at line 5930 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray4d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray4d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray4d(CGparameter param, long offset, long nelements, double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5915 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray4f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray4f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray4f(CGparameter param, long offset, long nelements, float * v)

Definition at line 5818 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetParameterArray4f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLGetParameterArray4f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLGetParameterArray4f(CGparameter param, long offset, long nelements, float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5803 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetProgramID()

static int com.jogamp.opengl.cg.CgGL.cgGLGetProgramID ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
GLuint cgGLGetProgramID(CGprogram program)

Definition at line 4929 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetTextureEnum()

static int com.jogamp.opengl.cg.CgGL.cgGLGetTextureEnum ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
GLenum cgGLGetTextureEnum(CGparameter param)

Definition at line 6506 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLGetTextureParameter()

static int com.jogamp.opengl.cg.CgGL.cgGLGetTextureParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
GLuint cgGLGetTextureParameter(CGparameter param)

Definition at line 6467 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLIsProfileSupported()

static boolean com.jogamp.opengl.cg.CgGL.cgGLIsProfileSupported ( int  profile)
static

Entry point (through function pointer) to C language function:
CGbool cgGLIsProfileSupported(CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 4790 of file CgGL.java.

◆ cgGLIsProgramLoaded()

static boolean com.jogamp.opengl.cg.CgGL.cgGLIsProgramLoaded ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
CGbool cgGLIsProgramLoaded(CGprogram program)

Definition at line 4886 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLLoadProgram()

static void com.jogamp.opengl.cg.CgGL.cgGLLoadProgram ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
void cgGLLoadProgram(CGprogram program)

Definition at line 4873 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLRegisterStates()

static void com.jogamp.opengl.cg.CgGL.cgGLRegisterStates ( CGcontext  arg0)
static

Entry point (through function pointer) to C language function:
void cgGLRegisterStates(CGcontext)

Definition at line 6558 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetManageTextureParameters()

static void com.jogamp.opengl.cg.CgGL.cgGLSetManageTextureParameters ( CGcontext  ctx,
boolean  flag 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetManageTextureParameters(CGcontext ctx, CGbool flag)

Definition at line 6519 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArraydc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArraydc ( CGparameter  param,
long  offset,
long  nelements,
double[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArraydc(CGparameter param, long offset, long nelements, const double * matrices)

Definition at line 6302 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArraydc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArraydc ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArraydc(CGparameter param, long offset, long nelements, const double * matrices)

Parameters
matricesa direct or array-backed java.nio.DoubleBuffer

Definition at line 6287 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArraydr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArraydr ( CGparameter  param,
long  offset,
long  nelements,
double[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArraydr(CGparameter param, long offset, long nelements, const double * matrices)

Definition at line 6330 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArraydr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArraydr ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArraydr(CGparameter param, long offset, long nelements, const double * matrices)

Parameters
matricesa direct or array-backed java.nio.DoubleBuffer

Definition at line 6315 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArrayfc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArrayfc ( CGparameter  param,
long  offset,
long  nelements,
float[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, const float * matrices)

Definition at line 6246 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArrayfc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArrayfc ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArrayfc(CGparameter param, long offset, long nelements, const float * matrices)

Parameters
matricesa direct or array-backed java.nio.FloatBuffer

Definition at line 6231 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArrayfr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArrayfr ( CGparameter  param,
long  offset,
long  nelements,
float[]  matrices,
int  matrices_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, const float * matrices)

Definition at line 6274 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterArrayfr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterArrayfr ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  matrices 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterArrayfr(CGparameter param, long offset, long nelements, const float * matrices)

Parameters
matricesa direct or array-backed java.nio.FloatBuffer

Definition at line 6259 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterdc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterdc ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdc(CGparameter param, const double * matrix)

Definition at line 6057 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterdc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterdc ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdc(CGparameter param, const double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 6042 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterdr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterdr ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdr(CGparameter param, const double * matrix)

Definition at line 6001 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterdr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterdr ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterdr(CGparameter param, const double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 5986 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterfc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterfc ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfc(CGparameter param, const float * matrix)

Definition at line 6085 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterfc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterfc ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfc(CGparameter param, const float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 6070 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterfr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterfr ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfr(CGparameter param, const float * matrix)

Definition at line 6029 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetMatrixParameterfr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetMatrixParameterfr ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetMatrixParameterfr(CGparameter param, const float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 6014 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetOptimalOptions()

static void com.jogamp.opengl.cg.CgGL.cgGLSetOptimalOptions ( int  profile)
static

Entry point (through function pointer) to C language function:
void cgGLSetOptimalOptions(CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 4858 of file CgGL.java.

◆ cgGLSetParameter1d()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter1d ( CGparameter  param,
double  x 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter1d(CGparameter param, double x)

Definition at line 5106 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter1dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter1dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter1dv(CGparameter param, const double * v)

Definition at line 5174 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter1dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter1dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter1dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5159 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter1f()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter1f ( CGparameter  param,
float  x 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter1f(CGparameter param, float x)

Definition at line 4942 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter1fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter1fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter1fv(CGparameter param, const float * v)

Definition at line 5010 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter1fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter1fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter1fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 4995 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter2d()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter2d ( CGparameter  param,
double  x,
double  y 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter2d(CGparameter param, double x, double y)

Definition at line 5119 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter2dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter2dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter2dv(CGparameter param, const double * v)

Definition at line 5202 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter2dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter2dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter2dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5187 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter2f()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter2f ( CGparameter  param,
float  x,
float  y 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter2f(CGparameter param, float x, float y)

Definition at line 4955 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter2fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter2fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter2fv(CGparameter param, const float * v)

Definition at line 5038 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter2fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter2fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter2fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5023 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter3d()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter3d ( CGparameter  param,
double  x,
double  y,
double  z 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter3d(CGparameter param, double x, double y, double z)

Definition at line 5132 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter3dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter3dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter3dv(CGparameter param, const double * v)

Definition at line 5230 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter3dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter3dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter3dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5215 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter3f()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter3f ( CGparameter  param,
float  x,
float  y,
float  z 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter3f(CGparameter param, float x, float y, float z)

Definition at line 4968 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter3fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter3fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter3fv(CGparameter param, const float * v)

Definition at line 5066 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter3fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter3fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter3fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5051 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter4d()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter4d ( CGparameter  param,
double  x,
double  y,
double  z,
double  w 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter4d(CGparameter param, double x, double y, double z, double w)

Definition at line 5145 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter4dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter4dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter4dv(CGparameter param, const double * v)

Definition at line 5258 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter4dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter4dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter4dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5243 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter4f()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter4f ( CGparameter  param,
float  x,
float  y,
float  z,
float  w 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter4f(CGparameter param, float x, float y, float z, float w)

Definition at line 4981 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter4fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter4fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter4fv(CGparameter param, const float * v)

Definition at line 5094 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameter4fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameter4fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameter4fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5079 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray1d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray1d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray1d(CGparameter param, long offset, long nelements, const double * v)

Definition at line 5622 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray1d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray1d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray1d(CGparameter param, long offset, long nelements, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5607 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray1f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray1f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray1f(CGparameter param, long offset, long nelements, const float * v)

Definition at line 5510 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray1f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray1f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray1f(CGparameter param, long offset, long nelements, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5495 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray2d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray2d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray2d(CGparameter param, long offset, long nelements, const double * v)

Definition at line 5650 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray2d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray2d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray2d(CGparameter param, long offset, long nelements, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5635 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray2f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray2f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray2f(CGparameter param, long offset, long nelements, const float * v)

Definition at line 5538 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray2f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray2f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray2f(CGparameter param, long offset, long nelements, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5523 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray3d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray3d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray3d(CGparameter param, long offset, long nelements, const double * v)

Definition at line 5678 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray3d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray3d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray3d(CGparameter param, long offset, long nelements, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5663 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray3f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray3f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray3f(CGparameter param, long offset, long nelements, const float * v)

Definition at line 5566 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray3f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray3f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray3f(CGparameter param, long offset, long nelements, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5551 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray4d() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray4d ( CGparameter  param,
long  offset,
long  nelements,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray4d(CGparameter param, long offset, long nelements, const double * v)

Definition at line 5706 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray4d() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray4d ( CGparameter  param,
long  offset,
long  nelements,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray4d(CGparameter param, long offset, long nelements, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 5691 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray4f() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray4f ( CGparameter  param,
long  offset,
long  nelements,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray4f(CGparameter param, long offset, long nelements, const float * v)

Definition at line 5594 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterArray4f() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterArray4f ( CGparameter  param,
long  offset,
long  nelements,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterArray4f(CGparameter param, long offset, long nelements, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 5579 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetParameterPointer()

static void com.jogamp.opengl.cg.CgGL.cgGLSetParameterPointer ( CGparameter  param,
int  fsize,
int  type,
int  stride,
Buffer  pointer 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetParameterPointer(CGparameter param, GLint fsize, GLenum type, GLsizei stride, const GLvoid * pointer)

Parameters
pointera direct only java.nio.Buffer

Definition at line 5943 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetStateMatrixParameter()

static void com.jogamp.opengl.cg.CgGL.cgGLSetStateMatrixParameter ( CGparameter  param,
int  matrix,
int  transform 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetStateMatrixParameter(CGparameter param, CGGLenum matrix, CGGLenum transform)

Parameters
matrixvalid values are: CG_GL_MATRIX_IDENTITY, CG_GL_MATRIX_TRANSPOSE, CG_GL_MATRIX_INVERSE, CG_GL_MATRIX_INVERSE_TRANSPOSE, CG_GL_MODELVIEW_MATRIX, CG_GL_PROJECTION_MATRIX, CG_GL_TEXTURE_MATRIX, CG_GL_MODELVIEW_PROJECTION_MATRIX, CG_GL_VERTEX, CG_GL_FRAGMENT
transformvalid values are: CG_GL_MATRIX_IDENTITY, CG_GL_MATRIX_TRANSPOSE, CG_GL_MATRIX_INVERSE, CG_GL_MATRIX_INVERSE_TRANSPOSE, CG_GL_MODELVIEW_MATRIX, CG_GL_PROJECTION_MATRIX, CG_GL_TEXTURE_MATRIX, CG_GL_MODELVIEW_PROJECTION_MATRIX, CG_GL_VERTEX, CG_GL_FRAGMENT

Definition at line 6213 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetTextureParameter()

static void com.jogamp.opengl.cg.CgGL.cgGLSetTextureParameter ( CGparameter  param,
int  texobj 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetTextureParameter(CGparameter param, GLuint texobj)

Definition at line 6454 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLSetupSampler()

static void com.jogamp.opengl.cg.CgGL.cgGLSetupSampler ( CGparameter  param,
int  texobj 
)
static

Entry point (through function pointer) to C language function:
void cgGLSetupSampler(CGparameter param, GLuint texobj)

Definition at line 6545 of file CgGL.java.

Here is the call graph for this function:

◆ cgGLUnbindProgram()

static void com.jogamp.opengl.cg.CgGL.cgGLUnbindProgram ( int  profile)
static

Entry point (through function pointer) to C language function:
void cgGLUnbindProgram(CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 4914 of file CgGL.java.

◆ cgIsAnnotation()

static boolean com.jogamp.opengl.cg.CgGL.cgIsAnnotation ( CGannotation  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgIsAnnotation(CGannotation)

Definition at line 4679 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsContext()

static boolean com.jogamp.opengl.cg.CgGL.cgIsContext ( CGcontext  ctx)
static

Entry point (through function pointer) to C language function:
CGbool cgIsContext(CGcontext ctx)

Definition at line 1034 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsEffect()

static boolean com.jogamp.opengl.cg.CgGL.cgIsEffect ( CGeffect  effect)
static

Entry point (through function pointer) to C language function:
CGbool cgIsEffect(CGeffect effect)

Definition at line 3650 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsInterfaceType()

static boolean com.jogamp.opengl.cg.CgGL.cgIsInterfaceType ( int  type)
static

Entry point (through function pointer) to C language function:
CGbool cgIsInterfaceType(CGtype type)

Parameters
typevalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 3396 of file CgGL.java.

◆ cgIsParameter()

static boolean com.jogamp.opengl.cg.CgGL.cgIsParameter ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGbool cgIsParameter(CGparameter param)

Definition at line 1791 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsParameterGlobal()

static boolean com.jogamp.opengl.cg.CgGL.cgIsParameterGlobal ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGbool cgIsParameterGlobal(CGparameter param)

Definition at line 2377 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsParameterReferenced()

static boolean com.jogamp.opengl.cg.CgGL.cgIsParameterReferenced ( CGparameter  param)
static

Entry point (through function pointer) to C language function:
CGbool cgIsParameterReferenced(CGparameter param)

Definition at line 1973 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsParameterUsed()

static boolean com.jogamp.opengl.cg.CgGL.cgIsParameterUsed ( CGparameter  param,
Buffer  handle 
)
static

Entry point (through function pointer) to C language function:
CGbool cgIsParameterUsed(CGparameter param, CGhandle handle)

Parameters
handlea direct or array-backed java.nio.Buffer

Definition at line 1987 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsParentType()

static boolean com.jogamp.opengl.cg.CgGL.cgIsParentType ( int  parent,
int  child 
)
static

Entry point (through function pointer) to C language function:
CGbool cgIsParentType(CGtype parent, CGtype child)

Parameters
parentvalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE
childvalid values are: CG_UNKNOWN_TYPE, CG_STRUCT, CG_ARRAY, CG_TYPE_START_ENUM, CG_HALF, CG_HALF2, CG_HALF3, CG_HALF4, CG_HALF1x1, CG_HALF1x2, CG_HALF1x3, CG_HALF1x4, CG_HALF2x1, CG_HALF2x2, CG_HALF2x3, CG_HALF2x4, CG_HALF3x1, CG_HALF3x2, CG_HALF3x3, CG_HALF3x4, CG_HALF4x1, CG_HALF4x2, CG_HALF4x3, CG_HALF4x4, CG_FLOAT, CG_FLOAT2, CG_FLOAT3, CG_FLOAT4, CG_FLOAT1x1, CG_FLOAT1x2, CG_FLOAT1x3, CG_FLOAT1x4, CG_FLOAT2x1, CG_FLOAT2x2, CG_FLOAT2x3, CG_FLOAT2x4, CG_FLOAT3x1, CG_FLOAT3x2, CG_FLOAT3x3, CG_FLOAT3x4, CG_FLOAT4x1, CG_FLOAT4x2, CG_FLOAT4x3, CG_FLOAT4x4, CG_SAMPLER1D, CG_SAMPLER2D, CG_SAMPLER3D, CG_SAMPLERRECT, CG_SAMPLERCUBE, CG_FIXED, CG_FIXED2, CG_FIXED3, CG_FIXED4, CG_FIXED1x1, CG_FIXED1x2, CG_FIXED1x3, CG_FIXED1x4, CG_FIXED2x1, CG_FIXED2x2, CG_FIXED2x3, CG_FIXED2x4, CG_FIXED3x1, CG_FIXED3x2, CG_FIXED3x3, CG_FIXED3x4, CG_FIXED4x1, CG_FIXED4x2, CG_FIXED4x3, CG_FIXED4x4, CG_HALF1, CG_FLOAT1, CG_FIXED1, CG_INT, CG_INT1, CG_INT2, CG_INT3, CG_INT4, CG_INT1x1, CG_INT1x2, CG_INT1x3, CG_INT1x4, CG_INT2x1, CG_INT2x2, CG_INT2x3, CG_INT2x4, CG_INT3x1, CG_INT3x2, CG_INT3x3, CG_INT3x4, CG_INT4x1, CG_INT4x2, CG_INT4x3, CG_INT4x4, CG_BOOL, CG_BOOL1, CG_BOOL2, CG_BOOL3, CG_BOOL4, CG_BOOL1x1, CG_BOOL1x2, CG_BOOL1x3, CG_BOOL1x4, CG_BOOL2x1, CG_BOOL2x2, CG_BOOL2x3, CG_BOOL2x4, CG_BOOL3x1, CG_BOOL3x2, CG_BOOL3x3, CG_BOOL3x4, CG_BOOL4x1, CG_BOOL4x2, CG_BOOL4x3, CG_BOOL4x4, CG_STRING, CG_PROGRAM_TYPE, CG_TEXTURE

Definition at line 3377 of file CgGL.java.

◆ cgIsPass()

static boolean com.jogamp.opengl.cg.CgGL.cgIsPass ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgIsPass(CGpass)

Definition at line 3879 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsProgram()

static boolean com.jogamp.opengl.cg.CgGL.cgIsProgram ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
CGbool cgIsProgram(CGprogram program)

Definition at line 1231 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsProgramCompiled()

static boolean com.jogamp.opengl.cg.CgGL.cgIsProgramCompiled ( CGprogram  program)
static

Entry point (through function pointer) to C language function:
CGbool cgIsProgramCompiled(CGprogram program)

Definition at line 1257 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsState()

static boolean com.jogamp.opengl.cg.CgGL.cgIsState ( CGstate  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgIsState(CGstate)

Definition at line 4328 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsStateAssignment()

static boolean com.jogamp.opengl.cg.CgGL.cgIsStateAssignment ( CGstateassignment  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgIsStateAssignment(CGstateassignment)

Definition at line 3995 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsTechnique()

static boolean com.jogamp.opengl.cg.CgGL.cgIsTechnique ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgIsTechnique(CGtechnique)

Definition at line 3776 of file CgGL.java.

Here is the call graph for this function:

◆ cgIsTechniqueValidated()

static boolean com.jogamp.opengl.cg.CgGL.cgIsTechniqueValidated ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgIsTechniqueValidated(CGtechnique)

Definition at line 3802 of file CgGL.java.

Here is the call graph for this function:

◆ cgResetPassState()

static void com.jogamp.opengl.cg.CgGL.cgResetPassState ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
void cgResetPassState(CGpass)

Definition at line 3934 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetArraySize()

static void com.jogamp.opengl.cg.CgGL.cgSetArraySize ( CGparameter  param,
int  size 
)
static

Entry point (through function pointer) to C language function:
void cgSetArraySize(CGparameter param, int size)

Definition at line 1718 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetAutoCompile()

static void com.jogamp.opengl.cg.CgGL.cgSetAutoCompile ( CGcontext  ctx,
int  flag 
)
static

Entry point (through function pointer) to C language function:
void cgSetAutoCompile(CGcontext ctx, CGenum flag)

Parameters
flagvalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 1078 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetLastListing()

static void com.jogamp.opengl.cg.CgGL.cgSetLastListing ( Buffer  handle,
String  listing 
)
static

Entry point (through function pointer) to C language function:
void cgSetLastListing(CGhandle handle, const char * listing)

Parameters
handlea direct or array-backed java.nio.Buffer

Definition at line 1061 of file CgGL.java.

◆ cgSetMatrixParameterdc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterdc ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdc(CGparameter param, const double * matrix)

Definition at line 3053 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterdc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterdc ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdc(CGparameter param, const double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 3038 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterdr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterdr ( CGparameter  param,
double[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdr(CGparameter param, const double * matrix)

Definition at line 2969 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterdr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterdr ( CGparameter  param,
DoubleBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterdr(CGparameter param, const double * matrix)

Parameters
matrixa direct or array-backed java.nio.DoubleBuffer

Definition at line 2954 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterfc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterfc ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfc(CGparameter param, const float * matrix)

Definition at line 3081 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterfc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterfc ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfc(CGparameter param, const float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 3066 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterfr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterfr ( CGparameter  param,
float[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfr(CGparameter param, const float * matrix)

Definition at line 2997 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterfr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterfr ( CGparameter  param,
FloatBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterfr(CGparameter param, const float * matrix)

Parameters
matrixa direct or array-backed java.nio.FloatBuffer

Definition at line 2982 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameteric() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameteric ( CGparameter  param,
int[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameteric(CGparameter param, const int * matrix)

Definition at line 3025 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameteric() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameteric ( CGparameter  param,
IntBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameteric(CGparameter param, const int * matrix)

Parameters
matrixa direct or array-backed java.nio.IntBuffer

Definition at line 3010 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterir() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterir ( CGparameter  param,
int[]  matrix,
int  matrix_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterir(CGparameter param, const int * matrix)

Definition at line 2941 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMatrixParameterir() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMatrixParameterir ( CGparameter  param,
IntBuffer  matrix 
)
static

Entry point (through function pointer) to C language function:
void cgSetMatrixParameterir(CGparameter param, const int * matrix)

Parameters
matrixa direct or array-backed java.nio.IntBuffer

Definition at line 2926 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMultiDimArraySize() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMultiDimArraySize ( CGparameter  param,
int[]  sizes,
int  sizes_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetMultiDimArraySize(CGparameter param, const int * sizes)

Definition at line 1747 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetMultiDimArraySize() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetMultiDimArraySize ( CGparameter  param,
IntBuffer  sizes 
)
static

Entry point (through function pointer) to C language function:
void cgSetMultiDimArraySize(CGparameter param, const int * sizes)

Parameters
sizesa direct or array-backed java.nio.IntBuffer

Definition at line 1732 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1d()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1d ( CGparameter  param,
double  x 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1d(CGparameter param, double x)

Definition at line 2485 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1dv(CGparameter param, const double * v)

Definition at line 2829 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 2814 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1f()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1f ( CGparameter  param,
float  x 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1f(CGparameter param, float x)

Definition at line 2433 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1fv(CGparameter param, const float * v)

Definition at line 2717 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 2702 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1i()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1i ( CGparameter  param,
int  x 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1i(CGparameter param, int x)

Definition at line 2537 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1iv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1iv ( CGparameter  param,
int[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1iv(CGparameter param, const int * v)

Definition at line 2605 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter1iv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter1iv ( CGparameter  param,
IntBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter1iv(CGparameter param, const int * v)

Parameters
va direct or array-backed java.nio.IntBuffer

Definition at line 2590 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2d()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2d ( CGparameter  param,
double  x,
double  y 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2d(CGparameter param, double x, double y)

Definition at line 2498 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2dv(CGparameter param, const double * v)

Definition at line 2857 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 2842 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2f()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2f ( CGparameter  param,
float  x,
float  y 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2f(CGparameter param, float x, float y)

Definition at line 2446 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2fv(CGparameter param, const float * v)

Definition at line 2745 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 2730 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2i()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2i ( CGparameter  param,
int  x,
int  y 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2i(CGparameter param, int x, int y)

Definition at line 2550 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2iv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2iv ( CGparameter  param,
int[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2iv(CGparameter param, const int * v)

Definition at line 2633 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter2iv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter2iv ( CGparameter  param,
IntBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter2iv(CGparameter param, const int * v)

Parameters
va direct or array-backed java.nio.IntBuffer

Definition at line 2618 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3d()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3d ( CGparameter  param,
double  x,
double  y,
double  z 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3d(CGparameter param, double x, double y, double z)

Definition at line 2511 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3dv(CGparameter param, const double * v)

Definition at line 2885 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 2870 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3f()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3f ( CGparameter  param,
float  x,
float  y,
float  z 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3f(CGparameter param, float x, float y, float z)

Definition at line 2459 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3fv(CGparameter param, const float * v)

Definition at line 2773 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 2758 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3i()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3i ( CGparameter  param,
int  x,
int  y,
int  z 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3i(CGparameter param, int x, int y, int z)

Definition at line 2563 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3iv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3iv ( CGparameter  param,
int[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3iv(CGparameter param, const int * v)

Definition at line 2661 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter3iv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter3iv ( CGparameter  param,
IntBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter3iv(CGparameter param, const int * v)

Parameters
va direct or array-backed java.nio.IntBuffer

Definition at line 2646 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4d()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4d ( CGparameter  param,
double  x,
double  y,
double  z,
double  w 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4d(CGparameter param, double x, double y, double z, double w)

Definition at line 2524 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4dv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4dv ( CGparameter  param,
double[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4dv(CGparameter param, const double * v)

Definition at line 2913 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4dv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4dv ( CGparameter  param,
DoubleBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4dv(CGparameter param, const double * v)

Parameters
va direct or array-backed java.nio.DoubleBuffer

Definition at line 2898 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4f()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4f ( CGparameter  param,
float  x,
float  y,
float  z,
float  w 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4f(CGparameter param, float x, float y, float z, float w)

Definition at line 2472 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4fv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4fv ( CGparameter  param,
float[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4fv(CGparameter param, const float * v)

Definition at line 2801 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4fv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4fv ( CGparameter  param,
FloatBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4fv(CGparameter param, const float * v)

Parameters
va direct or array-backed java.nio.FloatBuffer

Definition at line 2786 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4i()

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4i ( CGparameter  param,
int  x,
int  y,
int  z,
int  w 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4i(CGparameter param, int x, int y, int z, int w)

Definition at line 2576 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4iv() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4iv ( CGparameter  param,
int[]  v,
int  v_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4iv(CGparameter param, const int * v)

Definition at line 2689 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameter4iv() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameter4iv ( CGparameter  param,
IntBuffer  v 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameter4iv(CGparameter param, const int * v)

Parameters
va direct or array-backed java.nio.IntBuffer

Definition at line 2674 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterSemantic()

static void com.jogamp.opengl.cg.CgGL.cgSetParameterSemantic ( CGparameter  param,
String  semantic 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterSemantic(CGparameter param, const char * semantic)

Definition at line 2420 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuedc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuedc ( CGparameter  param,
int  n,
double[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuedc(CGparameter param, int n, const double * vals)

Definition at line 2046 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuedc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuedc ( CGparameter  param,
int  n,
DoubleBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuedc(CGparameter param, int n, const double * vals)

Parameters
valsa direct or array-backed java.nio.DoubleBuffer

Definition at line 2031 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuedr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuedr ( CGparameter  param,
int  n,
double[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuedr(CGparameter param, int n, const double * vals)

Definition at line 2018 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuedr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuedr ( CGparameter  param,
int  n,
DoubleBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuedr(CGparameter param, int n, const double * vals)

Parameters
valsa direct or array-backed java.nio.DoubleBuffer

Definition at line 2003 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuefc() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuefc ( CGparameter  param,
int  n,
float[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuefc(CGparameter param, int n, const float * vals)

Definition at line 2102 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuefc() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuefc ( CGparameter  param,
int  n,
FloatBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuefc(CGparameter param, int n, const float * vals)

Parameters
valsa direct or array-backed java.nio.FloatBuffer

Definition at line 2087 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuefr() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuefr ( CGparameter  param,
int  n,
float[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuefr(CGparameter param, int n, const float * vals)

Definition at line 2074 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValuefr() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValuefr ( CGparameter  param,
int  n,
FloatBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValuefr(CGparameter param, int n, const float * vals)

Parameters
valsa direct or array-backed java.nio.FloatBuffer

Definition at line 2059 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValueic() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValueic ( CGparameter  param,
int  n,
int[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValueic(CGparameter param, int n, const int * vals)

Definition at line 2158 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValueic() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValueic ( CGparameter  param,
int  n,
IntBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValueic(CGparameter param, int n, const int * vals)

Parameters
valsa direct or array-backed java.nio.IntBuffer

Definition at line 2143 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValueir() [1/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValueir ( CGparameter  param,
int  n,
int[]  vals,
int  vals_offset 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValueir(CGparameter param, int n, const int * vals)

Definition at line 2130 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterValueir() [2/2]

static void com.jogamp.opengl.cg.CgGL.cgSetParameterValueir ( CGparameter  param,
int  n,
IntBuffer  vals 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterValueir(CGparameter param, int n, const int * vals)

Parameters
valsa direct or array-backed java.nio.IntBuffer

Definition at line 2115 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetParameterVariability()

static void com.jogamp.opengl.cg.CgGL.cgSetParameterVariability ( CGparameter  param,
int  vary 
)
static

Entry point (through function pointer) to C language function:
void cgSetParameterVariability(CGparameter param, CGenum vary)

Parameters
varyvalid values are: CG_UNKNOWN, CG_IN, CG_OUT, CG_INOUT, CG_MIXED, CG_VARYING, CG_UNIFORM, CG_CONSTANT, CG_PROGRAM_SOURCE, CG_PROGRAM_ENTRY, CG_COMPILED_PROGRAM, CG_PROGRAM_PROFILE, CG_GLOBAL, CG_PROGRAM, CG_DEFAULT, CG_ERROR, CG_SOURCE, CG_OBJECT, CG_COMPILE_MANUAL, CG_COMPILE_IMMEDIATE, CG_COMPILE_LAZY, CG_CURRENT, CG_LITERAL, CG_VERSION, CG_ROW_MAJOR, CG_COLUMN_MAJOR

Definition at line 2405 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetPassProgramParameters()

static void com.jogamp.opengl.cg.CgGL.cgSetPassProgramParameters ( CGprogram  arg0)
static

Entry point (through function pointer) to C language function:
void cgSetPassProgramParameters(CGprogram)

Definition at line 1317 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetPassState()

static void com.jogamp.opengl.cg.CgGL.cgSetPassState ( CGpass  arg0)
static

Entry point (through function pointer) to C language function:
void cgSetPassState(CGpass)

Definition at line 3921 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetProgramProfile()

static void com.jogamp.opengl.cg.CgGL.cgSetProgramProfile ( CGprogram  prog,
int  profile 
)
static

Entry point (through function pointer) to C language function:
void cgSetProgramProfile(CGprogram prog, CGprofile profile)

Parameters
profilevalid values are: CG_PROFILE_START, CG_PROFILE_UNKNOWN, CG_PROFILE_VP20, CG_PROFILE_FP20, CG_PROFILE_VP30, CG_PROFILE_FP30, CG_PROFILE_ARBVP1, CG_PROFILE_FP40, CG_PROFILE_ARBFP1, CG_PROFILE_VP40, CG_PROFILE_VS_1_1, CG_PROFILE_VS_2_0, CG_PROFILE_VS_2_X, CG_PROFILE_PS_1_1, CG_PROFILE_PS_1_2, CG_PROFILE_PS_1_3, CG_PROFILE_PS_2_0, CG_PROFILE_PS_2_X, GENERIC, CG_PROFILE_MAX

Definition at line 1302 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetSamplerState()

static void com.jogamp.opengl.cg.CgGL.cgSetSamplerState ( CGparameter  arg0)
static

Entry point (through function pointer) to C language function:
void cgSetSamplerState(CGparameter)

Definition at line 4458 of file CgGL.java.

Here is the call graph for this function:

◆ cgSetStringParameterValue()

static void com.jogamp.opengl.cg.CgGL.cgSetStringParameterValue ( CGparameter  param,
String  str 
)
static

Entry point (through function pointer) to C language function:
void cgSetStringParameterValue(CGparameter param, const char * str)

Definition at line 2351 of file CgGL.java.

Here is the call graph for this function:

◆ cgValidateTechnique()

static boolean com.jogamp.opengl.cg.CgGL.cgValidateTechnique ( CGtechnique  arg0)
static

Entry point (through function pointer) to C language function:
CGbool cgValidateTechnique(CGtechnique)

Definition at line 3789 of file CgGL.java.

Here is the call graph for this function:

◆ getCgProcAddressTable()

static CgProcAddressTable com.jogamp.opengl.cg.CgGL.getCgProcAddressTable ( )
static

Definition at line 6597 of file CgGL.java.

Member Data Documentation

◆ CG_ARRAY

final long com.jogamp.opengl.cg.CgGL.CG_ARRAY = 0x2L
static

Defined as part of enum type "CGtype" with expression '0x2L', CType: long.

Definition at line 664 of file CgGL.java.

◆ CG_ARRAY_DIMENSIONS_DO_NOT_MATCH_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_ARRAY_DIMENSIONS_DO_NOT_MATCH_ERROR = 0x25
static

Defined as part of enum type "CGerror" with expression '37', CType: int.

Definition at line 100 of file CgGL.java.

◆ CG_ARRAY_HAS_WRONG_DIMENSION_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_ARRAY_HAS_WRONG_DIMENSION_ERROR = 0x26
static

Defined as part of enum type "CGerror" with expression '38', CType: int.

Definition at line 102 of file CgGL.java.

◆ CG_ARRAY_PARAM_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_ARRAY_PARAM_ERROR = 0x16
static

Defined as part of enum type "CGerror" with expression '22', CType: int.

Definition at line 70 of file CgGL.java.

◆ CG_ARRAY_SIZE_MISMATCH_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_ARRAY_SIZE_MISMATCH_ERROR = 0x35
static

Defined as part of enum type "CGerror" with expression '53', CType: int.

Definition at line 132 of file CgGL.java.

◆ CG_ARRAY_TYPES_DO_NOT_MATCH_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_ARRAY_TYPES_DO_NOT_MATCH_ERROR = 0x24
static

Defined as part of enum type "CGerror" with expression '36', CType: int.

Definition at line 98 of file CgGL.java.

◆ CG_ATTR0

final int com.jogamp.opengl.cg.CgGL.CG_ATTR0 = 0x841
static

Defined as part of enum type "CGresource" with expression '2113', CType: int.

Definition at line 186 of file CgGL.java.

◆ CG_ATTR1

final int com.jogamp.opengl.cg.CgGL.CG_ATTR1 = 0x842
static

Defined as part of enum type "CGresource" with expression '2114', CType: int.

Definition at line 188 of file CgGL.java.

◆ CG_ATTR10

final int com.jogamp.opengl.cg.CgGL.CG_ATTR10 = 0x84b
static

Defined as part of enum type "CGresource" with expression '2123', CType: int.

Definition at line 206 of file CgGL.java.

◆ CG_ATTR11

final int com.jogamp.opengl.cg.CgGL.CG_ATTR11 = 0x84c
static

Defined as part of enum type "CGresource" with expression '2124', CType: int.

Definition at line 208 of file CgGL.java.

◆ CG_ATTR12

final int com.jogamp.opengl.cg.CgGL.CG_ATTR12 = 0x84d
static

Defined as part of enum type "CGresource" with expression '2125', CType: int.

Definition at line 210 of file CgGL.java.

◆ CG_ATTR13

final int com.jogamp.opengl.cg.CgGL.CG_ATTR13 = 0x84e
static

Defined as part of enum type "CGresource" with expression '2126', CType: int.

Definition at line 212 of file CgGL.java.

◆ CG_ATTR14

final int com.jogamp.opengl.cg.CgGL.CG_ATTR14 = 0x84f
static

Defined as part of enum type "CGresource" with expression '2127', CType: int.

Definition at line 214 of file CgGL.java.

◆ CG_ATTR15

final int com.jogamp.opengl.cg.CgGL.CG_ATTR15 = 0x850
static

Defined as part of enum type "CGresource" with expression '2128', CType: int.

Definition at line 216 of file CgGL.java.

◆ CG_ATTR2

final int com.jogamp.opengl.cg.CgGL.CG_ATTR2 = 0x843
static

Defined as part of enum type "CGresource" with expression '2115', CType: int.

Definition at line 190 of file CgGL.java.

◆ CG_ATTR3

final int com.jogamp.opengl.cg.CgGL.CG_ATTR3 = 0x844
static

Defined as part of enum type "CGresource" with expression '2116', CType: int.

Definition at line 192 of file CgGL.java.

◆ CG_ATTR4

final int com.jogamp.opengl.cg.CgGL.CG_ATTR4 = 0x845
static

Defined as part of enum type "CGresource" with expression '2117', CType: int.

Definition at line 194 of file CgGL.java.

◆ CG_ATTR5

final int com.jogamp.opengl.cg.CgGL.CG_ATTR5 = 0x846
static

Defined as part of enum type "CGresource" with expression '2118', CType: int.

Definition at line 196 of file CgGL.java.

◆ CG_ATTR6

final int com.jogamp.opengl.cg.CgGL.CG_ATTR6 = 0x847
static

Defined as part of enum type "CGresource" with expression '2119', CType: int.

Definition at line 198 of file CgGL.java.

◆ CG_ATTR7

final int com.jogamp.opengl.cg.CgGL.CG_ATTR7 = 0x848
static

Defined as part of enum type "CGresource" with expression '2120', CType: int.

Definition at line 200 of file CgGL.java.

◆ CG_ATTR8

final int com.jogamp.opengl.cg.CgGL.CG_ATTR8 = 0x849
static

Defined as part of enum type "CGresource" with expression '2121', CType: int.

Definition at line 202 of file CgGL.java.

◆ CG_ATTR9

final int com.jogamp.opengl.cg.CgGL.CG_ATTR9 = 0x84a
static

Defined as part of enum type "CGresource" with expression '2122', CType: int.

Definition at line 204 of file CgGL.java.

◆ CG_BIND_CREATES_CYCLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_BIND_CREATES_CYCLE_ERROR = 0x23
static

Defined as part of enum type "CGerror" with expression '35', CType: int.

Definition at line 96 of file CgGL.java.

◆ CG_BINORMAL0

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL0 = 0xb45
static

Defined as part of enum type "CGresource" with expression '2885', CType: int.

Definition at line 414 of file CgGL.java.

◆ CG_BINORMAL1

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL1 = 0xb46
static

Defined as part of enum type "CGresource" with expression '2886', CType: int.

Definition at line 416 of file CgGL.java.

◆ CG_BINORMAL10

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL10 = 0xb4f
static

Defined as part of enum type "CGresource" with expression '2895', CType: int.

Definition at line 434 of file CgGL.java.

◆ CG_BINORMAL11

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL11 = 0xb50
static

Defined as part of enum type "CGresource" with expression '2896', CType: int.

Definition at line 436 of file CgGL.java.

◆ CG_BINORMAL12

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL12 = 0xb51
static

Defined as part of enum type "CGresource" with expression '2897', CType: int.

Definition at line 438 of file CgGL.java.

◆ CG_BINORMAL13

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL13 = 0xb52
static

Defined as part of enum type "CGresource" with expression '2898', CType: int.

Definition at line 440 of file CgGL.java.

◆ CG_BINORMAL14

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL14 = 0xb53
static

Defined as part of enum type "CGresource" with expression '2899', CType: int.

Definition at line 442 of file CgGL.java.

◆ CG_BINORMAL15

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL15 = 0xb54
static

Defined as part of enum type "CGresource" with expression '2900', CType: int.

Definition at line 444 of file CgGL.java.

◆ CG_BINORMAL2

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL2 = 0xb47
static

Defined as part of enum type "CGresource" with expression '2887', CType: int.

Definition at line 418 of file CgGL.java.

◆ CG_BINORMAL3

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL3 = 0xb48
static

Defined as part of enum type "CGresource" with expression '2888', CType: int.

Definition at line 420 of file CgGL.java.

◆ CG_BINORMAL4

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL4 = 0xb49
static

Defined as part of enum type "CGresource" with expression '2889', CType: int.

Definition at line 422 of file CgGL.java.

◆ CG_BINORMAL5

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL5 = 0xb4a
static

Defined as part of enum type "CGresource" with expression '2890', CType: int.

Definition at line 424 of file CgGL.java.

◆ CG_BINORMAL6

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL6 = 0xb4b
static

Defined as part of enum type "CGresource" with expression '2891', CType: int.

Definition at line 426 of file CgGL.java.

◆ CG_BINORMAL7

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL7 = 0xb4c
static

Defined as part of enum type "CGresource" with expression '2892', CType: int.

Definition at line 428 of file CgGL.java.

◆ CG_BINORMAL8

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL8 = 0xb4d
static

Defined as part of enum type "CGresource" with expression '2893', CType: int.

Definition at line 430 of file CgGL.java.

◆ CG_BINORMAL9

final int com.jogamp.opengl.cg.CgGL.CG_BINORMAL9 = 0xb4e
static

Defined as part of enum type "CGresource" with expression '2894', CType: int.

Definition at line 432 of file CgGL.java.

◆ CG_BLENDINDICES0

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES0 = 0xa85
static

Defined as part of enum type "CGresource" with expression '2693', CType: int.

Definition at line 318 of file CgGL.java.

◆ CG_BLENDINDICES1

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES1 = 0xa86
static

Defined as part of enum type "CGresource" with expression '2694', CType: int.

Definition at line 320 of file CgGL.java.

◆ CG_BLENDINDICES10

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES10 = 0xa8f
static

Defined as part of enum type "CGresource" with expression '2703', CType: int.

Definition at line 338 of file CgGL.java.

◆ CG_BLENDINDICES11

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES11 = 0xa90
static

Defined as part of enum type "CGresource" with expression '2704', CType: int.

Definition at line 340 of file CgGL.java.

◆ CG_BLENDINDICES12

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES12 = 0xa91
static

Defined as part of enum type "CGresource" with expression '2705', CType: int.

Definition at line 342 of file CgGL.java.

◆ CG_BLENDINDICES13

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES13 = 0xa92
static

Defined as part of enum type "CGresource" with expression '2706', CType: int.

Definition at line 344 of file CgGL.java.

◆ CG_BLENDINDICES14

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES14 = 0xa93
static

Defined as part of enum type "CGresource" with expression '2707', CType: int.

Definition at line 346 of file CgGL.java.

◆ CG_BLENDINDICES15

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES15 = 0xa94
static

Defined as part of enum type "CGresource" with expression '2708', CType: int.

Definition at line 348 of file CgGL.java.

◆ CG_BLENDINDICES2

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES2 = 0xa87
static

Defined as part of enum type "CGresource" with expression '2695', CType: int.

Definition at line 322 of file CgGL.java.

◆ CG_BLENDINDICES3

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES3 = 0xa88
static

Defined as part of enum type "CGresource" with expression '2696', CType: int.

Definition at line 324 of file CgGL.java.

◆ CG_BLENDINDICES4

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES4 = 0xa89
static

Defined as part of enum type "CGresource" with expression '2697', CType: int.

Definition at line 326 of file CgGL.java.

◆ CG_BLENDINDICES5

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES5 = 0xa8a
static

Defined as part of enum type "CGresource" with expression '2698', CType: int.

Definition at line 328 of file CgGL.java.

◆ CG_BLENDINDICES6

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES6 = 0xa8b
static

Defined as part of enum type "CGresource" with expression '2699', CType: int.

Definition at line 330 of file CgGL.java.

◆ CG_BLENDINDICES7

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES7 = 0xa8c
static

Defined as part of enum type "CGresource" with expression '2700', CType: int.

Definition at line 332 of file CgGL.java.

◆ CG_BLENDINDICES8

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES8 = 0xa8d
static

Defined as part of enum type "CGresource" with expression '2701', CType: int.

Definition at line 334 of file CgGL.java.

◆ CG_BLENDINDICES9

final int com.jogamp.opengl.cg.CgGL.CG_BLENDINDICES9 = 0xa8e
static

Defined as part of enum type "CGresource" with expression '2702', CType: int.

Definition at line 336 of file CgGL.java.

◆ CG_BLENDWEIGHT0

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT0 = 0xbd4
static

Defined as part of enum type "CGresource" with expression '3028', CType: int.

Definition at line 542 of file CgGL.java.

◆ CG_BLENDWEIGHT1

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT1 = 0xbd5
static

Defined as part of enum type "CGresource" with expression '3029', CType: int.

Definition at line 544 of file CgGL.java.

◆ CG_BLENDWEIGHT10

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT10 = 0xbde
static

Defined as part of enum type "CGresource" with expression '3038', CType: int.

Definition at line 562 of file CgGL.java.

◆ CG_BLENDWEIGHT11

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT11 = 0xbdf
static

Defined as part of enum type "CGresource" with expression '3039', CType: int.

Definition at line 564 of file CgGL.java.

◆ CG_BLENDWEIGHT12

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT12 = 0xbe0
static

Defined as part of enum type "CGresource" with expression '3040', CType: int.

Definition at line 566 of file CgGL.java.

◆ CG_BLENDWEIGHT13

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT13 = 0xbe1
static

Defined as part of enum type "CGresource" with expression '3041', CType: int.

Definition at line 568 of file CgGL.java.

◆ CG_BLENDWEIGHT14

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT14 = 0xbe2
static

Defined as part of enum type "CGresource" with expression '3042', CType: int.

Definition at line 570 of file CgGL.java.

◆ CG_BLENDWEIGHT15

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT15 = 0xbe3
static

Defined as part of enum type "CGresource" with expression '3043', CType: int.

Definition at line 572 of file CgGL.java.

◆ CG_BLENDWEIGHT2

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT2 = 0xbd6
static

Defined as part of enum type "CGresource" with expression '3030', CType: int.

Definition at line 546 of file CgGL.java.

◆ CG_BLENDWEIGHT3

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT3 = 0xbd7
static

Defined as part of enum type "CGresource" with expression '3031', CType: int.

Definition at line 548 of file CgGL.java.

◆ CG_BLENDWEIGHT4

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT4 = 0xbd8
static

Defined as part of enum type "CGresource" with expression '3032', CType: int.

Definition at line 550 of file CgGL.java.

◆ CG_BLENDWEIGHT5

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT5 = 0xbd9
static

Defined as part of enum type "CGresource" with expression '3033', CType: int.

Definition at line 552 of file CgGL.java.

◆ CG_BLENDWEIGHT6

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT6 = 0xbda
static

Defined as part of enum type "CGresource" with expression '3034', CType: int.

Definition at line 554 of file CgGL.java.

◆ CG_BLENDWEIGHT7

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT7 = 0xbdb
static

Defined as part of enum type "CGresource" with expression '3035', CType: int.

Definition at line 556 of file CgGL.java.

◆ CG_BLENDWEIGHT8

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT8 = 0xbdc
static

Defined as part of enum type "CGresource" with expression '3036', CType: int.

Definition at line 558 of file CgGL.java.

◆ CG_BLENDWEIGHT9

final int com.jogamp.opengl.cg.CgGL.CG_BLENDWEIGHT9 = 0xbdd
static

Defined as part of enum type "CGresource" with expression '3037', CType: int.

Definition at line 560 of file CgGL.java.

◆ CG_BOOL

final int com.jogamp.opengl.cg.CgGL.CG_BOOL = 0x45a
static

Defined as part of enum type "CGtype" with expression '0x45a', CType: int.

Definition at line 846 of file CgGL.java.

◆ CG_BOOL1

final int com.jogamp.opengl.cg.CgGL.CG_BOOL1 = 0x45b
static

Defined as part of enum type "CGtype" with expression '0x45b', CType: int.

Definition at line 848 of file CgGL.java.

◆ CG_BOOL1x1

final int com.jogamp.opengl.cg.CgGL.CG_BOOL1x1 = 0x45f
static

Defined as part of enum type "CGtype" with expression '0x45f', CType: int.

Definition at line 856 of file CgGL.java.

◆ CG_BOOL1x2

final int com.jogamp.opengl.cg.CgGL.CG_BOOL1x2 = 0x460
static

Defined as part of enum type "CGtype" with expression '0x460', CType: int.

Definition at line 858 of file CgGL.java.

◆ CG_BOOL1x3

final int com.jogamp.opengl.cg.CgGL.CG_BOOL1x3 = 0x461
static

Defined as part of enum type "CGtype" with expression '0x461', CType: int.

Definition at line 860 of file CgGL.java.

◆ CG_BOOL1x4

final int com.jogamp.opengl.cg.CgGL.CG_BOOL1x4 = 0x462
static

Defined as part of enum type "CGtype" with expression '0x462', CType: int.

Definition at line 862 of file CgGL.java.

◆ CG_BOOL2

final int com.jogamp.opengl.cg.CgGL.CG_BOOL2 = 0x45c
static

Defined as part of enum type "CGtype" with expression '0x45c', CType: int.

Definition at line 850 of file CgGL.java.

◆ CG_BOOL2x1

final int com.jogamp.opengl.cg.CgGL.CG_BOOL2x1 = 0x463
static

Defined as part of enum type "CGtype" with expression '0x463', CType: int.

Definition at line 864 of file CgGL.java.

◆ CG_BOOL2x2

final int com.jogamp.opengl.cg.CgGL.CG_BOOL2x2 = 0x464
static

Defined as part of enum type "CGtype" with expression '0x464', CType: int.

Definition at line 866 of file CgGL.java.

◆ CG_BOOL2x3

final int com.jogamp.opengl.cg.CgGL.CG_BOOL2x3 = 0x465
static

Defined as part of enum type "CGtype" with expression '0x465', CType: int.

Definition at line 868 of file CgGL.java.

◆ CG_BOOL2x4

final int com.jogamp.opengl.cg.CgGL.CG_BOOL2x4 = 0x466
static

Defined as part of enum type "CGtype" with expression '0x466', CType: int.

Definition at line 870 of file CgGL.java.

◆ CG_BOOL3

final int com.jogamp.opengl.cg.CgGL.CG_BOOL3 = 0x45d
static

Defined as part of enum type "CGtype" with expression '0x45d', CType: int.

Definition at line 852 of file CgGL.java.

◆ CG_BOOL3x1

final int com.jogamp.opengl.cg.CgGL.CG_BOOL3x1 = 0x467
static

Defined as part of enum type "CGtype" with expression '0x467', CType: int.

Definition at line 872 of file CgGL.java.

◆ CG_BOOL3x2

final int com.jogamp.opengl.cg.CgGL.CG_BOOL3x2 = 0x468
static

Defined as part of enum type "CGtype" with expression '0x468', CType: int.

Definition at line 874 of file CgGL.java.

◆ CG_BOOL3x3

final int com.jogamp.opengl.cg.CgGL.CG_BOOL3x3 = 0x469
static

Defined as part of enum type "CGtype" with expression '0x469', CType: int.

Definition at line 876 of file CgGL.java.

◆ CG_BOOL3x4

final int com.jogamp.opengl.cg.CgGL.CG_BOOL3x4 = 0x46a
static

Defined as part of enum type "CGtype" with expression '0x46a', CType: int.

Definition at line 878 of file CgGL.java.

◆ CG_BOOL4

final int com.jogamp.opengl.cg.CgGL.CG_BOOL4 = 0x45e
static

Defined as part of enum type "CGtype" with expression '0x45e', CType: int.

Definition at line 854 of file CgGL.java.

◆ CG_BOOL4x1

final int com.jogamp.opengl.cg.CgGL.CG_BOOL4x1 = 0x46b
static

Defined as part of enum type "CGtype" with expression '0x46b', CType: int.

Definition at line 880 of file CgGL.java.

◆ CG_BOOL4x2

final int com.jogamp.opengl.cg.CgGL.CG_BOOL4x2 = 0x46c
static

Defined as part of enum type "CGtype" with expression '0x46c', CType: int.

Definition at line 882 of file CgGL.java.

◆ CG_BOOL4x3

final int com.jogamp.opengl.cg.CgGL.CG_BOOL4x3 = 0x46d
static

Defined as part of enum type "CGtype" with expression '0x46d', CType: int.

Definition at line 884 of file CgGL.java.

◆ CG_BOOL4x4

final int com.jogamp.opengl.cg.CgGL.CG_BOOL4x4 = 0x46e
static

Defined as part of enum type "CGtype" with expression '0x46e', CType: int.

Definition at line 886 of file CgGL.java.

◆ CG_C

final int com.jogamp.opengl.cg.CgGL.CG_C = 0x882
static

Defined as part of enum type "CGresource" with expression '2178', CType: int.

Definition at line 218 of file CgGL.java.

◆ CG_CANNOT_DESTROY_PARAMETER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_CANNOT_DESTROY_PARAMETER_ERROR = 0x1c
static

Defined as part of enum type "CGerror" with expression '28', CType: int.

Definition at line 82 of file CgGL.java.

◆ CG_COL0

final int com.jogamp.opengl.cg.CgGL.CG_COL0 = 0x8c5
static

Defined as part of enum type "CGresource" with expression '2245', CType: int.

Definition at line 238 of file CgGL.java.

◆ CG_COL1

final int com.jogamp.opengl.cg.CgGL.CG_COL1 = 0x8c6
static

Defined as part of enum type "CGresource" with expression '2246', CType: int.

Definition at line 240 of file CgGL.java.

◆ CG_COL2

final int com.jogamp.opengl.cg.CgGL.CG_COL2 = 0x8c7
static

Defined as part of enum type "CGresource" with expression '2247', CType: int.

Definition at line 242 of file CgGL.java.

◆ CG_COL3

final int com.jogamp.opengl.cg.CgGL.CG_COL3 = 0x8c8
static

Defined as part of enum type "CGresource" with expression '2248', CType: int.

Definition at line 244 of file CgGL.java.

◆ CG_COLOR0

final int com.jogamp.opengl.cg.CgGL.CG_COLOR0 = 0xac5
static

Defined as part of enum type "CGresource" with expression '2757', CType: int.

Definition at line 350 of file CgGL.java.

◆ CG_COLOR1

final int com.jogamp.opengl.cg.CgGL.CG_COLOR1 = 0xac6
static

Defined as part of enum type "CGresource" with expression '2758', CType: int.

Definition at line 352 of file CgGL.java.

◆ CG_COLOR10

final int com.jogamp.opengl.cg.CgGL.CG_COLOR10 = 0xacf
static

Defined as part of enum type "CGresource" with expression '2767', CType: int.

Definition at line 370 of file CgGL.java.

◆ CG_COLOR11

final int com.jogamp.opengl.cg.CgGL.CG_COLOR11 = 0xad0
static

Defined as part of enum type "CGresource" with expression '2768', CType: int.

Definition at line 372 of file CgGL.java.

◆ CG_COLOR12

final int com.jogamp.opengl.cg.CgGL.CG_COLOR12 = 0xad1
static

Defined as part of enum type "CGresource" with expression '2769', CType: int.

Definition at line 374 of file CgGL.java.

◆ CG_COLOR13

final int com.jogamp.opengl.cg.CgGL.CG_COLOR13 = 0xad2
static

Defined as part of enum type "CGresource" with expression '2770', CType: int.

Definition at line 376 of file CgGL.java.

◆ CG_COLOR14

final int com.jogamp.opengl.cg.CgGL.CG_COLOR14 = 0xad3
static

Defined as part of enum type "CGresource" with expression '2771', CType: int.

Definition at line 378 of file CgGL.java.

◆ CG_COLOR15

final int com.jogamp.opengl.cg.CgGL.CG_COLOR15 = 0xad4
static

Defined as part of enum type "CGresource" with expression '2772', CType: int.

Definition at line 380 of file CgGL.java.

◆ CG_COLOR2

final int com.jogamp.opengl.cg.CgGL.CG_COLOR2 = 0xac7
static

Defined as part of enum type "CGresource" with expression '2759', CType: int.

Definition at line 354 of file CgGL.java.

◆ CG_COLOR3

final int com.jogamp.opengl.cg.CgGL.CG_COLOR3 = 0xac8
static

Defined as part of enum type "CGresource" with expression '2760', CType: int.

Definition at line 356 of file CgGL.java.

◆ CG_COLOR4

final int com.jogamp.opengl.cg.CgGL.CG_COLOR4 = 0xac9
static

Defined as part of enum type "CGresource" with expression '2761', CType: int.

Definition at line 358 of file CgGL.java.

◆ CG_COLOR5

final int com.jogamp.opengl.cg.CgGL.CG_COLOR5 = 0xaca
static

Defined as part of enum type "CGresource" with expression '2762', CType: int.

Definition at line 360 of file CgGL.java.

◆ CG_COLOR6

final int com.jogamp.opengl.cg.CgGL.CG_COLOR6 = 0xacb
static

Defined as part of enum type "CGresource" with expression '2763', CType: int.

Definition at line 362 of file CgGL.java.

◆ CG_COLOR7

final int com.jogamp.opengl.cg.CgGL.CG_COLOR7 = 0xacc
static

Defined as part of enum type "CGresource" with expression '2764', CType: int.

Definition at line 364 of file CgGL.java.

◆ CG_COLOR8

final int com.jogamp.opengl.cg.CgGL.CG_COLOR8 = 0xacd
static

Defined as part of enum type "CGresource" with expression '2765', CType: int.

Definition at line 366 of file CgGL.java.

◆ CG_COLOR9

final int com.jogamp.opengl.cg.CgGL.CG_COLOR9 = 0xace
static

Defined as part of enum type "CGresource" with expression '2766', CType: int.

Definition at line 368 of file CgGL.java.

◆ CG_COLUMN_MAJOR

final int com.jogamp.opengl.cg.CgGL.CG_COLUMN_MAJOR = 0x1019
static

Defined as part of enum type "CGenum" with expression '4121', CType: int.

Definition at line 1000 of file CgGL.java.

◆ CG_COMBINER_CONST0

final int com.jogamp.opengl.cg.CgGL.CG_COMBINER_CONST0 = 0xcd4
static

Defined as part of enum type "CGresource" with expression '3284', CType: int.

Definition at line 640 of file CgGL.java.

◆ CG_COMBINER_CONST1

final int com.jogamp.opengl.cg.CgGL.CG_COMBINER_CONST1 = 0xcd5
static

Defined as part of enum type "CGresource" with expression '3285', CType: int.

Definition at line 642 of file CgGL.java.

◆ CG_COMBINER_STAGE_CONST0

final int com.jogamp.opengl.cg.CgGL.CG_COMBINER_STAGE_CONST0 = 0xcd6
static

Defined as part of enum type "CGresource" with expression '3286', CType: int.

Definition at line 644 of file CgGL.java.

◆ CG_COMBINER_STAGE_CONST1

final int com.jogamp.opengl.cg.CgGL.CG_COMBINER_STAGE_CONST1 = 0xcd7
static

Defined as part of enum type "CGresource" with expression '3287', CType: int.

Definition at line 646 of file CgGL.java.

◆ CG_COMPILE_IMMEDIATE

final int com.jogamp.opengl.cg.CgGL.CG_COMPILE_IMMEDIATE = 0x1013
static

Defined as part of enum type "CGenum" with expression '4115', CType: int.

Definition at line 988 of file CgGL.java.

◆ CG_COMPILE_LAZY

final int com.jogamp.opengl.cg.CgGL.CG_COMPILE_LAZY = 0x1014
static

Defined as part of enum type "CGenum" with expression '4116', CType: int.

Definition at line 990 of file CgGL.java.

◆ CG_COMPILE_MANUAL

final int com.jogamp.opengl.cg.CgGL.CG_COMPILE_MANUAL = 0x1012
static

Defined as part of enum type "CGenum" with expression '4114', CType: int.

Definition at line 986 of file CgGL.java.

◆ CG_COMPILED_PROGRAM

final int com.jogamp.opengl.cg.CgGL.CG_COMPILED_PROGRAM = 0x100a
static

Defined as part of enum type "CGenum" with expression '4106', CType: int.

Definition at line 970 of file CgGL.java.

◆ CG_COMPILER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_COMPILER_ERROR = 0x1
static

Defined as part of enum type "CGerror" with expression '1', CType: int.

Definition at line 28 of file CgGL.java.

◆ CG_CONFLICTING_PARAMETER_TYPES_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_CONFLICTING_PARAMETER_TYPES_ERROR = 0x19
static

Defined as part of enum type "CGerror" with expression '25', CType: int.

Definition at line 76 of file CgGL.java.

◆ CG_CONFLICTING_TYPES_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_CONFLICTING_TYPES_ERROR = 0x18
static

Defined as part of enum type "CGerror" with expression '24', CType: int.

Definition at line 74 of file CgGL.java.

◆ CG_CONST_EYE

final int com.jogamp.opengl.cg.CgGL.CG_CONST_EYE = 0xcdb
static

Defined as part of enum type "CGresource" with expression '3291', CType: int.

Definition at line 654 of file CgGL.java.

◆ CG_CONSTANT

final int com.jogamp.opengl.cg.CgGL.CG_CONSTANT = 0x1007
static

Defined as part of enum type "CGenum" with expression '4103', CType: int.

Definition at line 964 of file CgGL.java.

◆ CG_CURRENT

final int com.jogamp.opengl.cg.CgGL.CG_CURRENT = 0x1015
static

Defined as part of enum type "CGenum" with expression '4117', CType: int.

Definition at line 992 of file CgGL.java.

◆ CG_DEFAULT

final int com.jogamp.opengl.cg.CgGL.CG_DEFAULT = 0x100e
static

Defined as part of enum type "CGenum" with expression '4110', CType: int.

Definition at line 978 of file CgGL.java.

◆ CG_DEPTH0

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH0 = 0xb75
static

Defined as part of enum type "CGresource" with expression '2933', CType: int.

Definition at line 478 of file CgGL.java.

◆ CG_DEPTH1

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH1 = 0xb76
static

Defined as part of enum type "CGresource" with expression '2934', CType: int.

Definition at line 480 of file CgGL.java.

◆ CG_DEPTH10

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH10 = 0xb7f
static

Defined as part of enum type "CGresource" with expression '2943', CType: int.

Definition at line 498 of file CgGL.java.

◆ CG_DEPTH11

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH11 = 0xb80
static

Defined as part of enum type "CGresource" with expression '2944', CType: int.

Definition at line 500 of file CgGL.java.

◆ CG_DEPTH12

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH12 = 0xb81
static

Defined as part of enum type "CGresource" with expression '2945', CType: int.

Definition at line 502 of file CgGL.java.

◆ CG_DEPTH13

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH13 = 0xb82
static

Defined as part of enum type "CGresource" with expression '2946', CType: int.

Definition at line 504 of file CgGL.java.

◆ CG_DEPTH14

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH14 = 0xb83
static

Defined as part of enum type "CGresource" with expression '2947', CType: int.

Definition at line 506 of file CgGL.java.

◆ CG_DEPTH15

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH15 = 0xb84
static

Defined as part of enum type "CGresource" with expression '2948', CType: int.

Definition at line 508 of file CgGL.java.

◆ CG_DEPTH2

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH2 = 0xb77
static

Defined as part of enum type "CGresource" with expression '2935', CType: int.

Definition at line 482 of file CgGL.java.

◆ CG_DEPTH3

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH3 = 0xb78
static

Defined as part of enum type "CGresource" with expression '2936', CType: int.

Definition at line 484 of file CgGL.java.

◆ CG_DEPTH4

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH4 = 0xb79
static

Defined as part of enum type "CGresource" with expression '2937', CType: int.

Definition at line 486 of file CgGL.java.

◆ CG_DEPTH5

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH5 = 0xb7a
static

Defined as part of enum type "CGresource" with expression '2938', CType: int.

Definition at line 488 of file CgGL.java.

◆ CG_DEPTH6

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH6 = 0xb7b
static

Defined as part of enum type "CGresource" with expression '2939', CType: int.

Definition at line 490 of file CgGL.java.

◆ CG_DEPTH7

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH7 = 0xb7c
static

Defined as part of enum type "CGresource" with expression '2940', CType: int.

Definition at line 492 of file CgGL.java.

◆ CG_DEPTH8

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH8 = 0xb7d
static

Defined as part of enum type "CGresource" with expression '2941', CType: int.

Definition at line 494 of file CgGL.java.

◆ CG_DEPTH9

final int com.jogamp.opengl.cg.CgGL.CG_DEPTH9 = 0x7366
static

Defined as part of enum type "CGresource" with expression '29542', CType: int.

Definition at line 496 of file CgGL.java.

◆ CG_DIFFUSE0

final int com.jogamp.opengl.cg.CgGL.CG_DIFFUSE0 = 0x9c5
static

Defined as part of enum type "CGresource" with expression '2501', CType: int.

Definition at line 282 of file CgGL.java.

◆ CG_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_ERROR = 0x100f
static

Defined as part of enum type "CGenum" with expression '4111', CType: int.

Definition at line 980 of file CgGL.java.

◆ CG_FILE_READ_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_FILE_READ_ERROR = 0xc
static

Defined as part of enum type "CGerror" with expression '12', CType: int.

Definition at line 50 of file CgGL.java.

◆ CG_FILE_WRITE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_FILE_WRITE_ERROR = 0xd
static

Defined as part of enum type "CGerror" with expression '13', CType: int.

Definition at line 52 of file CgGL.java.

◆ CG_FIXED

final int com.jogamp.opengl.cg.CgGL.CG_FIXED = 0x42e
static

Defined as part of enum type "CGtype" with expression '0x42e', CType: int.

Definition at line 758 of file CgGL.java.

◆ CG_FIXED1

final int com.jogamp.opengl.cg.CgGL.CG_FIXED1 = 0x444
static

Defined as part of enum type "CGtype" with expression '0x444', CType: int.

Definition at line 802 of file CgGL.java.

◆ CG_FIXED1x1

final int com.jogamp.opengl.cg.CgGL.CG_FIXED1x1 = 0x432
static

Defined as part of enum type "CGtype" with expression '0x432', CType: int.

Definition at line 766 of file CgGL.java.

◆ CG_FIXED1x2

final int com.jogamp.opengl.cg.CgGL.CG_FIXED1x2 = 0x433
static

Defined as part of enum type "CGtype" with expression '0x433', CType: int.

Definition at line 768 of file CgGL.java.

◆ CG_FIXED1x3

final int com.jogamp.opengl.cg.CgGL.CG_FIXED1x3 = 0x434
static

Defined as part of enum type "CGtype" with expression '0x434', CType: int.

Definition at line 770 of file CgGL.java.

◆ CG_FIXED1x4

final int com.jogamp.opengl.cg.CgGL.CG_FIXED1x4 = 0x435
static

Defined as part of enum type "CGtype" with expression '0x435', CType: int.

Definition at line 772 of file CgGL.java.

◆ CG_FIXED2

final int com.jogamp.opengl.cg.CgGL.CG_FIXED2 = 0x42f
static

Defined as part of enum type "CGtype" with expression '0x42f', CType: int.

Definition at line 760 of file CgGL.java.

◆ CG_FIXED2x1

final int com.jogamp.opengl.cg.CgGL.CG_FIXED2x1 = 0x436
static

Defined as part of enum type "CGtype" with expression '0x436', CType: int.

Definition at line 774 of file CgGL.java.

◆ CG_FIXED2x2

final int com.jogamp.opengl.cg.CgGL.CG_FIXED2x2 = 0x437
static

Defined as part of enum type "CGtype" with expression '0x437', CType: int.

Definition at line 776 of file CgGL.java.

◆ CG_FIXED2x3

final int com.jogamp.opengl.cg.CgGL.CG_FIXED2x3 = 0x438
static

Defined as part of enum type "CGtype" with expression '0x438', CType: int.

Definition at line 778 of file CgGL.java.

◆ CG_FIXED2x4

final int com.jogamp.opengl.cg.CgGL.CG_FIXED2x4 = 0x439
static

Defined as part of enum type "CGtype" with expression '0x439', CType: int.

Definition at line 780 of file CgGL.java.

◆ CG_FIXED3

final int com.jogamp.opengl.cg.CgGL.CG_FIXED3 = 0x430
static

Defined as part of enum type "CGtype" with expression '0x430', CType: int.

Definition at line 762 of file CgGL.java.

◆ CG_FIXED3x1

final int com.jogamp.opengl.cg.CgGL.CG_FIXED3x1 = 0x43a
static

Defined as part of enum type "CGtype" with expression '0x43a', CType: int.

Definition at line 782 of file CgGL.java.

◆ CG_FIXED3x2

final int com.jogamp.opengl.cg.CgGL.CG_FIXED3x2 = 0x43b
static

Defined as part of enum type "CGtype" with expression '0x43b', CType: int.

Definition at line 784 of file CgGL.java.

◆ CG_FIXED3x3

final int com.jogamp.opengl.cg.CgGL.CG_FIXED3x3 = 0x43c
static

Defined as part of enum type "CGtype" with expression '0x43c', CType: int.

Definition at line 786 of file CgGL.java.

◆ CG_FIXED3x4

final int com.jogamp.opengl.cg.CgGL.CG_FIXED3x4 = 0x43d
static

Defined as part of enum type "CGtype" with expression '0x43d', CType: int.

Definition at line 788 of file CgGL.java.

◆ CG_FIXED4

final int com.jogamp.opengl.cg.CgGL.CG_FIXED4 = 0x431
static

Defined as part of enum type "CGtype" with expression '0x431', CType: int.

Definition at line 764 of file CgGL.java.

◆ CG_FIXED4x1

final int com.jogamp.opengl.cg.CgGL.CG_FIXED4x1 = 0x43e
static

Defined as part of enum type "CGtype" with expression '0x43e', CType: int.

Definition at line 790 of file CgGL.java.

◆ CG_FIXED4x2

final int com.jogamp.opengl.cg.CgGL.CG_FIXED4x2 = 0x43f
static

Defined as part of enum type "CGtype" with expression '0x43f', CType: int.

Definition at line 792 of file CgGL.java.

◆ CG_FIXED4x3

final int com.jogamp.opengl.cg.CgGL.CG_FIXED4x3 = 0x440
static

Defined as part of enum type "CGtype" with expression '0x440', CType: int.

Definition at line 794 of file CgGL.java.

◆ CG_FIXED4x4

final int com.jogamp.opengl.cg.CgGL.CG_FIXED4x4 = 0x441
static

Defined as part of enum type "CGtype" with expression '0x441', CType: int.

Definition at line 796 of file CgGL.java.

◆ CG_FLOAT

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT = 0x415
static

Defined as part of enum type "CGtype" with expression '0x415', CType: int.

Definition at line 708 of file CgGL.java.

◆ CG_FLOAT1

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT1 = 0x443
static

Defined as part of enum type "CGtype" with expression '0x443', CType: int.

Definition at line 800 of file CgGL.java.

◆ CG_FLOAT1x1

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT1x1 = 0x419
static

Defined as part of enum type "CGtype" with expression '0x419', CType: int.

Definition at line 716 of file CgGL.java.

◆ CG_FLOAT1x2

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT1x2 = 0x41a
static

Defined as part of enum type "CGtype" with expression '0x41a', CType: int.

Definition at line 718 of file CgGL.java.

◆ CG_FLOAT1x3

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT1x3 = 0x41b
static

Defined as part of enum type "CGtype" with expression '0x41b', CType: int.

Definition at line 720 of file CgGL.java.

◆ CG_FLOAT1x4

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT1x4 = 0x41c
static

Defined as part of enum type "CGtype" with expression '0x41c', CType: int.

Definition at line 722 of file CgGL.java.

◆ CG_FLOAT2

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT2 = 0x416
static

Defined as part of enum type "CGtype" with expression '0x416', CType: int.

Definition at line 710 of file CgGL.java.

◆ CG_FLOAT2x1

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT2x1 = 0x41d
static

Defined as part of enum type "CGtype" with expression '0x41d', CType: int.

Definition at line 724 of file CgGL.java.

◆ CG_FLOAT2x2

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT2x2 = 0x41e
static

Defined as part of enum type "CGtype" with expression '0x41e', CType: int.

Definition at line 726 of file CgGL.java.

◆ CG_FLOAT2x3

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT2x3 = 0x41f
static

Defined as part of enum type "CGtype" with expression '0x41f', CType: int.

Definition at line 728 of file CgGL.java.

◆ CG_FLOAT2x4

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT2x4 = 0x420
static

Defined as part of enum type "CGtype" with expression '0x420', CType: int.

Definition at line 730 of file CgGL.java.

◆ CG_FLOAT3

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT3 = 0x417
static

Defined as part of enum type "CGtype" with expression '0x417', CType: int.

Definition at line 712 of file CgGL.java.

◆ CG_FLOAT3x1

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT3x1 = 0x421
static

Defined as part of enum type "CGtype" with expression '0x421', CType: int.

Definition at line 732 of file CgGL.java.

◆ CG_FLOAT3x2

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT3x2 = 0x422
static

Defined as part of enum type "CGtype" with expression '0x422', CType: int.

Definition at line 734 of file CgGL.java.

◆ CG_FLOAT3x3

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT3x3 = 0x423
static

Defined as part of enum type "CGtype" with expression '0x423', CType: int.

Definition at line 736 of file CgGL.java.

◆ CG_FLOAT3x4

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT3x4 = 0x424
static

Defined as part of enum type "CGtype" with expression '0x424', CType: int.

Definition at line 738 of file CgGL.java.

◆ CG_FLOAT4

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT4 = 0x418
static

Defined as part of enum type "CGtype" with expression '0x418', CType: int.

Definition at line 714 of file CgGL.java.

◆ CG_FLOAT4x1

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT4x1 = 0x425
static

Defined as part of enum type "CGtype" with expression '0x425', CType: int.

Definition at line 740 of file CgGL.java.

◆ CG_FLOAT4x2

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT4x2 = 0x426
static

Defined as part of enum type "CGtype" with expression '0x426', CType: int.

Definition at line 742 of file CgGL.java.

◆ CG_FLOAT4x3

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT4x3 = 0x427
static

Defined as part of enum type "CGtype" with expression '0x427', CType: int.

Definition at line 744 of file CgGL.java.

◆ CG_FLOAT4x4

final int com.jogamp.opengl.cg.CgGL.CG_FLOAT4x4 = 0x428
static

Defined as part of enum type "CGtype" with expression '0x428', CType: int.

Definition at line 746 of file CgGL.java.

◆ CG_FOG0

final int com.jogamp.opengl.cg.CgGL.CG_FOG0 = 0xb65
static

Defined as part of enum type "CGresource" with expression '2917', CType: int.

Definition at line 446 of file CgGL.java.

◆ CG_FOG1

final int com.jogamp.opengl.cg.CgGL.CG_FOG1 = 0xb66
static

Defined as part of enum type "CGresource" with expression '2918', CType: int.

Definition at line 448 of file CgGL.java.

◆ CG_FOG10

final int com.jogamp.opengl.cg.CgGL.CG_FOG10 = 0xb6f
static

Defined as part of enum type "CGresource" with expression '2927', CType: int.

Definition at line 466 of file CgGL.java.

◆ CG_FOG11

final int com.jogamp.opengl.cg.CgGL.CG_FOG11 = 0xb70
static

Defined as part of enum type "CGresource" with expression '2928', CType: int.

Definition at line 468 of file CgGL.java.

◆ CG_FOG12

final int com.jogamp.opengl.cg.CgGL.CG_FOG12 = 0xb71
static

Defined as part of enum type "CGresource" with expression '2929', CType: int.

Definition at line 470 of file CgGL.java.

◆ CG_FOG13

final int com.jogamp.opengl.cg.CgGL.CG_FOG13 = 0xb72
static

Defined as part of enum type "CGresource" with expression '2930', CType: int.

Definition at line 472 of file CgGL.java.

◆ CG_FOG14

final int com.jogamp.opengl.cg.CgGL.CG_FOG14 = 0xb73
static

Defined as part of enum type "CGresource" with expression '2931', CType: int.

Definition at line 474 of file CgGL.java.

◆ CG_FOG15

final int com.jogamp.opengl.cg.CgGL.CG_FOG15 = 0xb74
static

Defined as part of enum type "CGresource" with expression '2932', CType: int.

Definition at line 476 of file CgGL.java.

◆ CG_FOG2

final int com.jogamp.opengl.cg.CgGL.CG_FOG2 = 0xb67
static

Defined as part of enum type "CGresource" with expression '2919', CType: int.

Definition at line 450 of file CgGL.java.

◆ CG_FOG3

final int com.jogamp.opengl.cg.CgGL.CG_FOG3 = 0xb68
static

Defined as part of enum type "CGresource" with expression '2920', CType: int.

Definition at line 452 of file CgGL.java.

◆ CG_FOG4

final int com.jogamp.opengl.cg.CgGL.CG_FOG4 = 0xb69
static

Defined as part of enum type "CGresource" with expression '2921', CType: int.

Definition at line 454 of file CgGL.java.

◆ CG_FOG5

final int com.jogamp.opengl.cg.CgGL.CG_FOG5 = 0xb6a
static

Defined as part of enum type "CGresource" with expression '2922', CType: int.

Definition at line 456 of file CgGL.java.

◆ CG_FOG6

final int com.jogamp.opengl.cg.CgGL.CG_FOG6 = 0xb6b
static

Defined as part of enum type "CGresource" with expression '2923', CType: int.

Definition at line 458 of file CgGL.java.

◆ CG_FOG7

final int com.jogamp.opengl.cg.CgGL.CG_FOG7 = 0xb6c
static

Defined as part of enum type "CGresource" with expression '2924', CType: int.

Definition at line 460 of file CgGL.java.

◆ CG_FOG8

final int com.jogamp.opengl.cg.CgGL.CG_FOG8 = 0xb6d
static

Defined as part of enum type "CGresource" with expression '2925', CType: int.

Definition at line 462 of file CgGL.java.

◆ CG_FOG9

final int com.jogamp.opengl.cg.CgGL.CG_FOG9 = 0xb6e
static

Defined as part of enum type "CGresource" with expression '2926', CType: int.

Definition at line 464 of file CgGL.java.

◆ CG_FOGCOORD

final int com.jogamp.opengl.cg.CgGL.CG_FOGCOORD = 0xc54
static

Defined as part of enum type "CGresource" with expression '3156', CType: int.

Definition at line 606 of file CgGL.java.

◆ CG_GL_FRAGMENT

final int com.jogamp.opengl.cg.CgGL.CG_GL_FRAGMENT = 0x9
static

Defined as part of enum type "CGGLenum" with expression '0x9', CType: int.

Definition at line 152 of file CgGL.java.

◆ CG_GL_MATRIX_IDENTITY

final int com.jogamp.opengl.cg.CgGL.CG_GL_MATRIX_IDENTITY = 0x0
static

Defined as part of enum type "CGGLenum" with expression '0', CType: int.

Definition at line 134 of file CgGL.java.

◆ CG_GL_MATRIX_INVERSE

final int com.jogamp.opengl.cg.CgGL.CG_GL_MATRIX_INVERSE = 0x2
static

Defined as part of enum type "CGGLenum" with expression '2', CType: int.

Definition at line 138 of file CgGL.java.

◆ CG_GL_MATRIX_INVERSE_TRANSPOSE

final int com.jogamp.opengl.cg.CgGL.CG_GL_MATRIX_INVERSE_TRANSPOSE = 0x3
static

Defined as part of enum type "CGGLenum" with expression '3', CType: int.

Definition at line 140 of file CgGL.java.

◆ CG_GL_MATRIX_TRANSPOSE

final int com.jogamp.opengl.cg.CgGL.CG_GL_MATRIX_TRANSPOSE = 0x1
static

Defined as part of enum type "CGGLenum" with expression '1', CType: int.

Definition at line 136 of file CgGL.java.

◆ CG_GL_MODELVIEW_MATRIX

final int com.jogamp.opengl.cg.CgGL.CG_GL_MODELVIEW_MATRIX = 0x4
static

Defined as part of enum type "CGGLenum" with expression '0x4', CType: int.

Definition at line 142 of file CgGL.java.

◆ CG_GL_MODELVIEW_PROJECTION_MATRIX

final int com.jogamp.opengl.cg.CgGL.CG_GL_MODELVIEW_PROJECTION_MATRIX = 0x7
static

Defined as part of enum type "CGGLenum" with expression '0x7', CType: int.

Definition at line 148 of file CgGL.java.

◆ CG_GL_PROJECTION_MATRIX

final int com.jogamp.opengl.cg.CgGL.CG_GL_PROJECTION_MATRIX = 0x5
static

Defined as part of enum type "CGGLenum" with expression '0x5', CType: int.

Definition at line 144 of file CgGL.java.

◆ CG_GL_TEXTURE_MATRIX

final int com.jogamp.opengl.cg.CgGL.CG_GL_TEXTURE_MATRIX = 0x6
static

Defined as part of enum type "CGGLenum" with expression '0x6', CType: int.

Definition at line 146 of file CgGL.java.

◆ CG_GL_VERTEX

final int com.jogamp.opengl.cg.CgGL.CG_GL_VERTEX = 0x8
static

Defined as part of enum type "CGGLenum" with expression '0x8', CType: int.

Definition at line 150 of file CgGL.java.

◆ CG_GLOBAL

final int com.jogamp.opengl.cg.CgGL.CG_GLOBAL = 0x100c
static

Defined as part of enum type "CGenum" with expression '4108', CType: int.

Definition at line 974 of file CgGL.java.

◆ CG_HALF

final int com.jogamp.opengl.cg.CgGL.CG_HALF = 0x401
static

Defined as part of enum type "CGtype" with expression '0x401', CType: int.

Definition at line 668 of file CgGL.java.

◆ CG_HALF1

final int com.jogamp.opengl.cg.CgGL.CG_HALF1 = 0x442
static

Defined as part of enum type "CGtype" with expression '0x442', CType: int.

Definition at line 798 of file CgGL.java.

◆ CG_HALF1x1

final int com.jogamp.opengl.cg.CgGL.CG_HALF1x1 = 0x405
static

Defined as part of enum type "CGtype" with expression '0x405', CType: int.

Definition at line 676 of file CgGL.java.

◆ CG_HALF1x2

final int com.jogamp.opengl.cg.CgGL.CG_HALF1x2 = 0x406
static

Defined as part of enum type "CGtype" with expression '0x406', CType: int.

Definition at line 678 of file CgGL.java.

◆ CG_HALF1x3

final int com.jogamp.opengl.cg.CgGL.CG_HALF1x3 = 0x407
static

Defined as part of enum type "CGtype" with expression '0x407', CType: int.

Definition at line 680 of file CgGL.java.

◆ CG_HALF1x4

final int com.jogamp.opengl.cg.CgGL.CG_HALF1x4 = 0x408
static

Defined as part of enum type "CGtype" with expression '0x408', CType: int.

Definition at line 682 of file CgGL.java.

◆ CG_HALF2

final int com.jogamp.opengl.cg.CgGL.CG_HALF2 = 0x402
static

Defined as part of enum type "CGtype" with expression '0x402', CType: int.

Definition at line 670 of file CgGL.java.

◆ CG_HALF2x1

final int com.jogamp.opengl.cg.CgGL.CG_HALF2x1 = 0x409
static

Defined as part of enum type "CGtype" with expression '0x409', CType: int.

Definition at line 684 of file CgGL.java.

◆ CG_HALF2x2

final int com.jogamp.opengl.cg.CgGL.CG_HALF2x2 = 0x40a
static

Defined as part of enum type "CGtype" with expression '0x40a', CType: int.

Definition at line 686 of file CgGL.java.

◆ CG_HALF2x3

final int com.jogamp.opengl.cg.CgGL.CG_HALF2x3 = 0x40b
static

Defined as part of enum type "CGtype" with expression '0x40b', CType: int.

Definition at line 688 of file CgGL.java.

◆ CG_HALF2x4

final int com.jogamp.opengl.cg.CgGL.CG_HALF2x4 = 0x40c
static

Defined as part of enum type "CGtype" with expression '0x40c', CType: int.

Definition at line 690 of file CgGL.java.

◆ CG_HALF3

final int com.jogamp.opengl.cg.CgGL.CG_HALF3 = 0x403
static

Defined as part of enum type "CGtype" with expression '0x403', CType: int.

Definition at line 672 of file CgGL.java.

◆ CG_HALF3x1

final int com.jogamp.opengl.cg.CgGL.CG_HALF3x1 = 0x40d
static

Defined as part of enum type "CGtype" with expression '0x40d', CType: int.

Definition at line 692 of file CgGL.java.

◆ CG_HALF3x2

final int com.jogamp.opengl.cg.CgGL.CG_HALF3x2 = 0x40e
static

Defined as part of enum type "CGtype" with expression '0x40e', CType: int.

Definition at line 694 of file CgGL.java.

◆ CG_HALF3x3

final int com.jogamp.opengl.cg.CgGL.CG_HALF3x3 = 0x40f
static

Defined as part of enum type "CGtype" with expression '0x40f', CType: int.

Definition at line 696 of file CgGL.java.

◆ CG_HALF3x4

final int com.jogamp.opengl.cg.CgGL.CG_HALF3x4 = 0x410
static

Defined as part of enum type "CGtype" with expression '0x410', CType: int.

Definition at line 698 of file CgGL.java.

◆ CG_HALF4

final int com.jogamp.opengl.cg.CgGL.CG_HALF4 = 0x404
static

Defined as part of enum type "CGtype" with expression '0x404', CType: int.

Definition at line 674 of file CgGL.java.

◆ CG_HALF4x1

final int com.jogamp.opengl.cg.CgGL.CG_HALF4x1 = 0x411
static

Defined as part of enum type "CGtype" with expression '0x411', CType: int.

Definition at line 700 of file CgGL.java.

◆ CG_HALF4x2

final int com.jogamp.opengl.cg.CgGL.CG_HALF4x2 = 0x412
static

Defined as part of enum type "CGtype" with expression '0x412', CType: int.

Definition at line 702 of file CgGL.java.

◆ CG_HALF4x3

final int com.jogamp.opengl.cg.CgGL.CG_HALF4x3 = 0x413
static

Defined as part of enum type "CGtype" with expression '0x413', CType: int.

Definition at line 704 of file CgGL.java.

◆ CG_HALF4x4

final int com.jogamp.opengl.cg.CgGL.CG_HALF4x4 = 0x414
static

Defined as part of enum type "CGtype" with expression '0x414', CType: int.

Definition at line 706 of file CgGL.java.

◆ CG_HPOS

final int com.jogamp.opengl.cg.CgGL.CG_HPOS = 0x8c3
static

Defined as part of enum type "CGresource" with expression '2243', CType: int.

Definition at line 236 of file CgGL.java.

◆ CG_IN

final int com.jogamp.opengl.cg.CgGL.CG_IN = 0x1001
static

Defined as part of enum type "CGenum" with expression '4097', CType: int.

Definition at line 952 of file CgGL.java.

◆ CG_INOUT

final int com.jogamp.opengl.cg.CgGL.CG_INOUT = 0x1003
static

Defined as part of enum type "CGenum" with expression '4099', CType: int.

Definition at line 956 of file CgGL.java.

◆ CG_INT

final int com.jogamp.opengl.cg.CgGL.CG_INT = 0x445
static

Defined as part of enum type "CGtype" with expression '0x445', CType: int.

Definition at line 804 of file CgGL.java.

◆ CG_INT1

final int com.jogamp.opengl.cg.CgGL.CG_INT1 = 0x446
static

Defined as part of enum type "CGtype" with expression '0x446', CType: int.

Definition at line 806 of file CgGL.java.

◆ CG_INT1x1

final int com.jogamp.opengl.cg.CgGL.CG_INT1x1 = 0x44a
static

Defined as part of enum type "CGtype" with expression '0x44a', CType: int.

Definition at line 814 of file CgGL.java.

◆ CG_INT1x2

final int com.jogamp.opengl.cg.CgGL.CG_INT1x2 = 0x44b
static

Defined as part of enum type "CGtype" with expression '0x44b', CType: int.

Definition at line 816 of file CgGL.java.

◆ CG_INT1x3

final int com.jogamp.opengl.cg.CgGL.CG_INT1x3 = 0x44c
static

Defined as part of enum type "CGtype" with expression '0x44c', CType: int.

Definition at line 818 of file CgGL.java.

◆ CG_INT1x4

final int com.jogamp.opengl.cg.CgGL.CG_INT1x4 = 0x44d
static

Defined as part of enum type "CGtype" with expression '0x44d', CType: int.

Definition at line 820 of file CgGL.java.

◆ CG_INT2

final int com.jogamp.opengl.cg.CgGL.CG_INT2 = 0x447
static

Defined as part of enum type "CGtype" with expression '0x447', CType: int.

Definition at line 808 of file CgGL.java.

◆ CG_INT2x1

final int com.jogamp.opengl.cg.CgGL.CG_INT2x1 = 0x44e
static

Defined as part of enum type "CGtype" with expression '0x44e', CType: int.

Definition at line 822 of file CgGL.java.

◆ CG_INT2x2

final int com.jogamp.opengl.cg.CgGL.CG_INT2x2 = 0x44f
static

Defined as part of enum type "CGtype" with expression '0x44f', CType: int.

Definition at line 824 of file CgGL.java.

◆ CG_INT2x3

final int com.jogamp.opengl.cg.CgGL.CG_INT2x3 = 0x450
static

Defined as part of enum type "CGtype" with expression '0x450', CType: int.

Definition at line 826 of file CgGL.java.

◆ CG_INT2x4

final int com.jogamp.opengl.cg.CgGL.CG_INT2x4 = 0x451
static

Defined as part of enum type "CGtype" with expression '0x451', CType: int.

Definition at line 828 of file CgGL.java.

◆ CG_INT3

final int com.jogamp.opengl.cg.CgGL.CG_INT3 = 0x448
static

Defined as part of enum type "CGtype" with expression '0x448', CType: int.

Definition at line 810 of file CgGL.java.

◆ CG_INT3x1

final int com.jogamp.opengl.cg.CgGL.CG_INT3x1 = 0x452
static

Defined as part of enum type "CGtype" with expression '0x452', CType: int.

Definition at line 830 of file CgGL.java.

◆ CG_INT3x2

final int com.jogamp.opengl.cg.CgGL.CG_INT3x2 = 0x453
static

Defined as part of enum type "CGtype" with expression '0x453', CType: int.

Definition at line 832 of file CgGL.java.

◆ CG_INT3x3

final int com.jogamp.opengl.cg.CgGL.CG_INT3x3 = 0x454
static

Defined as part of enum type "CGtype" with expression '0x454', CType: int.

Definition at line 834 of file CgGL.java.

◆ CG_INT3x4

final int com.jogamp.opengl.cg.CgGL.CG_INT3x4 = 0x455
static

Defined as part of enum type "CGtype" with expression '0x455', CType: int.

Definition at line 836 of file CgGL.java.

◆ CG_INT4

final int com.jogamp.opengl.cg.CgGL.CG_INT4 = 0x449
static

Defined as part of enum type "CGtype" with expression '0x449', CType: int.

Definition at line 812 of file CgGL.java.

◆ CG_INT4x1

final int com.jogamp.opengl.cg.CgGL.CG_INT4x1 = 0x456
static

Defined as part of enum type "CGtype" with expression '0x456', CType: int.

Definition at line 838 of file CgGL.java.

◆ CG_INT4x2

final int com.jogamp.opengl.cg.CgGL.CG_INT4x2 = 0x457
static

Defined as part of enum type "CGtype" with expression '0x457', CType: int.

Definition at line 840 of file CgGL.java.

◆ CG_INT4x3

final int com.jogamp.opengl.cg.CgGL.CG_INT4x3 = 0x458
static

Defined as part of enum type "CGtype" with expression '0x458', CType: int.

Definition at line 842 of file CgGL.java.

◆ CG_INT4x4

final int com.jogamp.opengl.cg.CgGL.CG_INT4x4 = 0x459
static

Defined as part of enum type "CGtype" with expression '0x459', CType: int.

Definition at line 844 of file CgGL.java.

◆ CG_INVALID_ANNOTATION_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_ANNOTATION_HANDLE_ERROR = 0x2c
static

Defined as part of enum type "CGerror" with expression '44', CType: int.

Definition at line 114 of file CgGL.java.

◆ CG_INVALID_CONTEXT_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_CONTEXT_HANDLE_ERROR = 0x10
static

Defined as part of enum type "CGerror" with expression '16', CType: int.

Definition at line 58 of file CgGL.java.

◆ CG_INVALID_DIMENSION_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_DIMENSION_ERROR = 0x15
static

Defined as part of enum type "CGerror" with expression '21', CType: int.

Definition at line 68 of file CgGL.java.

◆ CG_INVALID_EFFECT_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_EFFECT_HANDLE_ERROR = 0x28
static

Defined as part of enum type "CGerror" with expression '40', CType: int.

Definition at line 106 of file CgGL.java.

◆ CG_INVALID_ENUMERANT_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_ENUMERANT_ERROR = 0xa
static

Defined as part of enum type "CGerror" with expression '10', CType: int.

Definition at line 46 of file CgGL.java.

◆ CG_INVALID_FUNCTION_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_FUNCTION_HANDLE_ERROR = 0x30
static

Defined as part of enum type "CGerror" with expression '48', CType: int.

Definition at line 122 of file CgGL.java.

◆ CG_INVALID_PARAM_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PARAM_HANDLE_ERROR = 0x12
static

Defined as part of enum type "CGerror" with expression '18', CType: int.

Definition at line 62 of file CgGL.java.

◆ CG_INVALID_PARAMETER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PARAMETER_ERROR = 0x2
static

Defined as part of enum type "CGerror" with expression '2', CType: int.

Definition at line 30 of file CgGL.java.

◆ CG_INVALID_PARAMETER_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PARAMETER_HANDLE_ERROR = 0x2e
static

Defined as part of enum type "CGerror" with expression '46', CType: int.

Definition at line 118 of file CgGL.java.

◆ CG_INVALID_PARAMETER_TYPE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PARAMETER_TYPE_ERROR = 0x20
static

Defined as part of enum type "CGerror" with expression '32', CType: int.

Definition at line 90 of file CgGL.java.

◆ CG_INVALID_PARAMETER_VARIABILITY_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PARAMETER_VARIABILITY_ERROR = 0x1b
static

Defined as part of enum type "CGerror" with expression '27', CType: int.

Definition at line 80 of file CgGL.java.

◆ CG_INVALID_PASS_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PASS_HANDLE_ERROR = 0x2b
static

Defined as part of enum type "CGerror" with expression '43', CType: int.

Definition at line 112 of file CgGL.java.

◆ CG_INVALID_POINTER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_POINTER_ERROR = 0x32
static

Defined as part of enum type "CGerror" with expression '50', CType: int.

Definition at line 126 of file CgGL.java.

◆ CG_INVALID_PROFILE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PROFILE_ERROR = 0x3
static

Defined as part of enum type "CGerror" with expression '3', CType: int.

Definition at line 32 of file CgGL.java.

◆ CG_INVALID_PROGRAM_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_PROGRAM_HANDLE_ERROR = 0x11
static

Defined as part of enum type "CGerror" with expression '17', CType: int.

Definition at line 60 of file CgGL.java.

◆ CG_INVALID_SIZE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_SIZE_ERROR = 0x22
static

Defined as part of enum type "CGerror" with expression '34', CType: int.

Definition at line 94 of file CgGL.java.

◆ CG_INVALID_STATE_ASSIGNMENT_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_STATE_ASSIGNMENT_HANDLE_ERROR = 0x2a
static

Defined as part of enum type "CGerror" with expression '42', CType: int.

Definition at line 110 of file CgGL.java.

◆ CG_INVALID_STATE_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_STATE_HANDLE_ERROR = 0x29
static

Defined as part of enum type "CGerror" with expression '41', CType: int.

Definition at line 108 of file CgGL.java.

◆ CG_INVALID_TECHNIQUE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_TECHNIQUE_ERROR = 0x31
static

Defined as part of enum type "CGerror" with expression '49', CType: int.

Definition at line 124 of file CgGL.java.

◆ CG_INVALID_TECHNIQUE_HANDLE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_TECHNIQUE_HANDLE_ERROR = 0x2d
static

Defined as part of enum type "CGerror" with expression '45', CType: int.

Definition at line 116 of file CgGL.java.

◆ CG_INVALID_VALUE_TYPE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_INVALID_VALUE_TYPE_ERROR = 0x8
static

Defined as part of enum type "CGerror" with expression '8', CType: int.

Definition at line 42 of file CgGL.java.

◆ CG_IS_NOT_PROGRAM_PARAMETER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_IS_NOT_PROGRAM_PARAMETER_ERROR = 0x1f
static

Defined as part of enum type "CGerror" with expression '31', CType: int.

Definition at line 88 of file CgGL.java.

◆ CG_LITERAL

final int com.jogamp.opengl.cg.CgGL.CG_LITERAL = 0x1016
static

Defined as part of enum type "CGenum" with expression '4118', CType: int.

Definition at line 994 of file CgGL.java.

◆ CG_MEMORY_ALLOC_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_MEMORY_ALLOC_ERROR = 0xf
static

Defined as part of enum type "CGerror" with expression '15', CType: int.

Definition at line 56 of file CgGL.java.

◆ CG_MIXED

final int com.jogamp.opengl.cg.CgGL.CG_MIXED = 0x1004
static

Defined as part of enum type "CGenum" with expression '4100', CType: int.

Definition at line 958 of file CgGL.java.

◆ CG_NO_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NO_ERROR = 0x0
static

Defined as part of enum type "CGerror" with expression '0', CType: int.

Definition at line 26 of file CgGL.java.

◆ CG_NON_NUMERIC_PARAMETER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NON_NUMERIC_PARAMETER_ERROR = 0x34
static

Defined as part of enum type "CGerror" with expression '52', CType: int.

Definition at line 130 of file CgGL.java.

◆ CG_NORMAL0

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL0 = 0xc14
static

Defined as part of enum type "CGresource" with expression '3092', CType: int.

Definition at line 574 of file CgGL.java.

◆ CG_NORMAL1

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL1 = 0xc15
static

Defined as part of enum type "CGresource" with expression '3093', CType: int.

Definition at line 576 of file CgGL.java.

◆ CG_NORMAL10

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL10 = 0xc1e
static

Defined as part of enum type "CGresource" with expression '3102', CType: int.

Definition at line 594 of file CgGL.java.

◆ CG_NORMAL11

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL11 = 0xc1f
static

Defined as part of enum type "CGresource" with expression '3103', CType: int.

Definition at line 596 of file CgGL.java.

◆ CG_NORMAL12

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL12 = 0xc20
static

Defined as part of enum type "CGresource" with expression '3104', CType: int.

Definition at line 598 of file CgGL.java.

◆ CG_NORMAL13

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL13 = 0xc21
static

Defined as part of enum type "CGresource" with expression '3105', CType: int.

Definition at line 600 of file CgGL.java.

◆ CG_NORMAL14

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL14 = 0xc22
static

Defined as part of enum type "CGresource" with expression '3106', CType: int.

Definition at line 602 of file CgGL.java.

◆ CG_NORMAL15

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL15 = 0xc23
static

Defined as part of enum type "CGresource" with expression '3107', CType: int.

Definition at line 604 of file CgGL.java.

◆ CG_NORMAL2

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL2 = 0xc16
static

Defined as part of enum type "CGresource" with expression '3094', CType: int.

Definition at line 578 of file CgGL.java.

◆ CG_NORMAL3

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL3 = 0xc17
static

Defined as part of enum type "CGresource" with expression '3095', CType: int.

Definition at line 580 of file CgGL.java.

◆ CG_NORMAL4

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL4 = 0xc18
static

Defined as part of enum type "CGresource" with expression '3096', CType: int.

Definition at line 582 of file CgGL.java.

◆ CG_NORMAL5

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL5 = 0xc19
static

Defined as part of enum type "CGresource" with expression '3097', CType: int.

Definition at line 584 of file CgGL.java.

◆ CG_NORMAL6

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL6 = 0xc1a
static

Defined as part of enum type "CGresource" with expression '3098', CType: int.

Definition at line 586 of file CgGL.java.

◆ CG_NORMAL7

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL7 = 0xc1b
static

Defined as part of enum type "CGresource" with expression '3099', CType: int.

Definition at line 588 of file CgGL.java.

◆ CG_NORMAL8

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL8 = 0xc1c
static

Defined as part of enum type "CGresource" with expression '3100', CType: int.

Definition at line 590 of file CgGL.java.

◆ CG_NORMAL9

final int com.jogamp.opengl.cg.CgGL.CG_NORMAL9 = 0xc1d
static

Defined as part of enum type "CGresource" with expression '3101', CType: int.

Definition at line 592 of file CgGL.java.

◆ CG_NOT_4x4_MATRIX_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NOT_4x4_MATRIX_ERROR = 0xb
static

Defined as part of enum type "CGerror" with expression '11', CType: int.

Definition at line 48 of file CgGL.java.

◆ CG_NOT_ENOUGH_DATA_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NOT_ENOUGH_DATA_ERROR = 0x33
static

Defined as part of enum type "CGerror" with expression '51', CType: int.

Definition at line 128 of file CgGL.java.

◆ CG_NOT_MATRIX_PARAM_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NOT_MATRIX_PARAM_ERROR = 0x9
static

Defined as part of enum type "CGerror" with expression '9', CType: int.

Definition at line 44 of file CgGL.java.

◆ CG_NOT_ROOT_PARAMETER_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NOT_ROOT_PARAMETER_ERROR = 0x1d
static

Defined as part of enum type "CGerror" with expression '29', CType: int.

Definition at line 84 of file CgGL.java.

◆ CG_NVPARSE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_NVPARSE_ERROR = 0xe
static

Defined as part of enum type "CGerror" with expression '14', CType: int.

Definition at line 54 of file CgGL.java.

◆ CG_OBJECT

final int com.jogamp.opengl.cg.CgGL.CG_OBJECT = 0x1011
static

Defined as part of enum type "CGenum" with expression '4113', CType: int.

Definition at line 984 of file CgGL.java.

◆ CG_OFFSET_TEXTURE_BIAS

final int com.jogamp.opengl.cg.CgGL.CG_OFFSET_TEXTURE_BIAS = 0xcda
static

Defined as part of enum type "CGresource" with expression '3290', CType: int.

Definition at line 652 of file CgGL.java.

◆ CG_OFFSET_TEXTURE_MATRIX

final int com.jogamp.opengl.cg.CgGL.CG_OFFSET_TEXTURE_MATRIX = 0xcd8
static

Defined as part of enum type "CGresource" with expression '3288', CType: int.

Definition at line 648 of file CgGL.java.

◆ CG_OFFSET_TEXTURE_SCALE

final int com.jogamp.opengl.cg.CgGL.CG_OFFSET_TEXTURE_SCALE = 0xcd9
static

Defined as part of enum type "CGresource" with expression '3289', CType: int.

Definition at line 650 of file CgGL.java.

◆ CG_OUT

final int com.jogamp.opengl.cg.CgGL.CG_OUT = 0x1002
static

Defined as part of enum type "CGenum" with expression '4098', CType: int.

Definition at line 954 of file CgGL.java.

◆ CG_OUT_OF_ARRAY_BOUNDS_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_OUT_OF_ARRAY_BOUNDS_ERROR = 0x17
static

Defined as part of enum type "CGerror" with expression '23', CType: int.

Definition at line 72 of file CgGL.java.

◆ CG_PARAMETER_IS_NOT_RESIZABLE_ARRAY_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETER_IS_NOT_RESIZABLE_ARRAY_ERROR = 0x21
static

Defined as part of enum type "CGerror" with expression '33', CType: int.

Definition at line 92 of file CgGL.java.

◆ CG_PARAMETER_IS_NOT_SHARED_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETER_IS_NOT_SHARED_ERROR = 0x1a
static

Defined as part of enum type "CGerror" with expression '26', CType: int.

Definition at line 78 of file CgGL.java.

◆ CG_PARAMETERCLASS_ARRAY

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_ARRAY = 0x5
static

Defined as part of enum type "CGparameterclass" with expression '0x5', CType: int.

Definition at line 944 of file CgGL.java.

◆ CG_PARAMETERCLASS_MATRIX

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_MATRIX = 0x3
static

Defined as part of enum type "CGparameterclass" with expression '0x3', CType: int.

Definition at line 940 of file CgGL.java.

◆ CG_PARAMETERCLASS_OBJECT

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_OBJECT = 0x7
static

Defined as part of enum type "CGparameterclass" with expression '0x7', CType: int.

Definition at line 948 of file CgGL.java.

◆ CG_PARAMETERCLASS_SAMPLER

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_SAMPLER = 0x6
static

Defined as part of enum type "CGparameterclass" with expression '0x6', CType: int.

Definition at line 946 of file CgGL.java.

◆ CG_PARAMETERCLASS_SCALAR

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_SCALAR = 0x1
static

Defined as part of enum type "CGparameterclass" with expression '0x1', CType: int.

Definition at line 936 of file CgGL.java.

◆ CG_PARAMETERCLASS_STRUCT

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_STRUCT = 0x4
static

Defined as part of enum type "CGparameterclass" with expression '0x4', CType: int.

Definition at line 942 of file CgGL.java.

◆ CG_PARAMETERCLASS_UNKNOWN

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_UNKNOWN = 0x0
static

Defined as part of enum type "CGparameterclass" with expression '0', CType: int.

Definition at line 934 of file CgGL.java.

◆ CG_PARAMETERCLASS_VECTOR

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERCLASS_VECTOR = 0x2
static

Defined as part of enum type "CGparameterclass" with expression '0x2', CType: int.

Definition at line 938 of file CgGL.java.

◆ CG_PARAMETERS_DO_NOT_MATCH_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_PARAMETERS_DO_NOT_MATCH_ERROR = 0x1e
static

Defined as part of enum type "CGerror" with expression '30', CType: int.

Definition at line 86 of file CgGL.java.

◆ CG_POSITION0

final int com.jogamp.opengl.cg.CgGL.CG_POSITION0 = 0x985
static

Defined as part of enum type "CGresource" with expression '2437', CType: int.

Definition at line 250 of file CgGL.java.

◆ CG_POSITION1

final int com.jogamp.opengl.cg.CgGL.CG_POSITION1 = 0x986
static

Defined as part of enum type "CGresource" with expression '2438', CType: int.

Definition at line 252 of file CgGL.java.

◆ CG_POSITION10

final int com.jogamp.opengl.cg.CgGL.CG_POSITION10 = 0x98f
static

Defined as part of enum type "CGresource" with expression '2447', CType: int.

Definition at line 270 of file CgGL.java.

◆ CG_POSITION11

final int com.jogamp.opengl.cg.CgGL.CG_POSITION11 = 0x990
static

Defined as part of enum type "CGresource" with expression '2448', CType: int.

Definition at line 272 of file CgGL.java.

◆ CG_POSITION12

final int com.jogamp.opengl.cg.CgGL.CG_POSITION12 = 0x991
static

Defined as part of enum type "CGresource" with expression '2449', CType: int.

Definition at line 274 of file CgGL.java.

◆ CG_POSITION13

final int com.jogamp.opengl.cg.CgGL.CG_POSITION13 = 0x992
static

Defined as part of enum type "CGresource" with expression '2450', CType: int.

Definition at line 276 of file CgGL.java.

◆ CG_POSITION14

final int com.jogamp.opengl.cg.CgGL.CG_POSITION14 = 0x993
static

Defined as part of enum type "CGresource" with expression '2451', CType: int.

Definition at line 278 of file CgGL.java.

◆ CG_POSITION15

final int com.jogamp.opengl.cg.CgGL.CG_POSITION15 = 0x994
static

Defined as part of enum type "CGresource" with expression '2452', CType: int.

Definition at line 280 of file CgGL.java.

◆ CG_POSITION2

final int com.jogamp.opengl.cg.CgGL.CG_POSITION2 = 0x987
static

Defined as part of enum type "CGresource" with expression '2439', CType: int.

Definition at line 254 of file CgGL.java.

◆ CG_POSITION3

final int com.jogamp.opengl.cg.CgGL.CG_POSITION3 = 0x988
static

Defined as part of enum type "CGresource" with expression '2440', CType: int.

Definition at line 256 of file CgGL.java.

◆ CG_POSITION4

final int com.jogamp.opengl.cg.CgGL.CG_POSITION4 = 0x989
static

Defined as part of enum type "CGresource" with expression '2441', CType: int.

Definition at line 258 of file CgGL.java.

◆ CG_POSITION5

final int com.jogamp.opengl.cg.CgGL.CG_POSITION5 = 0x98a
static

Defined as part of enum type "CGresource" with expression '2442', CType: int.

Definition at line 260 of file CgGL.java.

◆ CG_POSITION6

final int com.jogamp.opengl.cg.CgGL.CG_POSITION6 = 0x98b
static

Defined as part of enum type "CGresource" with expression '2443', CType: int.

Definition at line 262 of file CgGL.java.

◆ CG_POSITION7

final int com.jogamp.opengl.cg.CgGL.CG_POSITION7 = 0x98c
static

Defined as part of enum type "CGresource" with expression '2444', CType: int.

Definition at line 264 of file CgGL.java.

◆ CG_POSITION8

final int com.jogamp.opengl.cg.CgGL.CG_POSITION8 = 0x98d
static

Defined as part of enum type "CGresource" with expression '2445', CType: int.

Definition at line 266 of file CgGL.java.

◆ CG_POSITION9

final int com.jogamp.opengl.cg.CgGL.CG_POSITION9 = 0x98e
static

Defined as part of enum type "CGresource" with expression '2446', CType: int.

Definition at line 268 of file CgGL.java.

◆ CG_PROFILE_ARBFP1

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_ARBFP1 = 0x1b58
static

Defined as part of enum type "CGprofile" with expression '7000', CType: int.

Definition at line 910 of file CgGL.java.

◆ CG_PROFILE_ARBVP1

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_ARBVP1 = 0x1806
static

Defined as part of enum type "CGprofile" with expression '6150', CType: int.

Definition at line 906 of file CgGL.java.

◆ CG_PROFILE_FP20

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_FP20 = 0x1803
static

Defined as part of enum type "CGprofile" with expression '6147', CType: int.

Definition at line 900 of file CgGL.java.

◆ CG_PROFILE_FP30

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_FP30 = 0x1805
static

Defined as part of enum type "CGprofile" with expression '6149', CType: int.

Definition at line 904 of file CgGL.java.

◆ CG_PROFILE_FP40

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_FP40 = 0x1807
static

Defined as part of enum type "CGprofile" with expression '6151', CType: int.

Definition at line 908 of file CgGL.java.

◆ CG_PROFILE_MAX

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_MAX = 0x1bbc
static

Defined as part of enum type "CGprofile" with expression '7100', CType: int.

Definition at line 932 of file CgGL.java.

◆ CG_PROFILE_PS_1_1

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_PS_1_1 = 0x180f
static

Defined as part of enum type "CGprofile" with expression '6159', CType: int.

Definition at line 920 of file CgGL.java.

◆ CG_PROFILE_PS_1_2

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_PS_1_2 = 0x1810
static

Defined as part of enum type "CGprofile" with expression '6160', CType: int.

Definition at line 922 of file CgGL.java.

◆ CG_PROFILE_PS_1_3

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_PS_1_3 = 0x1811
static

Defined as part of enum type "CGprofile" with expression '6161', CType: int.

Definition at line 924 of file CgGL.java.

◆ CG_PROFILE_PS_2_0

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_PS_2_0 = 0x1812
static

Defined as part of enum type "CGprofile" with expression '6162', CType: int.

Definition at line 926 of file CgGL.java.

◆ CG_PROFILE_PS_2_X

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_PS_2_X = 0x1813
static

Defined as part of enum type "CGprofile" with expression '6163', CType: int.

Definition at line 928 of file CgGL.java.

◆ CG_PROFILE_START

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_START = 0x1800
static

Defined as part of enum type "CGprofile" with expression '6144', CType: int.

Definition at line 894 of file CgGL.java.

◆ CG_PROFILE_UNKNOWN

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_UNKNOWN = 0x1801
static

Defined as part of enum type "CGprofile" with expression '0x1801', CType: int.

Definition at line 896 of file CgGL.java.

◆ CG_PROFILE_VP20

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_VP20 = 0x1802
static

Defined as part of enum type "CGprofile" with expression '6146', CType: int.

Definition at line 898 of file CgGL.java.

◆ CG_PROFILE_VP30

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_VP30 = 0x1804
static

Defined as part of enum type "CGprofile" with expression '6148', CType: int.

Definition at line 902 of file CgGL.java.

◆ CG_PROFILE_VP40

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_VP40 = 0x1b59
static

Defined as part of enum type "CGprofile" with expression '7001', CType: int.

Definition at line 912 of file CgGL.java.

◆ CG_PROFILE_VS_1_1

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_VS_1_1 = 0x1809
static

Defined as part of enum type "CGprofile" with expression '6153', CType: int.

Definition at line 914 of file CgGL.java.

◆ CG_PROFILE_VS_2_0

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_VS_2_0 = 0x180a
static

Defined as part of enum type "CGprofile" with expression '6154', CType: int.

Definition at line 916 of file CgGL.java.

◆ CG_PROFILE_VS_2_X

final int com.jogamp.opengl.cg.CgGL.CG_PROFILE_VS_2_X = 0x180b
static

Defined as part of enum type "CGprofile" with expression '6155', CType: int.

Definition at line 918 of file CgGL.java.

◆ CG_PROGRAM

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM = 0x100d
static

Defined as part of enum type "CGenum" with expression '4109', CType: int.

Definition at line 976 of file CgGL.java.

◆ CG_PROGRAM_BIND_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_BIND_ERROR = 0x5
static

Defined as part of enum type "CGerror" with expression '5', CType: int.

Definition at line 36 of file CgGL.java.

◆ CG_PROGRAM_ENTRY

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_ENTRY = 0x1009
static

Defined as part of enum type "CGenum" with expression '4105', CType: int.

Definition at line 968 of file CgGL.java.

◆ CG_PROGRAM_LOAD_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_LOAD_ERROR = 0x4
static

Defined as part of enum type "CGerror" with expression '4', CType: int.

Definition at line 34 of file CgGL.java.

◆ CG_PROGRAM_NOT_LOADED_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_NOT_LOADED_ERROR = 0x6
static

Defined as part of enum type "CGerror" with expression '6', CType: int.

Definition at line 38 of file CgGL.java.

◆ CG_PROGRAM_PROFILE

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_PROFILE = 0x100b
static

Defined as part of enum type "CGenum" with expression '4107', CType: int.

Definition at line 972 of file CgGL.java.

◆ CG_PROGRAM_SOURCE

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_SOURCE = 0x1008
static

Defined as part of enum type "CGenum" with expression '4104', CType: int.

Definition at line 966 of file CgGL.java.

◆ CG_PROGRAM_TYPE

final int com.jogamp.opengl.cg.CgGL.CG_PROGRAM_TYPE = 0x470
static

Defined as part of enum type "CGtype" with expression '0x470', CType: int.

Definition at line 890 of file CgGL.java.

◆ CG_PSIZ

final int com.jogamp.opengl.cg.CgGL.CG_PSIZ = 0x905
static

Defined as part of enum type "CGresource" with expression '2309', CType: int.

Definition at line 246 of file CgGL.java.

◆ CG_PSIZE0

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE0 = 0xb05
static

Defined as part of enum type "CGresource" with expression '2821', CType: int.

Definition at line 382 of file CgGL.java.

◆ CG_PSIZE1

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE1 = 0xb06
static

Defined as part of enum type "CGresource" with expression '2822', CType: int.

Definition at line 384 of file CgGL.java.

◆ CG_PSIZE10

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE10 = 0xb0f
static

Defined as part of enum type "CGresource" with expression '2831', CType: int.

Definition at line 402 of file CgGL.java.

◆ CG_PSIZE11

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE11 = 0xb10
static

Defined as part of enum type "CGresource" with expression '2832', CType: int.

Definition at line 404 of file CgGL.java.

◆ CG_PSIZE12

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE12 = 0xb11
static

Defined as part of enum type "CGresource" with expression '2833', CType: int.

Definition at line 406 of file CgGL.java.

◆ CG_PSIZE13

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE13 = 0xb12
static

Defined as part of enum type "CGresource" with expression '2834', CType: int.

Definition at line 408 of file CgGL.java.

◆ CG_PSIZE14

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE14 = 0xb13
static

Defined as part of enum type "CGresource" with expression '2835', CType: int.

Definition at line 410 of file CgGL.java.

◆ CG_PSIZE15

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE15 = 0xb14
static

Defined as part of enum type "CGresource" with expression '2836', CType: int.

Definition at line 412 of file CgGL.java.

◆ CG_PSIZE2

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE2 = 0xb07
static

Defined as part of enum type "CGresource" with expression '2823', CType: int.

Definition at line 386 of file CgGL.java.

◆ CG_PSIZE3

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE3 = 0xb08
static

Defined as part of enum type "CGresource" with expression '2824', CType: int.

Definition at line 388 of file CgGL.java.

◆ CG_PSIZE4

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE4 = 0xb09
static

Defined as part of enum type "CGresource" with expression '2825', CType: int.

Definition at line 390 of file CgGL.java.

◆ CG_PSIZE5

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE5 = 0xb0a
static

Defined as part of enum type "CGresource" with expression '2826', CType: int.

Definition at line 392 of file CgGL.java.

◆ CG_PSIZE6

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE6 = 0xb0b
static

Defined as part of enum type "CGresource" with expression '2827', CType: int.

Definition at line 394 of file CgGL.java.

◆ CG_PSIZE7

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE7 = 0xb0c
static

Defined as part of enum type "CGresource" with expression '2828', CType: int.

Definition at line 396 of file CgGL.java.

◆ CG_PSIZE8

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE8 = 0xb0d
static

Defined as part of enum type "CGresource" with expression '2829', CType: int.

Definition at line 398 of file CgGL.java.

◆ CG_PSIZE9

final int com.jogamp.opengl.cg.CgGL.CG_PSIZE9 = 0xb0e
static

Defined as part of enum type "CGresource" with expression '2830', CType: int.

Definition at line 400 of file CgGL.java.

◆ CG_ROW_MAJOR

final int com.jogamp.opengl.cg.CgGL.CG_ROW_MAJOR = 0x1018
static

Defined as part of enum type "CGenum" with expression '4120', CType: int.

Definition at line 998 of file CgGL.java.

◆ CG_SAMPLE0

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE0 = 0xb85
static

Defined as part of enum type "CGresource" with expression '2949', CType: int.

Definition at line 510 of file CgGL.java.

◆ CG_SAMPLE1

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE1 = 0xb86
static

Defined as part of enum type "CGresource" with expression '2950', CType: int.

Definition at line 512 of file CgGL.java.

◆ CG_SAMPLE10

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE10 = 0xb8f
static

Defined as part of enum type "CGresource" with expression '2959', CType: int.

Definition at line 530 of file CgGL.java.

◆ CG_SAMPLE11

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE11 = 0xb90
static

Defined as part of enum type "CGresource" with expression '2960', CType: int.

Definition at line 532 of file CgGL.java.

◆ CG_SAMPLE12

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE12 = 0xb91
static

Defined as part of enum type "CGresource" with expression '2961', CType: int.

Definition at line 534 of file CgGL.java.

◆ CG_SAMPLE13

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE13 = 0xb92
static

Defined as part of enum type "CGresource" with expression '2962', CType: int.

Definition at line 536 of file CgGL.java.

◆ CG_SAMPLE14

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE14 = 0xb93
static

Defined as part of enum type "CGresource" with expression '2963', CType: int.

Definition at line 538 of file CgGL.java.

◆ CG_SAMPLE15

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE15 = 0xb94
static

Defined as part of enum type "CGresource" with expression '2964', CType: int.

Definition at line 540 of file CgGL.java.

◆ CG_SAMPLE2

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE2 = 0xb87
static

Defined as part of enum type "CGresource" with expression '2951', CType: int.

Definition at line 514 of file CgGL.java.

◆ CG_SAMPLE3

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE3 = 0xb88
static

Defined as part of enum type "CGresource" with expression '2952', CType: int.

Definition at line 516 of file CgGL.java.

◆ CG_SAMPLE4

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE4 = 0xb89
static

Defined as part of enum type "CGresource" with expression '2953', CType: int.

Definition at line 518 of file CgGL.java.

◆ CG_SAMPLE5

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE5 = 0xb8a
static

Defined as part of enum type "CGresource" with expression '2954', CType: int.

Definition at line 520 of file CgGL.java.

◆ CG_SAMPLE6

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE6 = 0xb8b
static

Defined as part of enum type "CGresource" with expression '2955', CType: int.

Definition at line 522 of file CgGL.java.

◆ CG_SAMPLE7

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE7 = 0xb8c
static

Defined as part of enum type "CGresource" with expression '2956', CType: int.

Definition at line 524 of file CgGL.java.

◆ CG_SAMPLE8

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE8 = 0xb8d
static

Defined as part of enum type "CGresource" with expression '2957', CType: int.

Definition at line 526 of file CgGL.java.

◆ CG_SAMPLE9

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLE9 = 0xb8e
static

Defined as part of enum type "CGresource" with expression '2958', CType: int.

Definition at line 528 of file CgGL.java.

◆ CG_SAMPLER1D

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLER1D = 0x429
static

Defined as part of enum type "CGtype" with expression '0x429', CType: int.

Definition at line 748 of file CgGL.java.

◆ CG_SAMPLER2D

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLER2D = 0x42a
static

Defined as part of enum type "CGtype" with expression '0x42a', CType: int.

Definition at line 750 of file CgGL.java.

◆ CG_SAMPLER3D

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLER3D = 0x42b
static

Defined as part of enum type "CGtype" with expression '0x42b', CType: int.

Definition at line 752 of file CgGL.java.

◆ CG_SAMPLERCUBE

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLERCUBE = 0x42d
static

Defined as part of enum type "CGtype" with expression '0x42d', CType: int.

Definition at line 756 of file CgGL.java.

◆ CG_SAMPLERRECT

final int com.jogamp.opengl.cg.CgGL.CG_SAMPLERRECT = 0x42c
static

Defined as part of enum type "CGtype" with expression '0x42c', CType: int.

Definition at line 754 of file CgGL.java.

◆ CG_SOURCE

final int com.jogamp.opengl.cg.CgGL.CG_SOURCE = 0x1010
static

Defined as part of enum type "CGenum" with expression '4112', CType: int.

Definition at line 982 of file CgGL.java.

◆ CG_SPECULAR0

final int com.jogamp.opengl.cg.CgGL.CG_SPECULAR0 = 0xa45
static

Defined as part of enum type "CGresource" with expression '2629', CType: int.

Definition at line 316 of file CgGL.java.

◆ CG_STATE_ASSIGNMENT_TYPE_MISMATCH_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_STATE_ASSIGNMENT_TYPE_MISMATCH_ERROR = 0x2f
static

Defined as part of enum type "CGerror" with expression '47', CType: int.

Definition at line 120 of file CgGL.java.

◆ CG_STRING

final int com.jogamp.opengl.cg.CgGL.CG_STRING = 0x46f
static

Defined as part of enum type "CGtype" with expression '0x46f', CType: int.

Definition at line 888 of file CgGL.java.

◆ CG_STRUCT

final long com.jogamp.opengl.cg.CgGL.CG_STRUCT = 0x1L
static

Defined as part of enum type "CGtype" with expression '0x1L', CType: long.

Definition at line 662 of file CgGL.java.

◆ CG_TANGENT0

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT0 = 0xa05
static

Defined as part of enum type "CGresource" with expression '2565', CType: int.

Definition at line 284 of file CgGL.java.

◆ CG_TANGENT1

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT1 = 0xa06
static

Defined as part of enum type "CGresource" with expression '2566', CType: int.

Definition at line 286 of file CgGL.java.

◆ CG_TANGENT10

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT10 = 0xa0f
static

Defined as part of enum type "CGresource" with expression '2575', CType: int.

Definition at line 304 of file CgGL.java.

◆ CG_TANGENT11

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT11 = 0xa10
static

Defined as part of enum type "CGresource" with expression '2576', CType: int.

Definition at line 306 of file CgGL.java.

◆ CG_TANGENT12

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT12 = 0xa11
static

Defined as part of enum type "CGresource" with expression '2577', CType: int.

Definition at line 308 of file CgGL.java.

◆ CG_TANGENT13

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT13 = 0xa12
static

Defined as part of enum type "CGresource" with expression '2578', CType: int.

Definition at line 310 of file CgGL.java.

◆ CG_TANGENT14

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT14 = 0xa13
static

Defined as part of enum type "CGresource" with expression '2579', CType: int.

Definition at line 312 of file CgGL.java.

◆ CG_TANGENT15

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT15 = 0xa14
static

Defined as part of enum type "CGresource" with expression '2580', CType: int.

Definition at line 314 of file CgGL.java.

◆ CG_TANGENT2

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT2 = 0xa07
static

Defined as part of enum type "CGresource" with expression '2567', CType: int.

Definition at line 288 of file CgGL.java.

◆ CG_TANGENT3

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT3 = 0xa08
static

Defined as part of enum type "CGresource" with expression '2568', CType: int.

Definition at line 290 of file CgGL.java.

◆ CG_TANGENT4

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT4 = 0xa09
static

Defined as part of enum type "CGresource" with expression '2569', CType: int.

Definition at line 292 of file CgGL.java.

◆ CG_TANGENT5

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT5 = 0xa0a
static

Defined as part of enum type "CGresource" with expression '2570', CType: int.

Definition at line 294 of file CgGL.java.

◆ CG_TANGENT6

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT6 = 0xa0b
static

Defined as part of enum type "CGresource" with expression '2571', CType: int.

Definition at line 296 of file CgGL.java.

◆ CG_TANGENT7

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT7 = 0xa0c
static

Defined as part of enum type "CGresource" with expression '2572', CType: int.

Definition at line 298 of file CgGL.java.

◆ CG_TANGENT8

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT8 = 0xa0d
static

Defined as part of enum type "CGresource" with expression '2573', CType: int.

Definition at line 300 of file CgGL.java.

◆ CG_TANGENT9

final int com.jogamp.opengl.cg.CgGL.CG_TANGENT9 = 0xa0e
static

Defined as part of enum type "CGresource" with expression '2574', CType: int.

Definition at line 302 of file CgGL.java.

◆ CG_TESSFACTOR

final int com.jogamp.opengl.cg.CgGL.CG_TESSFACTOR = 0xcb7
static

Defined as part of enum type "CGresource" with expression '3255', CType: int.

Definition at line 656 of file CgGL.java.

◆ CG_TEX0

final int com.jogamp.opengl.cg.CgGL.CG_TEX0 = 0x883
static

Defined as part of enum type "CGresource" with expression '2179', CType: int.

Definition at line 220 of file CgGL.java.

◆ CG_TEX1

final int com.jogamp.opengl.cg.CgGL.CG_TEX1 = 0x884
static

Defined as part of enum type "CGresource" with expression '2180', CType: int.

Definition at line 222 of file CgGL.java.

◆ CG_TEX2

final int com.jogamp.opengl.cg.CgGL.CG_TEX2 = 0x885
static

Defined as part of enum type "CGresource" with expression '2181', CType: int.

Definition at line 224 of file CgGL.java.

◆ CG_TEX3

final int com.jogamp.opengl.cg.CgGL.CG_TEX3 = 0x890
static

Defined as part of enum type "CGresource" with expression '2192', CType: int.

Definition at line 226 of file CgGL.java.

◆ CG_TEX4

final int com.jogamp.opengl.cg.CgGL.CG_TEX4 = 0x891
static

Defined as part of enum type "CGresource" with expression '2193', CType: int.

Definition at line 228 of file CgGL.java.

◆ CG_TEX5

final int com.jogamp.opengl.cg.CgGL.CG_TEX5 = 0x892
static

Defined as part of enum type "CGresource" with expression '2194', CType: int.

Definition at line 230 of file CgGL.java.

◆ CG_TEX6

final int com.jogamp.opengl.cg.CgGL.CG_TEX6 = 0x893
static

Defined as part of enum type "CGresource" with expression '2195', CType: int.

Definition at line 232 of file CgGL.java.

◆ CG_TEX7

final int com.jogamp.opengl.cg.CgGL.CG_TEX7 = 0x894
static

Defined as part of enum type "CGresource" with expression '2196', CType: int.

Definition at line 234 of file CgGL.java.

◆ CG_TEXCOORD0

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD0 = 0xc94
static

Defined as part of enum type "CGresource" with expression '3220', CType: int.

Definition at line 608 of file CgGL.java.

◆ CG_TEXCOORD1

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD1 = 0xc95
static

Defined as part of enum type "CGresource" with expression '3221', CType: int.

Definition at line 610 of file CgGL.java.

◆ CG_TEXCOORD10

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD10 = 0xc9e
static

Defined as part of enum type "CGresource" with expression '3230', CType: int.

Definition at line 628 of file CgGL.java.

◆ CG_TEXCOORD11

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD11 = 0xc9f
static

Defined as part of enum type "CGresource" with expression '3231', CType: int.

Definition at line 630 of file CgGL.java.

◆ CG_TEXCOORD12

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD12 = 0xca0
static

Defined as part of enum type "CGresource" with expression '3232', CType: int.

Definition at line 632 of file CgGL.java.

◆ CG_TEXCOORD13

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD13 = 0xca1
static

Defined as part of enum type "CGresource" with expression '3233', CType: int.

Definition at line 634 of file CgGL.java.

◆ CG_TEXCOORD14

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD14 = 0xca2
static

Defined as part of enum type "CGresource" with expression '3234', CType: int.

Definition at line 636 of file CgGL.java.

◆ CG_TEXCOORD15

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD15 = 0xca3
static

Defined as part of enum type "CGresource" with expression '3235', CType: int.

Definition at line 638 of file CgGL.java.

◆ CG_TEXCOORD2

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD2 = 0xc96
static

Defined as part of enum type "CGresource" with expression '3222', CType: int.

Definition at line 612 of file CgGL.java.

◆ CG_TEXCOORD3

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD3 = 0xc97
static

Defined as part of enum type "CGresource" with expression '3223', CType: int.

Definition at line 614 of file CgGL.java.

◆ CG_TEXCOORD4

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD4 = 0xc98
static

Defined as part of enum type "CGresource" with expression '3224', CType: int.

Definition at line 616 of file CgGL.java.

◆ CG_TEXCOORD5

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD5 = 0xc99
static

Defined as part of enum type "CGresource" with expression '3225', CType: int.

Definition at line 618 of file CgGL.java.

◆ CG_TEXCOORD6

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD6 = 0xc9a
static

Defined as part of enum type "CGresource" with expression '3226', CType: int.

Definition at line 620 of file CgGL.java.

◆ CG_TEXCOORD7

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD7 = 0xc9b
static

Defined as part of enum type "CGresource" with expression '3227', CType: int.

Definition at line 622 of file CgGL.java.

◆ CG_TEXCOORD8

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD8 = 0xc9c
static

Defined as part of enum type "CGresource" with expression '3228', CType: int.

Definition at line 624 of file CgGL.java.

◆ CG_TEXCOORD9

final int com.jogamp.opengl.cg.CgGL.CG_TEXCOORD9 = 0xc9d
static

Defined as part of enum type "CGresource" with expression '3229', CType: int.

Definition at line 626 of file CgGL.java.

◆ CG_TEXTURE

final int com.jogamp.opengl.cg.CgGL.CG_TEXTURE = 0x471
static

Defined as part of enum type "CGtype" with expression '0x471', CType: int.

Definition at line 892 of file CgGL.java.

◆ CG_TEXUNIT0

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT0 = 0x800
static

Defined as part of enum type "CGresource" with expression '2048', CType: int.

Definition at line 154 of file CgGL.java.

◆ CG_TEXUNIT1

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT1 = 0x801
static

Defined as part of enum type "CGresource" with expression '2049', CType: int.

Definition at line 156 of file CgGL.java.

◆ CG_TEXUNIT10

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT10 = 0x80a
static

Defined as part of enum type "CGresource" with expression '2058', CType: int.

Definition at line 174 of file CgGL.java.

◆ CG_TEXUNIT11

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT11 = 0x80b
static

Defined as part of enum type "CGresource" with expression '2059', CType: int.

Definition at line 176 of file CgGL.java.

◆ CG_TEXUNIT12

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT12 = 0x80c
static

Defined as part of enum type "CGresource" with expression '2060', CType: int.

Definition at line 178 of file CgGL.java.

◆ CG_TEXUNIT13

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT13 = 0x80d
static

Defined as part of enum type "CGresource" with expression '2061', CType: int.

Definition at line 180 of file CgGL.java.

◆ CG_TEXUNIT14

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT14 = 0x80e
static

Defined as part of enum type "CGresource" with expression '2062', CType: int.

Definition at line 182 of file CgGL.java.

◆ CG_TEXUNIT15

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT15 = 0x80f
static

Defined as part of enum type "CGresource" with expression '2063', CType: int.

Definition at line 184 of file CgGL.java.

◆ CG_TEXUNIT2

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT2 = 0x802
static

Defined as part of enum type "CGresource" with expression '2050', CType: int.

Definition at line 158 of file CgGL.java.

◆ CG_TEXUNIT3

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT3 = 0x803
static

Defined as part of enum type "CGresource" with expression '2051', CType: int.

Definition at line 160 of file CgGL.java.

◆ CG_TEXUNIT4

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT4 = 0x804
static

Defined as part of enum type "CGresource" with expression '2052', CType: int.

Definition at line 162 of file CgGL.java.

◆ CG_TEXUNIT5

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT5 = 0x805
static

Defined as part of enum type "CGresource" with expression '2053', CType: int.

Definition at line 164 of file CgGL.java.

◆ CG_TEXUNIT6

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT6 = 0x806
static

Defined as part of enum type "CGresource" with expression '2054', CType: int.

Definition at line 166 of file CgGL.java.

◆ CG_TEXUNIT7

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT7 = 0x807
static

Defined as part of enum type "CGresource" with expression '2055', CType: int.

Definition at line 168 of file CgGL.java.

◆ CG_TEXUNIT8

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT8 = 0x808
static

Defined as part of enum type "CGresource" with expression '2056', CType: int.

Definition at line 170 of file CgGL.java.

◆ CG_TEXUNIT9

final int com.jogamp.opengl.cg.CgGL.CG_TEXUNIT9 = 0x809
static

Defined as part of enum type "CGresource" with expression '2057', CType: int.

Definition at line 172 of file CgGL.java.

◆ CG_TYPE_IS_NOT_DEFINED_IN_PROGRAM_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_TYPE_IS_NOT_DEFINED_IN_PROGRAM_ERROR = 0x27
static

Defined as part of enum type "CGerror" with expression '39', CType: int.

Definition at line 104 of file CgGL.java.

◆ CG_TYPE_START_ENUM

final int com.jogamp.opengl.cg.CgGL.CG_TYPE_START_ENUM = 0x400
static

Defined as part of enum type "CGtype" with expression '1024', CType: int.

Definition at line 666 of file CgGL.java.

◆ CG_UNDEFINED

final int com.jogamp.opengl.cg.CgGL.CG_UNDEFINED = 0xcb8
static

Defined as part of enum type "CGresource" with expression '0xcb8', CType: int.

Definition at line 658 of file CgGL.java.

◆ CG_UNIFORM

final int com.jogamp.opengl.cg.CgGL.CG_UNIFORM = 0x1006
static

Defined as part of enum type "CGenum" with expression '4102', CType: int.

Definition at line 962 of file CgGL.java.

◆ CG_UNKNOWN

final int com.jogamp.opengl.cg.CgGL.CG_UNKNOWN = 0x1000
static

Defined as part of enum type "CGenum" with expression '4096', CType: int.

Definition at line 950 of file CgGL.java.

◆ CG_UNKNOWN_PROFILE_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_UNKNOWN_PROFILE_ERROR = 0x13
static

Defined as part of enum type "CGerror" with expression '19', CType: int.

Definition at line 64 of file CgGL.java.

◆ CG_UNKNOWN_TYPE

final long com.jogamp.opengl.cg.CgGL.CG_UNKNOWN_TYPE = 0x0L
static

Defined as part of enum type "CGtype" with expression '0x0L', CType: long.

Definition at line 660 of file CgGL.java.

◆ CG_UNSUPPORTED_GL_EXTENSION_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_UNSUPPORTED_GL_EXTENSION_ERROR = 0x7
static

Defined as part of enum type "CGerror" with expression '7', CType: int.

Definition at line 40 of file CgGL.java.

◆ CG_VAR_ARG_ERROR

final int com.jogamp.opengl.cg.CgGL.CG_VAR_ARG_ERROR = 0x14
static

Defined as part of enum type "CGerror" with expression '20', CType: int.

Definition at line 66 of file CgGL.java.

◆ CG_VARYING

final int com.jogamp.opengl.cg.CgGL.CG_VARYING = 0x1005
static

Defined as part of enum type "CGenum" with expression '4101', CType: int.

Definition at line 960 of file CgGL.java.

◆ CG_VERSION

final int com.jogamp.opengl.cg.CgGL.CG_VERSION = 0x1017
static

Defined as part of enum type "CGenum" with expression '4119', CType: int.

Definition at line 996 of file CgGL.java.

◆ CG_VERSION_NUM

final int com.jogamp.opengl.cg.CgGL.CG_VERSION_NUM = 0x578
static

Define "CG_VERSION_NUM" with expression '1400', CType: int.

Definition at line 1002 of file CgGL.java.

◆ CG_WPOS

final int com.jogamp.opengl.cg.CgGL.CG_WPOS = 0x945
static

Defined as part of enum type "CGresource" with expression '2373', CType: int.

Definition at line 248 of file CgGL.java.

◆ GENERIC

final int com.jogamp.opengl.cg.CgGL.GENERIC = 0x1b5a
static

Defined as part of enum type "CGprofile" with expression '7002', CType: int.

Definition at line 930 of file CgGL.java.


The documentation for this class was generated from the following file: