Barry is here mashallah

This commit is contained in:
Isaac Marovitz
2023-08-02 20:32:59 -04:00
committed by Evan Husted
parent 6a115becef
commit 8bf33b3098
3 changed files with 13 additions and 7 deletions

View File

@@ -22,6 +22,7 @@ vertex CopyVertexOut vertexMain(unsigned short vid [[vertex_id]]) {
CopyVertexOut out;
out.position = float4(position, 0, 1);
out.position.y = -out.position.y;
out.uv = position * 0.5f + 0.5f;
return out;