1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
/*
* Copyright © 2015 Red Hat
* Copyright © 2016 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include "nir.h"
#include "nir_builder.h"
#include "program/prog_instruction.h"
/**
* This pass adds <0.5, 0.5> to all uses of gl_FragCoord.
*
* Run before nir_lower_io().
*
* For a more full featured pass, consider using nir_lower_wpos_ytransform(),
* which can handle pixel center integer / half integer, and origin lower
* left / upper left transformations.
*
* This simple pass is primarily intended for use by Vulkan drivers on
* hardware which provides an integer pixel center. Vulkan mandates that
* the pixel center must be half-integer, and also that the coordinate
* system's origin must be upper left. This means that there's no need
* for a uniform - we can always just add a constant. In the case that
* sample shading is enabled, Vulkan expects FragCoord to include sample
* positions.
*/
static void
update_fragcoord(nir_builder *b, nir_intrinsic_instr *intr,
const bool for_sample_shading)
{
nir_ssa_def *wpos = &intr->dest.ssa;
assert(intr->dest.is_ssa);
b->cursor = nir_after_instr(&intr->instr);
if (!for_sample_shading) {
wpos = nir_fadd(b, wpos, nir_imm_vec4(b, 0.5f, 0.5f, 0.0f, 0.0f));
} else {
nir_ssa_def *spos =
nir_load_system_value(b, nir_intrinsic_load_sample_pos, 0);
wpos = nir_fadd(b, wpos,
nir_vec4(b,
nir_channel(b, spos, 0),
nir_channel(b, spos, 1),
nir_imm_float(b, 0.0f),
nir_imm_float(b, 0.0f)));
}
nir_ssa_def_rewrite_uses_after(&intr->dest.ssa, nir_src_for_ssa(wpos),
wpos->parent_instr);
}
static bool
lower_wpos_center_block(nir_builder *b, nir_block *block,
const bool for_sample_shading)
{
bool progress = false;
nir_foreach_instr(instr, block) {
if (instr->type == nir_instr_type_intrinsic) {
nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
if (intr->intrinsic == nir_intrinsic_load_deref) {
nir_deref_instr *deref = nir_src_as_deref(intr->src[0]);
nir_variable *var = nir_deref_instr_get_variable(deref);
if (var->data.mode == nir_var_shader_in &&
var->data.location == VARYING_SLOT_POS) {
/* gl_FragCoord should not have array/struct derefs: */
assert(deref->deref_type == nir_deref_type_var);
update_fragcoord(b, intr, for_sample_shading);
progress = true;
}
} else if (intr->intrinsic == nir_intrinsic_load_var) {
nir_deref_var *dvar = intr->variables[0];
nir_variable *var = dvar->var;
if (var->data.mode == nir_var_shader_in &&
var->data.location == VARYING_SLOT_POS) {
/* gl_FragCoord should not have array/struct derefs: */
assert(dvar->deref.child == NULL);
update_fragcoord(b, intr, for_sample_shading);
progress = true;
}
}
}
}
return progress;
}
bool
nir_lower_wpos_center(nir_shader *shader, const bool for_sample_shading)
{
bool progress = false;
nir_builder b;
assert(shader->info.stage == MESA_SHADER_FRAGMENT);
nir_foreach_function(function, shader) {
if (function->impl) {
nir_builder_init(&b, function->impl);
nir_foreach_block(block, function->impl) {
progress = lower_wpos_center_block(&b, block, for_sample_shading) ||
progress;
}
nir_metadata_preserve(function->impl, nir_metadata_block_index |
nir_metadata_dominance);
}
}
return progress;
}
|