mesa: make the arguments in the asm statemants optional
authorZack Rusin <zackr@vmware.com>
Wed, 30 Jun 2010 01:45:41 +0000 (21:45 -0400)
committerZack Rusin <zackr@vmware.com>
Wed, 30 Jun 2010 01:45:41 +0000 (21:45 -0400)
geometry shaders emit/end functions don't take any arguments

src/glsl/cl/sl_cl_parse.c
src/mesa/state_tracker/st_program.c

index 65df6c38ae7c2017d3c2c114c4aabecd6bf8154b..09456f5219ae0e32edf1b6cdd32576637b657e51 100644 (file)
@@ -2191,9 +2191,8 @@ _parse_asm_statement(struct parse_context *ctx,
    if (_parse_identifier(ctx, &p)) {
       return -1;
    }
-   if (_parse_asm_arguments(ctx, &p)) {
-      return -1;
-   }
+   /* optional arguments */
+   _parse_asm_arguments(ctx, &p);
    if (_parse_token(ctx, SL_PP_SEMICOLON, &p)) {
       return -1;
    }
index 1b8612d570bf89be0c1e1af576c17792e349dd54..172d7dfe90563e795ffb30fc9254d7e6942e86d2 100644 (file)
@@ -489,7 +489,6 @@ st_translate_geometry_program(struct st_context *st,
       return;
    }
 
-   assert(0);
    /* which vertex output goes to the first geometry input */
    if (inputsRead & GEOM_BIT_VERTICES)
       vslot = 0;