mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
intel/fs: Silence a compiler warning
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
This commit is contained in:
parent
9b202239ba
commit
5064464931
1 changed files with 1 additions and 2 deletions
|
|
@ -981,12 +981,11 @@ fs_generator::generate_tex(fs_inst *inst, struct brw_reg dst,
|
|||
int msg_type = -1;
|
||||
uint32_t simd_mode;
|
||||
uint32_t return_format;
|
||||
bool is_combined_send = inst->eot;
|
||||
|
||||
/* Sampler EOT message of less than the dispatch width would kill the
|
||||
* thread prematurely.
|
||||
*/
|
||||
assert(!is_combined_send || inst->exec_size == dispatch_width);
|
||||
assert(!inst->eot || inst->exec_size == dispatch_width);
|
||||
|
||||
switch (dst.type) {
|
||||
case BRW_REGISTER_TYPE_D:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue