mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
i965: Gen6's sampler messages are the same as Ironlake.
This should fix texturing in the new FS backend.
This commit is contained in:
parent
fe6efc25ed
commit
75270f705f
1 changed files with 1 additions and 1 deletions
|
|
@ -2054,7 +2054,7 @@ fs_visitor::generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src)
|
|||
int rlen = 4;
|
||||
uint32_t simd_mode = BRW_SAMPLER_SIMD_MODE_SIMD8;
|
||||
|
||||
if (intel->gen == 5) {
|
||||
if (intel->gen >= 5) {
|
||||
switch (inst->opcode) {
|
||||
case FS_OPCODE_TEX:
|
||||
if (inst->shadow_compare) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue