diff options
author | Michel Dänzer <[email protected]> | 2012-11-06 17:41:50 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2012-11-14 12:08:19 +0100 |
commit | 56ae9be95785e6b86b2979d7e013e6d4b633b224 (patch) | |
tree | f9fa56c42e2d74dfbf82f8f070ac30c28aab644b /src | |
parent | 3e20513b8fe38a580ed6e43771fb288922d7b6ff (diff) |
radeonsi: Handle TGSI TXL opcode.
Signed-off-by: Michel Dänzer <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/radeonsi/radeonsi_shader.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/radeonsi_shader.c b/src/gallium/drivers/radeonsi/radeonsi_shader.c index a5dddfbc921..21e9018f2e0 100644 --- a/src/gallium/drivers/radeonsi/radeonsi_shader.c +++ b/src/gallium/drivers/radeonsi/radeonsi_shader.c @@ -792,6 +792,12 @@ static const struct lp_build_tgsi_action txb_action = { .intr_name = "llvm.SI.sample.bias" }; +static const struct lp_build_tgsi_action txl_action = { + .fetch_args = tex_fetch_args, + .emit = lp_build_tgsi_intrinsic, + .intr_name = "llvm.SI.sample.lod" +}; + int si_pipe_shader_create( struct pipe_context *ctx, @@ -829,6 +835,7 @@ int si_pipe_shader_create( bld_base->op_actions[TGSI_OPCODE_TEX] = tex_action; bld_base->op_actions[TGSI_OPCODE_TXB] = txb_action; + bld_base->op_actions[TGSI_OPCODE_TXL] = txl_action; bld_base->op_actions[TGSI_OPCODE_TXP] = tex_action; si_shader_ctx.radeon_bld.load_input = declare_input; |