aboutsummaryrefslogtreecommitdiffstats
path: root/test/junit/com/jogamp/gluegen/struct.h
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-07 04:35:47 +0100
committerSven Gothel <[email protected]>2010-11-07 04:35:47 +0100
commited83567444bd803918b8904eb71b155d4eff2de4 (patch)
tree715069bef306f409e5030b1a90871b55c1c41a7f /test/junit/com/jogamp/gluegen/struct.h
parent5aadf241bb46a66a57c6c5b6776aa6a0da1633f6 (diff)
com.sun -> com.jogamp
Diffstat (limited to 'test/junit/com/jogamp/gluegen/struct.h')
-rw-r--r--test/junit/com/jogamp/gluegen/struct.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/junit/com/jogamp/gluegen/struct.h b/test/junit/com/jogamp/gluegen/struct.h
new file mode 100644
index 0000000..2819d5c
--- /dev/null
+++ b/test/junit/com/jogamp/gluegen/struct.h
@@ -0,0 +1,21 @@
+
+typedef struct {
+ float x, y, z;
+} Vec;
+
+typedef struct {
+ Vec orig, dir;
+} Camera;
+
+typedef struct {
+ unsigned int width, height;
+ int superSamplingSize;
+ int actvateFastRendering;
+ int enableShadow;
+
+ unsigned int maxIterations;
+ float epsilon;
+ float mu[4];
+ float light[3];
+ Camera camera;
+} RenderingConfig;