diff options
author | Samuel Pitoiset <[email protected]> | 2019-07-31 09:57:47 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-08-30 08:23:56 +0200 |
commit | 9f2fd23f99c567cef1daa67e0b48073c96aa14ee (patch) | |
tree | 13a5c8f721bbaac6acbb47195804ec572117e477 /src/amd/common | |
parent | a63719db6ab07417fe2eb90fb041bc4b807bab18 (diff) |
ac: drop now useless lookup_interp_param from ABI
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/amd/common')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 36 | ||||
-rw-r--r-- | src/amd/common/ac_shader_abi.h | 4 |
2 files changed, 32 insertions, 8 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index d4b30e4a330..5acac64665b 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -3077,10 +3077,38 @@ static LLVMValueRef load_sample_pos(struct ac_nir_context *ctx) return ac_build_gather_values(&ctx->ac, values, 2); } +static LLVMValueRef lookup_interp_param(struct ac_nir_context *ctx, + enum glsl_interp_mode interp, unsigned location) +{ + switch (interp) { + case INTERP_MODE_FLAT: + default: + return NULL; + case INTERP_MODE_SMOOTH: + case INTERP_MODE_NONE: + if (location == INTERP_CENTER) + return ctx->abi->persp_center; + else if (location == INTERP_CENTROID) + return ctx->abi->persp_centroid; + else if (location == INTERP_SAMPLE) + return ctx->abi->persp_sample; + break; + case INTERP_MODE_NOPERSPECTIVE: + if (location == INTERP_CENTER) + return ctx->abi->linear_center; + else if (location == INTERP_CENTROID) + return ctx->abi->linear_centroid; + else if (location == INTERP_SAMPLE) + return ctx->abi->linear_sample; + break; + } + return NULL; +} + static LLVMValueRef barycentric_center(struct ac_nir_context *ctx, unsigned mode) { - LLVMValueRef interp_param = ctx->abi->lookup_interp_param(ctx->abi, mode, INTERP_CENTER); + LLVMValueRef interp_param = lookup_interp_param(ctx, mode, INTERP_CENTER); return LLVMBuildBitCast(ctx->ac.builder, interp_param, ctx->ac.v2i32, ""); } @@ -3088,7 +3116,7 @@ static LLVMValueRef barycentric_offset(struct ac_nir_context *ctx, unsigned mode, LLVMValueRef offset) { - LLVMValueRef interp_param = ctx->abi->lookup_interp_param(ctx->abi, mode, INTERP_CENTER); + LLVMValueRef interp_param = lookup_interp_param(ctx, mode, INTERP_CENTER); LLVMValueRef src_c0 = ac_to_float(&ctx->ac, LLVMBuildExtractElement(ctx->ac.builder, offset, ctx->ac.i32_0, "")); LLVMValueRef src_c1 = ac_to_float(&ctx->ac, LLVMBuildExtractElement(ctx->ac.builder, offset, ctx->ac.i32_1, "")); @@ -3130,7 +3158,7 @@ static LLVMValueRef barycentric_offset(struct ac_nir_context *ctx, static LLVMValueRef barycentric_centroid(struct ac_nir_context *ctx, unsigned mode) { - LLVMValueRef interp_param = ctx->abi->lookup_interp_param(ctx->abi, mode, INTERP_CENTROID); + LLVMValueRef interp_param = lookup_interp_param(ctx, mode, INTERP_CENTROID); return LLVMBuildBitCast(ctx->ac.builder, interp_param, ctx->ac.v2i32, ""); } @@ -3160,7 +3188,7 @@ static LLVMValueRef barycentric_at_sample(struct ac_nir_context *ctx, static LLVMValueRef barycentric_sample(struct ac_nir_context *ctx, unsigned mode) { - LLVMValueRef interp_param = ctx->abi->lookup_interp_param(ctx->abi, mode, INTERP_SAMPLE); + LLVMValueRef interp_param = lookup_interp_param(ctx, mode, INTERP_SAMPLE); return LLVMBuildBitCast(ctx->ac.builder, interp_param, ctx->ac.v2i32, ""); } diff --git a/src/amd/common/ac_shader_abi.h b/src/amd/common/ac_shader_abi.h index 935355fbffa..61f1b735c49 100644 --- a/src/amd/common/ac_shader_abi.h +++ b/src/amd/common/ac_shader_abi.h @@ -196,10 +196,6 @@ struct ac_shader_abi { unsigned desc_set, unsigned binding); - LLVMValueRef (*lookup_interp_param)(struct ac_shader_abi *abi, - enum glsl_interp_mode interp, - unsigned location); - LLVMValueRef (*load_sample_position)(struct ac_shader_abi *abi, LLVMValueRef sample_id); |