From fb5c6ee1caf0d48450dc316cb8721e6d2a4dc935 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 4 Apr 2009 02:10:43 -0400 Subject: [PATCH] Corrected function name coding style. --- mojoshader_compiler.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mojoshader_compiler.c b/mojoshader_compiler.c index 9a5ba5ad..09e8f4a6 100644 --- a/mojoshader_compiler.c +++ b/mojoshader_compiler.c @@ -50,7 +50,7 @@ static int is_semantic(const Context *ctx) } // is_semantic -static int ConvertToLemonToken(const Context *ctx) +static int convert_to_lemon_token(const Context *ctx) { switch (ctx->tokenval) { @@ -302,7 +302,7 @@ static int ConvertToLemonToken(const Context *ctx) } // switch return 0; -} +} // convert_to_lemon_token void MOJOSHADER_compile(const char *filename, @@ -331,7 +331,7 @@ void MOJOSHADER_compile(const char *filename, ctx.token = preprocessor_nexttoken(ctx.preprocessor, &ctx.tokenlen, &ctx.tokenval); - ParseHLSL(pParser, ConvertToLemonToken(&ctx), 0, 0); + ParseHLSL(pParser, convert_to_lemon_token(&ctx), 0, 0); } while (ctx.tokenval != TOKEN_EOI); ParseHLSLFree(pParser, f, d); }