• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2022 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  */
23 
24 #include "nir.h"
25 #include "nir_builder.h"
26 
27 /**
28  * This NIR lowers pass for polygon and line smoothing by modifying the alpha
29  * value of fragment outputs using the sample coverage mask.
30  */
31 
32 static bool
lower_polylinesmooth(nir_builder * b,nir_instr * instr,void * data)33 lower_polylinesmooth(nir_builder *b, nir_instr *instr, void *data)
34 {
35    unsigned *num_smooth_aa_sample = data;
36 
37    if (instr->type != nir_instr_type_intrinsic)
38       return false;
39 
40    nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
41 
42    if (intr->intrinsic != nir_intrinsic_store_output)
43       return false;
44 
45    int location = nir_intrinsic_io_semantics(intr).location;
46    if ((location != FRAG_RESULT_COLOR && location < FRAG_RESULT_DATA0) ||
47        nir_intrinsic_src_type(intr) != nir_type_float32)
48       return false;
49 
50    assert(intr->src[0].is_ssa);
51    assert(intr->num_components == 4);
52 
53    b->cursor = nir_before_instr(&intr->instr);
54 
55    nir_ssa_def *coverage = nir_load_sample_mask_in(b);
56 
57    /* coverage = (coverage) / SI_NUM_SMOOTH_AA_SAMPLES */
58    coverage = nir_bit_count(b, coverage);
59    coverage = nir_u2f32(b, coverage);
60    coverage = nir_fmul_imm(b, coverage,  1.0 / *num_smooth_aa_sample);
61 
62    /* Write out the fragment color*vec4(1, 1, 1, alpha) */
63    nir_ssa_def *one = nir_imm_float(b, 1.0f);
64    nir_ssa_def *new_val = nir_fmul(b, nir_vec4(b, one, one, one, coverage),
65                                    intr->src[0].ssa);
66    nir_instr_rewrite_src(instr, &intr->src[0], nir_src_for_ssa(new_val));
67 
68    return true;
69 }
70 
71 bool
nir_lower_poly_line_smooth(nir_shader * shader,unsigned num_smooth_aa_sample)72 nir_lower_poly_line_smooth(nir_shader *shader, unsigned num_smooth_aa_sample)
73 {
74    assert(shader->info.stage == MESA_SHADER_FRAGMENT);
75    return nir_shader_instructions_pass(shader, lower_polylinesmooth,
76                                        nir_metadata_loop_analysis |
77                                        nir_metadata_block_index |
78                                        nir_metadata_dominance, &num_smooth_aa_sample);
79 }
80