Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.
Success

Changes

Summary

  1. Fix Eclipse build and Ant makefile (details)
  2. Fixed a variety of compilation and runtime errors (details)
  3. Add debug build targets to match those in gluegen and jogl (details)
  4. Fix radix sort on Mac (details)
Commit 858dbcb36211e743559070acc49043c21cde6636 by Wade Walker
Fix Eclipse build and Ant makefile

Added proper targets to the Eclipse build. Fixed the Ant makefile
so it works for paths with spaces in them.
The file was modified.externalToolBuilders/jocl-demos-ant.launch (diff)
The file was modified.project (diff)
The file was modifiedbuild.xml (diff)
Commit e935256bf1ad44ceb2d9e3e63810f8d5017733be by Wade Walker
Fixed a variety of compilation and runtime errors

Fixed package change from javax.media to com.jogamp; fixed problems with
generics; fixed dead-code and similar warnings; fixed problem with struct
accessor on Julia3d using element offsets where it should have used byte
offsets; updated Eclipse project files
The file was modifiedsrc/com/jogamp/opencl/demos/fractal/MultiDeviceFractal.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/julia3d/UserSceneController.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/julia3d/structs/RenderingConfig64.java (diff)
The file was added.externalToolBuilders/jocl-demos builder.launch (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/fft/PaintView.java (diff)
The file was modified.classpath (diff)
The file was modifiedbuild.xml (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/fft/BlurTest.java (diff)
The file was modified.project (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/radixsort/RadixSort.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java (diff)
The file was added.externalToolBuilders/org.eclipse.jdt.core.javabuilder (2).launch (diff)
The file was removed.externalToolBuilders/jocl-demos-ant.launch (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/julia3d/structs/RenderingConfig32.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/fft/ImageView.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/julia3d/Julia3d.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/radixsort/Scan.java (diff)
The file was modifiedsrc/com/jogamp/opencl/util/ExceptionReporter.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/bandwidth/BandwidthBenchmark.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/julia3d/structs/Vec32.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/julia3d/structs/Vec64.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/fft/CLFFTPlan.java (diff)
Commit 219b5de483ab1f50317be6af537120ce1d4a740b by Wade Walker
Add debug build targets to match those in gluegen and jogl
The file was modifiedbuild.xml (diff)
The file was modifiednbproject/build-impl.xml (diff)
The file was modified.project (diff)
The file was modified.externalToolBuilders/jocl-demos builder.launch (diff)
Commit 056e8808a5ab3076c5a48c75b1ec7f811122caf9 by Wade Walker
Fix radix sort on Mac

Fixes a __local variable which must be declared at __kernel function
scope (only the Mac complains about this, but it seems to be that
way in the spec too). Has the nice effect of removing a Mac-specific
ifdef from the kernel code which wasn't being used correctly.
Also added some code to check allowed work group sizes.
The file was modifiedsrc/com/jogamp/opencl/demos/radixsort/RadixSortDemo.java (diff)
The file was modifiedsrc/com/jogamp/opencl/demos/radixsort/RadixSort.cl (diff)