[GPU] Whoops, accidentally flipped is_integer around.

This commit is contained in:
DrChat 2017-12-18 18:11:24 -06:00
parent 55d2c03943
commit 11f8da9092
1 changed files with 1 additions and 1 deletions

View File

@ -777,7 +777,7 @@ void ShaderTranslator::ParseVertexFetchInstruction(
i.attributes.exp_adjust = op.exp_adjust();
i.attributes.is_index_rounded = op.is_index_rounded();
i.attributes.is_signed = op.is_signed();
i.attributes.is_integer = op.is_normalized();
i.attributes.is_integer = !op.is_normalized();
i.attributes.prefetch_count = op.prefetch_count();
// Store for later use by mini fetches.