summaryrefslogtreecommitdiff
path: root/src/sna/brw/brw_eu_emit.c
AgeCommit message (Collapse)Author
2016-11-11brw_eu_emit.c: fix wrong test on a register typeSergei Trofimovich
Caught by gcc-6 as: brw_eu_emit.c:180:49: warning: logical 'and' of equal expressions [-Wlogical-op] if (reg.file == BRW_ARCHITECTURE_REGISTER_FILE && reg.file == BRW_ARF_NULL) return; Change uses 'reg.nr' test for 'BRW_ARF_NULL'. Signed-off-by: Sergei Trofimovich <siarheit@google.com> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2015-06-09Fix typos found with codespell v1.7Sedat Dilek
To get codespell v1.7 check [2]. [1] https://github.com/lucasdemarchi/codespell [2] https://github.com/lucasdemarchi/codespell/releases Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
2014-12-01sna: Validate that the reg/insn size is well definedChris Wilson
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2014-01-08Revert "sna: Remove spurious SAMPLER writemask for gen4"Chris Wilson
This reverts commit 4966f8374a068ca2a533e30594bfd333551ffd37. Not so spurious after all! Reported-by: Michal Suchanek Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2014-01-07sna: Remove spurious SAMPLER writemask for gen4Chris Wilson
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2012-11-30Convert generation counter to octalChris Wilson
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2012-07-30sna: Add the brw assemblerChris Wilson
In order to construct programs on the fly to cater for the combinatorial number of possible shaders, we need an assembler, whilst also taking the opportunity to remove some of the inefficiencies and mistakes from the current shaders. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>