diff options
author | Ilia Mirkin <[email protected]> | 2015-07-11 12:47:03 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-07-25 02:03:25 -0400 |
commit | a818faa6ddcfa6cd90a24b70c49ec76573954111 (patch) | |
tree | 85d74650973fe0384b228eb4e3ae45c2af2929bc | |
parent | 7b40d92f0d0661c05c1afa59555905b2c37e594f (diff) |
nvc0: fix geometry program revalidation of clipping params
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Cc: [email protected]
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c b/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c index 945e2a6c9bd..ce1119c284d 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c @@ -339,7 +339,7 @@ nvc0_check_program_ucps(struct nvc0_context *nvc0, nvc0_vertprog_validate(nvc0); else if (likely(vp == nvc0->gmtyprog)) - nvc0_vertprog_validate(nvc0); + nvc0_gmtyprog_validate(nvc0); else nvc0_tevlprog_validate(nvc0); } |