Skip to content
Merged
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 @@ -25,7 +25,7 @@ public class Float4 implements FloatSerializable {
public float s2;
public float s3;

@OpenCLFunction(value = "float2", literal = true)
@OpenCLFunction(value = "float4", literal = true)
public static Float4 float4(final float aS0, final float aS1, final float aS2, final float aS3) {
return new Float4(aS0, aS1, aS2, aS3);
}
Expand Down Expand Up @@ -91,4 +91,4 @@ float dot(final Float4 aOtherVector) {
theDotProduct += s3 * aOtherVector.s3;
return theDotProduct;
}
}
}