blob: b2336d593ff6486e7fee7a1d2c3b19b36e1de492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# This .cfg file contains common directives used when generating the
# GLU implementation class on all platforms.
Include glu-common.cfg
Style ImplOnly
EmitProcAddressTable true
ProcAddressTableClassName GLUProcAddressTable
GetProcAddressTableExpr gluProcAddressTable
# GLUImpl needs access to the GLUtesselatorImpl class for GLUtesselator
# and to the Mipmap class for scaling and mipmap generation
Import com.sun.opengl.impl.tesselator.GLUtesselatorImpl
Import com.sun.opengl.impl.mipmap.Mipmap
Import java.security.*
# Custom Java code for GLUImpl class
IncludeAs CustomJavaCode GLUImpl glu-impl-common-CustomJavaCode.java
# Custom C code for GLUImpl class
IncludeAs CustomCCode glu-impl-common-CustomCCode.c
|