OSDN Git Service

i965: Support PROGRAM_ENV_PARAMs in brw_vs_emit.c
authorEric Anholt <eric@anholt.net>
Sat, 29 Aug 2009 20:21:07 +0000 (13:21 -0700)
committerEric Anholt <eric@anholt.net>
Sat, 29 Aug 2009 20:29:38 +0000 (13:29 -0700)
src/mesa/drivers/dri/i965/brw_curbe.c
src/mesa/drivers/dri/i965/brw_vs_emit.c

index a1a6c53..0b0e693 100644 (file)
@@ -248,6 +248,9 @@ static void prepare_constant_buffer(struct brw_context *brw)
       GLuint offset = brw->curbe.vs_start * 16;
       GLuint nr = brw->vs.prog_data->nr_params / 4;
 
+      /* Updates the ParamaterValues[i] pointers for all parameters of the
+       * basic type of PROGRAM_STATE_VAR.
+       */
       _mesa_load_state_parameters(ctx, vp->program.Base.Parameters); 
 
       /* XXX just use a memcpy here */
index 83167b9..108e19c 100644 (file)
@@ -911,6 +911,7 @@ get_src_reg( struct brw_vs_compile *c,
    case PROGRAM_STATE_VAR:
    case PROGRAM_CONSTANT:
    case PROGRAM_UNIFORM:
+   case PROGRAM_ENV_PARAM:
       if (c->vp->use_const_buffer) {
          return get_constant(c, inst, argIndex);
       }
@@ -930,7 +931,6 @@ get_src_reg( struct brw_vs_compile *c,
       return brw_null_reg();
 
    case PROGRAM_LOCAL_PARAM: 
-   case PROGRAM_ENV_PARAM: 
    case PROGRAM_WRITE_ONLY:
    default:
       assert(0);