mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 17:10:26 +01:00
tgsi: Silent msvc warning.
Rather stupid warning: msvc is warning that converting from a 1bit structure bitfield to a unsigned char looses precision... /WX makes this an error.
This commit is contained in:
parent
b4ed6e9b17
commit
83869ceab5
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ iter_instruction(
|
|||
inst->FullSrcRegisters[i].SrcRegister.File,
|
||||
inst->FullSrcRegisters[i].SrcRegister.Index,
|
||||
"source",
|
||||
inst->FullSrcRegisters[i].SrcRegister.Indirect );
|
||||
(boolean)inst->FullSrcRegisters[i].SrcRegister.Indirect );
|
||||
if (inst->FullSrcRegisters[i].SrcRegister.Indirect) {
|
||||
uint file;
|
||||
int index;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue