changed author name

This commit is contained in:
shamanDevel 2016-04-27 10:30:35 +02:00
parent 1093c639eb
commit 7fc7402855
30 changed files with 32 additions and 32 deletions

View File

@ -45,7 +45,7 @@ import java.nio.ByteBuffer;
* and have the prefix -Async in their name.
*
* @see Context#createBuffer(long, com.jme3.opencl.MemoryAccess)
* @author Sebastian Weiss
* @author shaman
*/
public abstract class Buffer implements OpenCLObject {
@ -316,7 +316,7 @@ public abstract class Buffer implements OpenCLObject {
* Result of an async mapping operation, contains the event and the target byte buffer.
* This is a work-around since no generic pair-structure is avaiable.
*
* @author Sebastian Weiss
* @author shaman
*/
public static class AsyncMapping {

View File

@ -40,7 +40,7 @@ package com.jme3.opencl;
* Each command queue is associtated with exactly one device: that device
* is specified on creation ({@link Context#createQueue(com.jme3.opencl.Device) })
* and all commands are sent to this device.
* @author Sebastian Weiss
* @author shaman
*/
public interface CommandQueue extends OpenCLObject {

View File

@ -61,7 +61,7 @@ import java.util.logging.Logger;
* <li>Created buffers and images shared with OpenGL vertex buffers, textures and renderbuffers</li>
* <li>Create program objects from source code and source files</li>
* </ul>
* @author Sebastian Weiss
* @author shaman
*/
public abstract class Context implements OpenCLObject {
private static final Logger LOG = Logger.getLogger(Context.class.getName());

View File

@ -39,7 +39,7 @@ import java.util.logging.Logger;
* A default implementation of {@link PlatformChooser}.
* It favors GPU devices with OpenGL sharing, then any devices with OpenGL sharing,
* then any possible device.
* @author Sebastian Weiss
* @author shaman
*/
public class DefaultPlatformChooser implements PlatformChooser {
private static final Logger LOG = Logger.getLogger(DefaultPlatformChooser.class.getName());

View File

@ -42,7 +42,7 @@ import java.util.Collection;
* <p>
* This class is used to query the capabilities of the underlying device.
*
* @author Sebastian Weiss
* @author shaman
*/
public interface Device {

View File

@ -36,7 +36,7 @@ package com.jme3.opencl;
* Events are returned from kernel launches and all asynchronous operations.
* They allow to test if the action has completed and to block until the operation
* is done.
* @author Sebastian Weiss
* @author shaman
*/
public interface Event extends OpenCLObject {

View File

@ -72,7 +72,7 @@ import java.util.Objects;
* object, region[1] and region[2] must be 1. If image is a 1D image array
* object, region[2] must be 1. The values in region cannot be 0.
*
* @author Sebastian Weiss
* @author shaman
*/
public interface Image extends OpenCLObject {

View File

@ -79,7 +79,7 @@ import java.util.Arrays;
* {@link #Run1(com.jme3.opencl.CommandQueue, com.jme3.opencl.Kernel.WorkSize, java.lang.Object...) }
* and {@link #Run2(com.jme3.opencl.CommandQueue, com.jme3.opencl.Kernel.WorkSize, com.jme3.opencl.Kernel.WorkSize, java.lang.Object...) }.
*
* @author Sebastian Weiss
* @author shaman
* @see Program#createKernel(java.lang.String)
*/
public abstract class Kernel implements OpenCLObject {
@ -441,7 +441,7 @@ public abstract class Kernel implements OpenCLObject {
/**
* The work size (global and local) for executing a kernel
* @author Sebastian Weiss
* @author shaman
*/
public static final class WorkSize {

View File

@ -36,7 +36,7 @@ package com.jme3.opencl;
* when the compilation failed.
* The error log returned by {@link #getLog() } contains detailed information
* where the error occured.
* @author Sebastian Weiss
* @author shaman
*/
public class KernelCompilationException extends OpenCLException {

View File

@ -35,7 +35,7 @@ package com.jme3.opencl;
* Specifies the access flags when mapping a {@link Buffer} or {@link Image} object.
* @see Buffer#map(com.jme3.opencl.CommandQueue, long, long, com.jme3.opencl.MappingAccess)
* @see Image#map(com.jme3.opencl.CommandQueue, long[], long[], com.jme3.opencl.MappingAccess)
* @author Sebastian Weiss
* @author shaman
*/
public enum MappingAccess {
/**

View File

@ -33,7 +33,7 @@ package com.jme3.opencl;
/**
* Specifies how a buffer object can be accessed by the kernel.
* @author Sebastian Weiss
* @author shaman
* @see Buffer
*/
public enum MemoryAccess {

View File

@ -36,7 +36,7 @@ package com.jme3.opencl;
* The error code and its name is reported in the message string as well as the OpenCL call that
* causes this exception. Please refer to the official OpenCL specification
* to see what might cause this exception.
* @author Sebastian Weiss
* @author shaman
*/
public class OpenCLException extends RuntimeException {
private static final long serialVersionUID = 8471229972153694848L;

View File

@ -33,7 +33,7 @@ package com.jme3.opencl;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public interface OpenCLObject {

View File

@ -39,7 +39,7 @@ import java.util.logging.Logger;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class OpenCLObjectManager {
private static final Logger LOG = Logger.getLogger(OpenCLObjectManager.class.getName());

View File

@ -40,7 +40,7 @@ import java.util.List;
* create the {@link Context}.<br>
* This class is mostly used within {@link PlatformChooser}.
*
* @author Sebastian Weiss
* @author shaman
*/
public interface Platform {

View File

@ -37,7 +37,7 @@ import java.util.List;
/**
* This SPI is called on startup to specify which platform and which devices
* are used for context creation.
* @author Sebastian Weiss
* @author shaman
* @see AppSettings#setOpenCLPlatformChooser(java.lang.Class)
*/
public interface PlatformChooser {

View File

@ -40,7 +40,7 @@ package com.jme3.opencl;
*
* @see Context#createProgramFromSourceCode(java.lang.String)
* @see #createKernel(java.lang.String)
* @author Sebastian Weiss
* @author shaman
*/
public interface Program extends OpenCLObject {

View File

@ -48,7 +48,7 @@ import java.util.logging.Logger;
/**
* Simple test checking if the basic functions of the OpenCL wrapper work
* @author Sebastian Weiss
* @author shaman
*/
public class HelloOpenCL extends SimpleApplication {
private static final Logger LOG = Logger.getLogger(HelloOpenCL.class.getName());

View File

@ -45,7 +45,7 @@ import java.util.logging.Logger;
/**
* This test class tests the capability to read and modify an OpenGL vertex buffer.
*
* @author Sebastian Weiss
* @author shaman
*/
public class TestVertexBufferSharing extends SimpleApplication {
private static final Logger LOG = Logger.getLogger(TestVertexBufferSharing.class.getName());

View File

@ -49,7 +49,7 @@ import java.util.logging.Logger;
* This test class tests the capability to write to a GL texture from OpenCL.
* Move the mouse around while pressing the left mouse key to modify the fractal.
*
* @author Sebastian Weiss
* @author shaman
*/
public class TestWriteToTexture extends SimpleApplication implements AnalogListener, ActionListener {
private static final Logger LOG = Logger.getLogger(TestWriteToTexture.class.getName());

View File

@ -37,7 +37,7 @@ import org.lwjgl.opencl.*;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglBuffer extends Buffer {

View File

@ -38,7 +38,7 @@ import org.lwjgl.opencl.CLCommandQueue;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglCommandQueue implements CommandQueue {

View File

@ -49,7 +49,7 @@ import org.lwjgl.opengl.*;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglContext extends Context {
private static final Logger LOG = Logger.getLogger(LwjglContext.class.getName());

View File

@ -41,7 +41,7 @@ import org.lwjgl.opencl.CLDevice;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public final class LwjglDevice implements Device {

View File

@ -39,7 +39,7 @@ import org.lwjgl.opencl.CLEvent;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglEvent implements Event {
private static final Logger LOG = Logger.getLogger(LwjglEvent.class.getName());

View File

@ -41,7 +41,7 @@ import org.lwjgl.opencl.api.CLImageFormat;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglImage implements Image {
private static final Logger LOG = Logger.getLogger(LwjglImage.class.getName());

View File

@ -45,7 +45,7 @@ import org.lwjgl.opencl.CLKernel;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglKernel extends Kernel {

View File

@ -43,7 +43,7 @@ import org.lwjgl.opencl.CLPlatform;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public final class LwjglPlatform implements Platform {

View File

@ -42,7 +42,7 @@ import org.lwjgl.opencl.*;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class LwjglProgram implements Program {
private static final Logger LOG = Logger.getLogger(LwjglProgram.class.getName());

View File

@ -46,7 +46,7 @@ import org.lwjgl.opencl.*;
/**
*
* @author Sebastian Weiss
* @author shaman
*/
public class Utils {
private static final Logger LOG = Logger.getLogger(Utils.class.getName());