[Metaballs] Remove sampling kernel from Metal file

This commit is contained in:
Eryn Wells 2017-08-01 19:01:43 -07:00
parent 2b409afc2d
commit cacdba4555

View file

@ -14,13 +14,6 @@ typedef struct {
float radius;
} Ball;
kernel void
sampleFieldKernel(const device Ball* metaballs [[buffer(0)]],
device float* samples [[buffer(1)]],
uint2 gid [[thread_position_in_grid]])
{
// TODO: Compute a sample for this pixel given the field data, and write it to the out texture.
}
typedef struct {
float2 position;