removed flecs and setted up vulkan building

This commit is contained in:
Lorenzo Torres 2025-11-02 14:49:06 +01:00
parent 7be714b81f
commit 1f594fbed7
8 changed files with 24 additions and 127415 deletions

View file

@ -0,0 +1,9 @@
vertex float4 basic_vertex( // 1
const device packed_float3* vertex_array [[ buffer(0) ]], // 2
unsigned int vid [[ vertex_id ]]) { // 3
return float4(vertex_array[vid], 1.0); // 4
}
fragment half4 basic_fragment() { // 1
return half4(1.0); // 2
}