From 615cdbb05cda22658588220b64ec2890c7efca0d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 29 May 2016 03:51:36 -0400 Subject: [PATCH] Metal: fixed indentation for constant arrays. --- mojoshader.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mojoshader.c b/mojoshader.c index d9dbe454..049737c9 100644 --- a/mojoshader.c +++ b/mojoshader.c @@ -4705,6 +4705,7 @@ static void emit_METAL_const_array(Context *ctx, const ConstantsList *clist, const char *cstr = NULL; push_output(ctx, &ctx->mainline_top); + ctx->indent++; output_line(ctx, "const float4 %s[%d] = {", varname, size); ctx->indent++;