diff options
| -rw-r--r-- | src/mesa/tnl/t_vb_arbprogram.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vb_arbprogram.c b/src/mesa/tnl/t_vb_arbprogram.c index ef7b9eaa6c..906fd3f1e8 100644 --- a/src/mesa/tnl/t_vb_arbprogram.c +++ b/src/mesa/tnl/t_vb_arbprogram.c @@ -859,6 +859,7 @@ static struct reg cvp_load_reg( struct compilation *cp,     case PROGRAM_STATE_VAR:     case PROGRAM_CONSTANT: +   case PROGRAM_UNIFORM:        reg = cvp_make_reg(FILE_STATE_PARAM, index);        if (rel)   	 return cvp_emit_rel(cp, reg, tmpreg); @@ -870,7 +871,7 @@ static struct reg cvp_load_reg( struct compilation *cp,     case PROGRAM_WRITE_ONLY:     case PROGRAM_ADDRESS:     default: -      _mesa_problem(NULL, "Invalid register file %d in cvp_load_reg()"); +      _mesa_problem(NULL, "Invalid register file %d in cvp_load_reg()", file);        assert(0);        return tmpreg;		/* can't happen */     }  | 
