mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
i965/fs: Add support for non-shadow textureGrad (TXD) on Ivybridge.
This is somewhat ugly, but I couldn't think of a nicer way to handle the interleaved coordinate/derivative parameter loading. Ironlake and Sandybridge will still hit an assertion in visit(). Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
ad9481e128
commit
3fa910fff9
2 changed files with 43 additions and 10 deletions
|
|
@ -273,7 +273,8 @@ fs_visitor::generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src)
|
|||
}
|
||||
break;
|
||||
case FS_OPCODE_TXD:
|
||||
assert(!"TXD isn't supported on gen5+ yet.");
|
||||
assert(!inst->shadow_compare);
|
||||
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -796,20 +796,52 @@ fs_visitor::emit_texture_gen7(ir_texture *ir, fs_reg dst, fs_reg coordinate,
|
|||
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
||||
mlen += reg_width;
|
||||
break;
|
||||
case ir_txd:
|
||||
case ir_txd: {
|
||||
if (c->dispatch_width == 16)
|
||||
fail("Gen7 does not support sample_d/sample_d_c in SIMD16 mode.");
|
||||
|
||||
ir->lod_info.grad.dPdx->accept(this);
|
||||
fs_reg dPdx = this->result;
|
||||
|
||||
ir->lod_info.grad.dPdy->accept(this);
|
||||
fs_reg dPdy = this->result;
|
||||
|
||||
/* Load dPdx and the coordinate together:
|
||||
* [hdr], [ref], x, dPdx.x, dPdy.x, y, dPdx.y, dPdy.y, z, dPdx.z, dPdy.z
|
||||
*/
|
||||
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
||||
fs_inst *inst = emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen),
|
||||
coordinate);
|
||||
if (i < 3 && c->key.gl_clamp_mask[i] & (1 << sampler))
|
||||
inst->saturate = true;
|
||||
coordinate.reg_offset++;
|
||||
mlen += reg_width;
|
||||
|
||||
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), dPdx);
|
||||
dPdx.reg_offset++;
|
||||
mlen += reg_width;
|
||||
|
||||
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), dPdy);
|
||||
dPdy.reg_offset++;
|
||||
mlen += reg_width;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ir_txf:
|
||||
assert(!"GLSL 1.30 features unsupported");
|
||||
break;
|
||||
}
|
||||
|
||||
/* Set up the coordinate */
|
||||
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
||||
fs_inst *inst = emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen),
|
||||
coordinate);
|
||||
if (i < 3 && c->key.gl_clamp_mask[i] & (1 << sampler))
|
||||
inst->saturate = true;
|
||||
coordinate.reg_offset++;
|
||||
mlen += reg_width;
|
||||
/* Set up the coordinate (except for TXD where it was done earlier) */
|
||||
if (ir->op != ir_txd) {
|
||||
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
||||
fs_inst *inst = emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen),
|
||||
coordinate);
|
||||
if (i < 3 && c->key.gl_clamp_mask[i] & (1 << sampler))
|
||||
inst->saturate = true;
|
||||
coordinate.reg_offset++;
|
||||
mlen += reg_width;
|
||||
}
|
||||
}
|
||||
|
||||
/* Generate the SEND */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue