mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 11:38:05 +02:00
i965/vec4: fix regs_read() for doubles
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
7c6fba5e7c
commit
f79547840a
1 changed files with 2 additions and 2 deletions
|
|
@ -228,8 +228,8 @@ vec4_instruction::size_read(unsigned arg) const
|
|||
case UNIFORM:
|
||||
return 4 * type_sz(src[arg].type);
|
||||
default:
|
||||
/* XXX - Represent actual execution size and vertical stride. */
|
||||
return 8 * type_sz(src[arg].type);
|
||||
/* XXX - Represent actual vertical stride. */
|
||||
return exec_size * type_sz(src[arg].type);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue