Mesa (master): program: minor whitespace clean-ups in program_parse_extra.c

Brian Paul brianp at kemper.freedesktop.org
Tue Mar 8 15:48:11 UTC 2016


Module: Mesa
Branch: master
Commit: 3ed8729f7b7ce0fcdb61191962293350a31fcecd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3ed8729f7b7ce0fcdb61191962293350a31fcecd

Author: Brian Paul <brianp at vmware.com>
Date:   Mon Mar  7 11:10:45 2016 -0700

program: minor whitespace clean-ups in program_parse_extra.c

---

 src/mesa/program/program_parse_extra.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/mesa/program/program_parse_extra.c b/src/mesa/program/program_parse_extra.c
index 1c5f579..c82c9c1 100644
--- a/src/mesa/program/program_parse_extra.c
+++ b/src/mesa/program/program_parse_extra.c
@@ -40,7 +40,6 @@ _mesa_parse_instruction_suffix(const struct asm_parser_state *state,
 {
    inst->Saturate = GL_FALSE;
 
-
    /* The only possible suffix element is the saturation selector from
     * ARB_fragment_program.
     */
@@ -51,7 +50,6 @@ _mesa_parse_instruction_suffix(const struct asm_parser_state *state,
       }
    }
 
-
    /* It is an error for all of the suffix string not to be consumed.
     */
    return suffix[0] == '\0';
@@ -85,7 +83,6 @@ _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option)
        */
       option += 4;
 
-
       if (strncmp(option, "fog_", 4) == 0) {
 	 option += 4;
 
@@ -136,10 +133,12 @@ _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option)
           * program options will fail to load.
           */
 
-         if (strcmp(option, "nicest") == 0 && state->option.PrecisionHint != OPTION_FASTEST) {
+         if (strcmp(option, "nicest") == 0 &&
+             state->option.PrecisionHint != OPTION_FASTEST) {
             state->option.PrecisionHint = OPTION_NICEST;
             return 1;
-         } else if (strcmp(option, "fastest") == 0 && state->option.PrecisionHint != OPTION_NICEST) {
+         } else if (strcmp(option, "fastest") == 0 &&
+                    state->option.PrecisionHint != OPTION_NICEST) {
             state->option.PrecisionHint = OPTION_FASTEST;
             return 1;
          }




More information about the mesa-commit mailing list