You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
461 B
18 lines
461 B
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
float4 sk_Position [[position]];
|
|
int id [[user(locn1)]];
|
|
float sk_PointSize [[point_size]];
|
|
};
|
|
|
|
vertex Outputs vertexMain(Inputs _in [[stage_in]], uint sk_VertexID [[vertex_id]], uint sk_InstanceID [[instance_id]]) {
|
|
Outputs _out;
|
|
(void)_out;
|
|
_out.id = sk_InstanceID;
|
|
return (_out.sk_Position.y = -_out.sk_Position.y, _out);
|
|
}
|