aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/demos/julia3d/structs
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-04-12 22:27:03 +0200
committerMichael Bien <[email protected]>2010-04-12 22:27:03 +0200
commit2c85c416d85205ab98b33e1a0b0daab32d4d81ff (patch)
tree4187ba06dec81da46495a300bb4f914e931f0c58 /src/com/mbien/opencl/demos/julia3d/structs
parentb51f2e1c254cdd74c9e43904c62694f64e6ae7e6 (diff)
changes due to package renaming in jocl.
Diffstat (limited to 'src/com/mbien/opencl/demos/julia3d/structs')
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/Camera.java52
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/Camera32.java41
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/Camera64.java52
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig.java80
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig32.java106
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig64.java109
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/Vec.java53
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/Vec32.java48
-rw-r--r--src/com/mbien/opencl/demos/julia3d/structs/Vec64.java48
9 files changed, 0 insertions, 589 deletions
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Camera.java b/src/com/mbien/opencl/demos/julia3d/structs/Camera.java
deleted file mode 100644
index 50d5868..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/Camera.java
+++ /dev/null
@@ -1,52 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.common.nio.*;
-
-
-public abstract class Camera {
-
- StructAccessor accessor;
-
- public static int size() {
-// if (CPU.is32Bit()) {
-// return Camera32.size();
-// } else {
- return Camera64.size();
-// }
- }
-
- public static Camera create() {
- return create(Buffers.newDirectByteBuffer(size()));
- }
-
- public static Camera create(java.nio.ByteBuffer buf) {
-// if (CPU.is32Bit()) {
-// return new Camera32(buf);
-// } else {
- return new Camera64(buf);
-// }
- }
-
- Camera(java.nio.ByteBuffer buf) {
- accessor = new StructAccessor(buf);
- }
-
- public java.nio.ByteBuffer getBuffer() {
- return accessor.getBuffer();
- }
-
- public abstract Vec getOrig();
-
- public abstract Vec getTarget();
-
- public abstract Vec getDir();
-
- public abstract Vec getX();
-
- public abstract Vec getY();
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Camera32.java b/src/com/mbien/opencl/demos/julia3d/structs/Camera32.java
deleted file mode 100644
index 85dea51..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/Camera32.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.gluegen.runtime.*;
-
-
-class Camera32 extends Camera {
-
- public static int size() {
- return 76;
- }
-
- Camera32(java.nio.ByteBuffer buf) {
- super(buf);
- }
-
-
- public Vec getOrig() {
- return Vec.create(accessor.slice(0, 12));
- }
-
- public Vec getTarget() {
- return Vec.create(accessor.slice(16, 12));
- }
-
- public Vec getDir() {
- return Vec.create(accessor.slice(32, 12));
- }
-
- public Vec getX() {
- return Vec.create(accessor.slice(48, 12));
- }
-
- public Vec getY() {
- return Vec.create(accessor.slice(64, 12));
- }
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Camera64.java b/src/com/mbien/opencl/demos/julia3d/structs/Camera64.java
deleted file mode 100644
index afe4acd..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/Camera64.java
+++ /dev/null
@@ -1,52 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.gluegen.runtime.*;
-
-
-class Camera64 extends Camera {
-
- private final Vec orig;
- private final Vec target;
- private final Vec dir;
- private final Vec x;
- private final Vec y;
-
- public static int size() {
- return 60;
- }
-
- Camera64(java.nio.ByteBuffer buf) {
- super(buf);
- orig = Vec.create(accessor.slice(0, 12));
- target = Vec.create(accessor.slice(12, 12));
- dir = Vec.create(accessor.slice(24, 12));
- x = Vec.create(accessor.slice(36, 12));
- y = Vec.create(accessor.slice(48, 12));
- }
-
-
- public Vec getOrig() {
- return orig;
- }
-
- public Vec getTarget() {
- return target;
- }
-
- public Vec getDir() {
- return dir;
- }
-
- public Vec getX() {
- return x;
- }
-
- public Vec getY() {
- return y;
- }
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig.java b/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig.java
deleted file mode 100644
index 5bc65b5..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.common.nio.*;
-
-
-public abstract class RenderingConfig {
-
- StructAccessor accessor;
-
- public static int size() {
-// if (CPU.is32Bit()) {
-// return RenderingConfig32.size();
-// } else {
- return RenderingConfig64.size();
-// }
- }
-
- public static RenderingConfig create() {
- return create(Buffers.newDirectByteBuffer(size()));
- }
-
- public static RenderingConfig create(java.nio.ByteBuffer buf) {
-// if (CPU.is32Bit()) {
-// return new RenderingConfig32(buf);
-// } else {
- return new RenderingConfig64(buf);
-// }
- }
-
- RenderingConfig(java.nio.ByteBuffer buf) {
- accessor = new StructAccessor(buf);
- }
-
- public java.nio.ByteBuffer getBuffer() {
- return accessor.getBuffer();
- }
-
- public abstract RenderingConfig setWidth(int val);
-
- public abstract int getWidth();
-
- public abstract RenderingConfig setHeight(int val);
-
- public abstract int getHeight();
-
- public abstract RenderingConfig setSuperSamplingSize(int val);
-
- public abstract int getSuperSamplingSize();
-
- public abstract RenderingConfig setActvateFastRendering(int val);
-
- public abstract int getActvateFastRendering();
-
- public abstract RenderingConfig setEnableShadow(int val);
-
- public abstract int getEnableShadow();
-
- public abstract RenderingConfig setMaxIterations(int val);
-
- public abstract int getMaxIterations();
-
- public abstract RenderingConfig setEpsilon(float val);
-
- public abstract float getEpsilon();
-
- public abstract RenderingConfig setMu(float[] val);
-
- public abstract float[] getMu();
-
- public abstract RenderingConfig setLight(float[] val);
-
- public abstract float[] getLight();
-
- public abstract Camera getCamera();
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig32.java b/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig32.java
deleted file mode 100644
index 3898d60..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig32.java
+++ /dev/null
@@ -1,106 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.gluegen.runtime.*;
-
-
-class RenderingConfig32 extends RenderingConfig {
-
- public static int size() {
- return 140;
- }
-
- RenderingConfig32(java.nio.ByteBuffer buf) {
- super(buf);
- }
-
-
- public RenderingConfig setWidth(int val) {
- accessor.setIntAt(0, val);
- return this;
- }
-
- public int getWidth() {
- return accessor.getIntAt(0);
- }
-
- public RenderingConfig setHeight(int val) {
- accessor.setIntAt(1, val);
- return this;
- }
-
- public int getHeight() {
- return accessor.getIntAt(1);
- }
-
- public RenderingConfig setSuperSamplingSize(int val) {
- accessor.setIntAt(2, val);
- return this;
- }
-
- public int getSuperSamplingSize() {
- return accessor.getIntAt(2);
- }
-
- public RenderingConfig setActvateFastRendering(int val) {
- accessor.setIntAt(3, val);
- return this;
- }
-
- public int getActvateFastRendering() {
- return accessor.getIntAt(3);
- }
-
- public RenderingConfig setEnableShadow(int val) {
- accessor.setIntAt(4, val);
- return this;
- }
-
- public int getEnableShadow() {
- return accessor.getIntAt(4);
- }
-
- public RenderingConfig setMaxIterations(int val) {
- accessor.setIntAt(5, val);
- return this;
- }
-
- public int getMaxIterations() {
- return accessor.getIntAt(5);
- }
-
- public RenderingConfig setEpsilon(float val) {
- accessor.setFloatAt(6, val);
- return this;
- }
-
- public float getEpsilon() {
- return accessor.getFloatAt(6);
- }
-
- public RenderingConfig setMu(float[] val) {
- accessor.setFloatsAt(8, val);
- return this;
- }
-
- public float[] getMu() {
- return accessor.getFloatsAt(8, new float[4]);
- }
-
- public RenderingConfig setLight(float[] val) {
- accessor.setFloatsAt(12, val);
- return this;
- }
-
- public float[] getLight() {
- return accessor.getFloatsAt(12, new float[3]);
- }
-
- public Camera getCamera() {
- return Camera.create(accessor.slice(64, 76));
- }
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig64.java b/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig64.java
deleted file mode 100644
index e3a0267..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/RenderingConfig64.java
+++ /dev/null
@@ -1,109 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.gluegen.runtime.*;
-
-
-class RenderingConfig64 extends RenderingConfig {
-
- private final Camera camera;
-
- public static int size() {
- return 116;
- }
-
- RenderingConfig64(java.nio.ByteBuffer buf) {
- super(buf);
- camera = Camera.create(accessor.slice(56, 60));
- }
-
-
- public RenderingConfig setWidth(int val) {
- accessor.setIntAt(0, val);
- return this;
- }
-
- public int getWidth() {
- return accessor.getIntAt(0);
- }
-
- public RenderingConfig setHeight(int val) {
- accessor.setIntAt(1, val);
- return this;
- }
-
- public int getHeight() {
- return accessor.getIntAt(1);
- }
-
- public RenderingConfig setSuperSamplingSize(int val) {
- accessor.setIntAt(2, val);
- return this;
- }
-
- public int getSuperSamplingSize() {
- return accessor.getIntAt(2);
- }
-
- public RenderingConfig setActvateFastRendering(int val) {
- accessor.setIntAt(3, val);
- return this;
- }
-
- public int getActvateFastRendering() {
- return accessor.getIntAt(3);
- }
-
- public RenderingConfig setEnableShadow(int val) {
- accessor.setIntAt(4, val);
- return this;
- }
-
- public int getEnableShadow() {
- return accessor.getIntAt(4);
- }
-
- public RenderingConfig setMaxIterations(int val) {
- accessor.setIntAt(5, val);
- return this;
- }
-
- public int getMaxIterations() {
- return accessor.getIntAt(5);
- }
-
- public RenderingConfig setEpsilon(float val) {
- accessor.setFloatAt(6, val);
- return this;
- }
-
- public float getEpsilon() {
- return accessor.getFloatAt(6);
- }
-
- public RenderingConfig setMu(float[] val) {
- accessor.setFloatsAt(7, val);
- return this;
- }
-
- public float[] getMu() {
- return accessor.getFloatsAt(7, new float[4]);
- }
-
- public RenderingConfig setLight(float[] val) {
- accessor.setFloatsAt(11, val);
- return this;
- }
-
- public float[] getLight() {
- return accessor.getFloatsAt(11, new float[3]);
- }
-
- public Camera getCamera() {
- return camera;
- }
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Vec.java b/src/com/mbien/opencl/demos/julia3d/structs/Vec.java
deleted file mode 100644
index 3bd6b18..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/Vec.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-
-import com.jogamp.common.nio.*;
-
-
-public abstract class Vec {
-
- StructAccessor accessor;
-
- public static int size() {
-// if (CPU.is32Bit()) {
-// return Vec32.size();
-// } else {
- return Vec64.size();
-// }
- }
-
- public static Vec create() {
- return create(Buffers.newDirectByteBuffer(size()));
- }
-
- public static Vec create(java.nio.ByteBuffer buf) {
-// if (CPU.is32Bit()) {
-// return new Vec32(buf);
-// } else {
- return new Vec64(buf);
-// }
- }
-
- Vec(java.nio.ByteBuffer buf) {
- accessor = new StructAccessor(buf);
- }
-
- public java.nio.ByteBuffer getBuffer() {
- return accessor.getBuffer();
- }
-
- public abstract Vec setX(float val);
-
- public abstract float getX();
-
- public abstract Vec setY(float val);
-
- public abstract float getY();
-
- public abstract Vec setZ(float val);
-
- public abstract float getZ();
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Vec32.java b/src/com/mbien/opencl/demos/julia3d/structs/Vec32.java
deleted file mode 100644
index 3c0ee5d..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/Vec32.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.gluegen.runtime.*;
-
-
-class Vec32 extends Vec {
-
- public static int size() {
- return 12;
- }
-
- Vec32(java.nio.ByteBuffer buf) {
- super(buf);
- }
-
-
- public Vec setX(float val) {
- accessor.setFloatAt(0, val);
- return this;
- }
-
- public float getX() {
- return accessor.getFloatAt(0);
- }
-
- public Vec setY(float val) {
- accessor.setFloatAt(1, val);
- return this;
- }
-
- public float getY() {
- return accessor.getFloatAt(1);
- }
-
- public Vec setZ(float val) {
- accessor.setFloatAt(2, val);
- return this;
- }
-
- public float getZ() {
- return accessor.getFloatAt(2);
- }
-}
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Vec64.java b/src/com/mbien/opencl/demos/julia3d/structs/Vec64.java
deleted file mode 100644
index 5952021..0000000
--- a/src/com/mbien/opencl/demos/julia3d/structs/Vec64.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */
-
-
-package com.mbien.opencl.demos.julia3d.structs;
-
-import java.nio.*;
-
-import com.jogamp.gluegen.runtime.*;
-
-
-class Vec64 extends Vec {
-
- public static int size() {
- return 12;
- }
-
- Vec64(java.nio.ByteBuffer buf) {
- super(buf);
- }
-
-
- public Vec setX(float val) {
- accessor.setFloatAt(0, val);
- return this;
- }
-
- public float getX() {
- return accessor.getFloatAt(0);
- }
-
- public Vec setY(float val) {
- accessor.setFloatAt(1, val);
- return this;
- }
-
- public float getY() {
- return accessor.getFloatAt(1);
- }
-
- public Vec setZ(float val) {
- accessor.setFloatAt(2, val);
- return this;
- }
-
- public float getZ() {
- return accessor.getFloatAt(2);
- }
-}