diff options
author | Chris Forbes <[email protected]> | 2014-08-10 12:12:06 +1200 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-08-15 19:13:33 +1200 |
commit | abedd05bcdcfbe44d95338f92488c233187279a0 (patch) | |
tree | b90e99c1b25d237f910a919c314eb6d8cb0d5166 /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | fbfcd671a1c74eebc00c56f609a8792fedb0a45d (diff) |
i965/fs: Add support for nonconst sampler indexing in FS visitor
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 5aa0ca661fe..0f8fb2d8c55 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -380,8 +380,8 @@ public: fs_reg sample_index, uint32_t sampler); fs_inst *emit_texture_gen7(ir_texture *ir, fs_reg dst, fs_reg coordinate, fs_reg shadow_comp, fs_reg lod, fs_reg lod2, - fs_reg sample_index, fs_reg mcs, uint32_t sampler); - fs_reg emit_mcs_fetch(ir_texture *ir, fs_reg coordinate, uint32_t sampler); + fs_reg sample_index, fs_reg mcs, fs_reg sampler); + fs_reg emit_mcs_fetch(ir_texture *ir, fs_reg coordinate, fs_reg sampler); void emit_gen6_gather_wa(uint8_t wa, fs_reg dst); fs_reg fix_math_operand(fs_reg src); fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0); |