Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private void createLeftQuad() {
}

/**
* Adds a "transparent" quad to the scene, that limits the color values of the scene behind the object.<br/>
* Adds a "transparent" quad to the scene, that limits the color values of the scene behind the object.<br>
* This effect can be good seen on bright areas of the scene (e.g. areas with specular lighting effects).
*/
private void createRightQuad() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private static FloatBuffer getVertices(ConvexShape convexShape) {

/**
* A callback is used to process the triangles of the shape as there is no direct access to a concave shapes, shape.
* <p/>
* <p>
* The triangles are simply put into a list (which in extreme condition will cause memory problems) then put into a direct buffer.
*
* @author CJ Hare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/**
* Base class for OpenCL object information queries.
* <p/>
* <p>
* All methods require the object being queried (a pointer value) and the
* integer parameter name.
*
Expand Down Expand Up @@ -43,7 +43,7 @@ boolean getBoolean(long object, int parameterName) {

/**
* Returns the integer value for the specified {@code parameterName}.
* <p/>
* <p>
* For integer parameters that may be 32 or 64 bits (e.g. {@code size_t}),
* {@link #getPointer} should be used instead.
*
Expand All @@ -63,7 +63,7 @@ int getInt(long object, int parameterName) {

/**
* Returns the long value for the specified {@code parameterName}.
* <p/>
* <p>
* For integer parameters that may be 32 or 64 bits (e.g. {@code size_t}),
* {@link #getPointer} should be used instead.
*
Expand All @@ -83,7 +83,7 @@ long getLong(long object, int parameterName) {

/**
* Returns the pointer value for the specified {@code parameterName}.
* <p/>
* <p>
* This method should also be used for integer parameters that may be 32 or
* 64 bits (e.g. {@code size_t}).
*
Expand All @@ -104,7 +104,7 @@ long getPointer(long object, int parameterName) {
/**
* Writes the pointer list for the specified {@code parameterName} into
* {@code target}.
* <p/>
* <p>
* This method should also be used for integer parameters that may be 32 or
* 64 bits (e.g. {@code size_t}).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/**
* Base class for OpenCL object information queries.
* <p/>
* <p>
* All methods require the object being queried (a pointer value), a second
* integer argument and the integer parameter name.
*
Expand Down Expand Up @@ -44,7 +44,7 @@ boolean getBoolean(long object, int arg, int parameterName) {

/**
* Returns the integer value for the specified {@code parameterName}.
* <p/>
* <p>
* For integer parameters that may be 32 or 64 bits (e.g. {@code size_t}),
* {@link #getPointer} should be used instead.
*
Expand All @@ -65,7 +65,7 @@ int getInt(long object, int arg, int parameterName) {

/**
* Returns the long value for the specified {@code parameterName}.
* <p/>
* <p>
* For integer parameters that may be 32 or 64 bits (e.g. {@code size_t}),
* {@link #getPointer} should be used instead.
*
Expand All @@ -86,7 +86,7 @@ long getLong(long object, int arg, int parameterName) {

/**
* Returns the pointer value for the specified {@code parameterName}.
* <p/>
* <p>
* This method should also be used for integer parameters that may be 32 or
* 64 bits (e.g. {@code size_t}).
*
Expand All @@ -108,7 +108,7 @@ long getPointer(long object, int arg, int parameterName) {
/**
* Writes the pointer list for the specified {@code parameterName} into
* {@code target}.
* <p/>
* <p>
* This method should also be used for integer parameters that may be 32 or
* 64 bits (e.g. {@code size_t}).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/**
* Base class for OpenCL object information queries.
* <p/>
* <p>
* All methods require the object being queried (a pointer value), a second
* object argument (another pointer value) and the integer parameter name.
*
Expand Down Expand Up @@ -45,7 +45,7 @@ boolean getBoolean(long object, long arg, int parameterName) {

/**
* Returns the integer value for the specified {@code parameterName}.
* <p/>
* <p>
* For integer parameters that may be 32 or 64 bits (e.g. {@code size_t}),
* {@link #getPointer} should be used instead.
*
Expand All @@ -66,7 +66,7 @@ int getInt(long object, long arg, int parameterName) {

/**
* Returns the long value for the specified {@code parameterName}.
* <p/>
* <p>
* For integer parameters that may be 32 or 64 bits (e.g. {@code size_t}),
* {@link #getPointer} should be used instead.
*
Expand All @@ -87,7 +87,7 @@ long getLong(long object, long arg, int parameterName) {

/**
* Returns the pointer value for the specified {@code parameterName}.
* <p/>
* <p>
* This method should also be used for integer parameters that may be 32 or
* 64 bits (e.g. {@code size_t}).
*
Expand All @@ -109,7 +109,7 @@ long getPointer(long object, long arg, int parameterName) {
/**
* Writes the pointer list for the specified {@code parameterName} into
* {@code target}.
* <p/>
* <p>
* This method should also be used for integer parameters that may be 32 or
* 64 bits (e.g. {@code size_t}).
*
Expand Down