mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-18 10:20:39 +02:00
st/nine: Fix wrong mask in ff vs
Signed-off-by: Axel Davy <axel.davy@ens.fr> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
028dab95f6
commit
0b5bed774b
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ nine_ff_build_vs(struct NineDevice9 *device, struct vs_build_ctx *vs)
|
|||
|
||||
/* Check which inputs we should transform. */
|
||||
for (i = 0; i < 8 * 3; i += 3) {
|
||||
switch ((key->tc_gen >> i) & 0x3) {
|
||||
switch ((key->tc_gen >> i) & 0x7) {
|
||||
case NINED3DTSS_TCI_CAMERASPACENORMAL:
|
||||
need_aNrm = TRUE;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue