mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-03 10:50:26 +01:00
i965: Support PROGRAM_ENV_PARAMs in brw_vs_emit.c
This commit is contained in:
parent
c9adb4c9cb
commit
09549704c6
2 changed files with 4 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue