Skip to content

Commit

Permalink
Clearly this isn't correct. :)
Browse files Browse the repository at this point in the history
--HG--
branch : trunk
  • Loading branch information
icculus committed Apr 3, 2008
1 parent a218f42 commit e5db22a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions mojoshader.c
Expand Up @@ -1625,7 +1625,9 @@ static void emit_GLSL_CALLNZ(Context *ctx)

static void emit_GLSL_LOOP(Context *ctx)
{
fail(ctx, "unimplemented."); // !!! FIXME
//fail(ctx, "unimplemented."); // !!! FIXME
output_line(ctx, "for (BLAH, BLAH, BLAH) {");
ctx->indent++;
} // emit_GLSL_LOOP

static void emit_GLSL_RET(Context *ctx)
Expand All @@ -1641,7 +1643,9 @@ static void emit_GLSL_RET(Context *ctx)

static void emit_GLSL_ENDLOOP(Context *ctx)
{
fail(ctx, "unimplemented."); // !!! FIXME
//fail(ctx, "unimplemented."); // !!! FIXME
ctx->indent--;
output_line(ctx, "}");
} // emit_GLSL_ENDLOOP

static void emit_GLSL_LABEL(Context *ctx)
Expand Down

0 comments on commit e5db22a

Please sign in to comment.