File: | var/lib/jenkins/workspace/firefox-scan-build/obj-x86_64-pc-linux-gnu/x86_64-unknown-linux-gnu/debug/build/swgl-6f6517a85091acb7/out/composite_FAST_PATH_TEXTURE_RECT.h |
Warning: | line 69, column 16 Value stored to 'texture_size' during its initialization is never read |
Press '?' to see keyboard shortcuts
Keyboard shortcuts:
1 | struct composite_FAST_PATH_TEXTURE_RECT_common { |
2 | struct Samplers { |
3 | sampler2DRect_impl sColor0_impl; |
4 | int sColor0_slot; |
5 | bool set_slot(int index, int value) { |
6 | switch (index) { |
7 | case 2: |
8 | sColor0_slot = value; |
9 | return true; |
10 | } |
11 | return false; |
12 | } |
13 | } samplers; |
14 | struct AttribLocations { |
15 | int aPosition = NULL_ATTRIB16; |
16 | int aDeviceRect = NULL_ATTRIB16; |
17 | int aDeviceClipRect = NULL_ATTRIB16; |
18 | int aParams = NULL_ATTRIB16; |
19 | int aFlip = NULL_ATTRIB16; |
20 | int aUvRect0 = NULL_ATTRIB16; |
21 | void bind_loc(const char* name, int index) { |
22 | if (strcmp("aPosition", name) == 0) { aPosition = index; return; } |
23 | if (strcmp("aDeviceRect", name) == 0) { aDeviceRect = index; return; } |
24 | if (strcmp("aDeviceClipRect", name) == 0) { aDeviceClipRect = index; return; } |
25 | if (strcmp("aParams", name) == 0) { aParams = index; return; } |
26 | if (strcmp("aFlip", name) == 0) { aFlip = index; return; } |
27 | if (strcmp("aUvRect0", name) == 0) { aUvRect0 = index; return; } |
28 | } |
29 | int get_loc(const char* name) const { |
30 | if (strcmp("aPosition", name) == 0) { return aPosition != NULL_ATTRIB16 ? aPosition : -1; } |
31 | if (strcmp("aDeviceRect", name) == 0) { return aDeviceRect != NULL_ATTRIB16 ? aDeviceRect : -1; } |
32 | if (strcmp("aDeviceClipRect", name) == 0) { return aDeviceClipRect != NULL_ATTRIB16 ? aDeviceClipRect : -1; } |
33 | if (strcmp("aParams", name) == 0) { return aParams != NULL_ATTRIB16 ? aParams : -1; } |
34 | if (strcmp("aFlip", name) == 0) { return aFlip != NULL_ATTRIB16 ? aFlip : -1; } |
35 | if (strcmp("aUvRect0", name) == 0) { return aUvRect0 != NULL_ATTRIB16 ? aUvRect0 : -1; } |
36 | return -1; |
37 | } |
38 | } attrib_locations; |
39 | sampler2DRect sColor0; |
40 | mat4_scalar uTransform; |
41 | void bind_textures() { |
42 | sColor0 = lookup_sampler(&samplers.sColor0_impl, samplers.sColor0_slot); |
43 | } |
44 | }; |
45 | struct composite_FAST_PATH_TEXTURE_RECT_vert : VertexShaderImpl, composite_FAST_PATH_TEXTURE_RECT_common { |
46 | private: |
47 | typedef composite_FAST_PATH_TEXTURE_RECT_vert Self; |
48 | // mat4_scalar uTransform; |
49 | vec2 aPosition; |
50 | // sampler2DRect sColor0; |
51 | // sampler2DRect sColor1; |
52 | // sampler2DRect sColor2; |
53 | vec2 vUv; |
54 | vec4_scalar aDeviceRect; |
55 | vec4_scalar aDeviceClipRect; |
56 | vec4_scalar aColor; |
57 | vec4_scalar aParams; |
58 | vec2_scalar aFlip; |
59 | vec4_scalar aUvRect0; |
60 | ALWAYS_INLINE__attribute__((always_inline)) inline void main(void) { |
61 | vec4_scalar device_rect = mix((aDeviceRect).sel(X,Y,Z,W), (aDeviceRect).sel(Z,W,X,Y), (aFlip).sel(X,Y,X,Y)); |
62 | vec2 world_pos = mix((device_rect).sel(X,Y), (device_rect).sel(Z,W), (aPosition).sel(X,Y)); |
63 | vec2 clipped_world_pos = clamp(world_pos, (aDeviceClipRect).sel(X,Y), (aDeviceClipRect).sel(Z,W)); |
64 | vec2 uv = ((clipped_world_pos)-((device_rect).sel(X,Y)))/(((device_rect).sel(Z,W))-((device_rect).sel(X,Y))); |
65 | uv = mix((aUvRect0).sel(X,Y), (aUvRect0).sel(Z,W), uv); |
66 | vec4_scalar uvBounds = make_vec4(min((aUvRect0).sel(X,Y), (aUvRect0).sel(Z,W)), max((aUvRect0).sel(X,Y), (aUvRect0).sel(Z,W))); |
67 | if ((make_int((aParams).y))==(1)) { |
68 | { |
69 | vec2_scalar texture_size = make_vec2(1.f, 1.f); |
Value stored to 'texture_size' during its initialization is never read | |
70 | uvBounds += make_vec4(0.5f, 0.5f, -(0.5f), -(0.5f)); |
71 | } |
72 | } |
73 | vUv = uv; |
74 | gl_Position = (uTransform)*(make_vec4(clipped_world_pos, 0.f, 1.f)); |
75 | } |
76 | static void set_uniform_1i(VertexShaderImpl* impl, int index, int value) { |
77 | Self* self = (Self*)impl; |
78 | if (self->samplers.set_slot(index, value)) return; |
79 | switch (index) { |
80 | case 2: |
81 | assert(0)(static_cast <bool> (0) ? void (0) : __assert_fail ("0" , __builtin_FILE (), __builtin_LINE (), __extension__ __PRETTY_FUNCTION__ )); // sColor0 |
82 | break; |
83 | case 1: |
84 | assert(0)(static_cast <bool> (0) ? void (0) : __assert_fail ("0" , __builtin_FILE (), __builtin_LINE (), __extension__ __PRETTY_FUNCTION__ )); // uTransform |
85 | break; |
86 | } |
87 | } |
88 | static void set_uniform_4fv(VertexShaderImpl* impl, int index, const float *value) { |
89 | Self* self = (Self*)impl; |
90 | switch (index) { |
91 | case 2: |
92 | assert(0)(static_cast <bool> (0) ? void (0) : __assert_fail ("0" , __builtin_FILE (), __builtin_LINE (), __extension__ __PRETTY_FUNCTION__ )); // sColor0 |
93 | break; |
94 | case 1: |
95 | assert(0)(static_cast <bool> (0) ? void (0) : __assert_fail ("0" , __builtin_FILE (), __builtin_LINE (), __extension__ __PRETTY_FUNCTION__ )); // uTransform |
96 | break; |
97 | } |
98 | } |
99 | static void set_uniform_matrix4fv(VertexShaderImpl* impl, int index, const float *value) { |
100 | Self* self = (Self*)impl; |
101 | switch (index) { |
102 | case 2: |
103 | assert(0)(static_cast <bool> (0) ? void (0) : __assert_fail ("0" , __builtin_FILE (), __builtin_LINE (), __extension__ __PRETTY_FUNCTION__ )); // sColor0 |
104 | break; |
105 | case 1: |
106 | self->uTransform = mat4_scalar::load_from_ptr(value); |
107 | break; |
108 | } |
109 | } |
110 | static void load_attribs(VertexShaderImpl* impl, VertexAttrib *attribs, uint32_t start, int instance, int count) {Self* self = (Self*)impl; |
111 | load_attrib(self->aPosition, attribs[self->attrib_locations.aPosition], start, instance, count); |
112 | load_flat_attrib(self->aDeviceRect, attribs[self->attrib_locations.aDeviceRect], start, instance, count); |
113 | load_flat_attrib(self->aDeviceClipRect, attribs[self->attrib_locations.aDeviceClipRect], start, instance, count); |
114 | load_flat_attrib(self->aParams, attribs[self->attrib_locations.aParams], start, instance, count); |
115 | load_flat_attrib(self->aFlip, attribs[self->attrib_locations.aFlip], start, instance, count); |
116 | load_flat_attrib(self->aUvRect0, attribs[self->attrib_locations.aUvRect0], start, instance, count); |
117 | } |
118 | public: |
119 | struct InterpOutputs { |
120 | vec2_scalar vUv; |
121 | }; |
122 | private: |
123 | ALWAYS_INLINE__attribute__((always_inline)) inline void store_interp_outputs(char* dest_ptr, size_t stride) { |
124 | for(int n = 0; n < 4; n++) { |
125 | auto* dest = reinterpret_cast<InterpOutputs*>(dest_ptr); |
126 | dest->vUv = get_nth(vUv, n); |
127 | dest_ptr += stride; |
128 | } |
129 | } |
130 | static void run(VertexShaderImpl* impl, char* interps, size_t interp_stride) { |
131 | Self* self = (Self*)impl; |
132 | self->main(); |
133 | self->store_interp_outputs(interps, interp_stride); |
134 | } |
135 | static void init_batch(VertexShaderImpl* impl) { |
136 | Self* self = (Self*)impl; self->bind_textures(); } |
137 | public: |
138 | composite_FAST_PATH_TEXTURE_RECT_vert() { |
139 | set_uniform_1i_func = &set_uniform_1i; |
140 | set_uniform_4fv_func = &set_uniform_4fv; |
141 | set_uniform_matrix4fv_func = &set_uniform_matrix4fv; |
142 | init_batch_func = &init_batch; |
143 | load_attribs_func = &load_attribs; |
144 | run_primitive_func = &run; |
145 | } |
146 | }; |
147 | |
148 | |
149 | struct composite_FAST_PATH_TEXTURE_RECT_frag : FragmentShaderImpl, composite_FAST_PATH_TEXTURE_RECT_vert { |
150 | private: |
151 | typedef composite_FAST_PATH_TEXTURE_RECT_frag Self; |
152 | #define oFragColorgl_FragColor gl_FragColor |
153 | // vec4 oFragColor; |
154 | // sampler2DRect sColor0; |
155 | // sampler2DRect sColor1; |
156 | // sampler2DRect sColor2; |
157 | vec2 vUv; |
158 | void write_output(vec4 color) { |
159 | oFragColorgl_FragColor = color; |
160 | } |
161 | ALWAYS_INLINE__attribute__((always_inline)) inline void main(void) { |
162 | vec2 uv = vUv; |
163 | vec4 texel = texture(sColor0, (uv).sel(X,Y)); |
164 | vec4 color = texel; |
165 | write_output(color); |
166 | } |
167 | void swgl_drawSpanRGBA8() { |
168 | vec4_scalar color = make_vec4(1.f); |
169 | vec4_scalar uvBounds = make_vec4(make_vec2(0.f), make_vec2(textureSize(sColor0))); |
170 | if ((color)!=(make_vec4(1.f))) { |
171 | { |
172 | swgl_commitTextureColorRGBA8(sColor0, vUv, uvBounds, color)do { if (sColor0->filter == TextureFilter::LINEAR) { do { auto packed_color = packColor(swgl_OutRGBA8, color); int len = (swgl_SpanLength ); int drawn = 0; if (LinearFilter filter = needsTextureLinear (sColor0, vUv, len)) { if (blend_key) { drawn = blendTextureLinear <true>(sColor0, vUv, len, uvBounds, packed_color, swgl_OutRGBA8 , filter); } else { drawn = blendTextureLinear<false>(sColor0 , vUv, len, uvBounds, packed_color, swgl_OutRGBA8, filter); } } else if (blend_key) { drawn = blendTextureNearestFast<true >(sColor0, vUv, len, uvBounds, packed_color, swgl_OutRGBA8 ); } else { drawn = blendTextureNearestFast<false>(sColor0 , vUv, len, uvBounds, packed_color, swgl_OutRGBA8); } swgl_OutRGBA8 += drawn; swgl_SpanLength -= drawn; } while (0); } else { do { auto packed_color = packColor(swgl_OutRGBA8, color); int drawn = 0; if (needsNearestFallback(sColor0, vUv, swgl_SpanLength) ) { if (blend_key) { drawn = blendTextureNearestRepeat<true , false>( sColor0, vUv, swgl_SpanLength, 0.0f, uvBounds, packed_color , swgl_OutRGBA8); } else { drawn = blendTextureNearestRepeat< false, false>( sColor0, vUv, swgl_SpanLength, 0.0f, uvBounds , packed_color, swgl_OutRGBA8); } } else if (blend_key) { drawn = blendTextureNearestFast<true>(sColor0, vUv, swgl_SpanLength , uvBounds, packed_color, swgl_OutRGBA8); } else { drawn = blendTextureNearestFast <false>(sColor0, vUv, swgl_SpanLength, uvBounds, packed_color , swgl_OutRGBA8); } swgl_OutRGBA8 += drawn; swgl_SpanLength -= drawn; } while (0); } } while (0); |
173 | } |
174 | } else { |
175 | swgl_commitTextureRGBA8(sColor0, vUv, uvBounds)do { if (sColor0->filter == TextureFilter::LINEAR) { do { auto packed_color = packColor(swgl_OutRGBA8, NoColor()); int len = (swgl_SpanLength); int drawn = 0; if (LinearFilter filter = needsTextureLinear (sColor0, vUv, len)) { if (blend_key) { drawn = blendTextureLinear <true>(sColor0, vUv, len, uvBounds, packed_color, swgl_OutRGBA8 , filter); } else { drawn = blendTextureLinear<false>(sColor0 , vUv, len, uvBounds, packed_color, swgl_OutRGBA8, filter); } } else if (blend_key) { drawn = blendTextureNearestFast<true >(sColor0, vUv, len, uvBounds, packed_color, swgl_OutRGBA8 ); } else { drawn = blendTextureNearestFast<false>(sColor0 , vUv, len, uvBounds, packed_color, swgl_OutRGBA8); } swgl_OutRGBA8 += drawn; swgl_SpanLength -= drawn; } while (0); } else { do { auto packed_color = packColor(swgl_OutRGBA8, NoColor()); int drawn = 0; if (needsNearestFallback(sColor0, vUv, swgl_SpanLength )) { if (blend_key) { drawn = blendTextureNearestRepeat<true , false>( sColor0, vUv, swgl_SpanLength, 0.0f, uvBounds, packed_color , swgl_OutRGBA8); } else { drawn = blendTextureNearestRepeat< false, false>( sColor0, vUv, swgl_SpanLength, 0.0f, uvBounds , packed_color, swgl_OutRGBA8); } } else if (blend_key) { drawn = blendTextureNearestFast<true>(sColor0, vUv, swgl_SpanLength , uvBounds, packed_color, swgl_OutRGBA8); } else { drawn = blendTextureNearestFast <false>(sColor0, vUv, swgl_SpanLength, uvBounds, packed_color , swgl_OutRGBA8); } swgl_OutRGBA8 += drawn; swgl_SpanLength -= drawn; } while (0); } } while (0); |
176 | } |
177 | } |
178 | typedef composite_FAST_PATH_TEXTURE_RECT_vert::InterpOutputs InterpInputs; |
179 | InterpInputs interp_step; |
180 | struct InterpPerspective { |
181 | vec2 vUv; |
182 | }; |
183 | InterpPerspective interp_perspective; |
184 | static void read_interp_inputs(FragmentShaderImpl* impl, const void* init_, const void* step_) {Self* self = (Self*)impl;const InterpInputs* init = (const InterpInputs*)init_;const InterpInputs* step = (const InterpInputs*)step_; |
185 | self->vUv = init_interp(init->vUv, step->vUv); |
186 | self->interp_step.vUv = step->vUv * 4.0f; |
187 | } |
188 | static void read_perspective_inputs(FragmentShaderImpl* impl, const void* init_, const void* step_) {Self* self = (Self*)impl;const InterpInputs* init = (const InterpInputs*)init_;const InterpInputs* step = (const InterpInputs*)step_; |
189 | Float w = 1.0f / self->gl_FragCoord.w; |
190 | self->interp_perspective.vUv = init_interp(init->vUv, step->vUv); |
191 | self->vUv = self->interp_perspective.vUv * w; |
192 | self->interp_step.vUv = step->vUv * 4.0f; |
193 | } |
194 | ALWAYS_INLINE__attribute__((always_inline)) inline void step_interp_inputs(int steps = 4) { |
195 | float chunks = steps * 0.25f; |
196 | vUv += interp_step.vUv * chunks; |
197 | } |
198 | ALWAYS_INLINE__attribute__((always_inline)) inline void step_perspective_inputs(int steps = 4) { |
199 | step_perspective(steps); |
200 | float chunks = steps * 0.25f; |
201 | Float w = 1.0f / gl_FragCoord.w; |
202 | interp_perspective.vUv += interp_step.vUv * chunks; |
203 | vUv = w * interp_perspective.vUv; |
204 | } |
205 | static void run(FragmentShaderImpl* impl) { |
206 | Self* self = (Self*)impl; |
207 | self->main(); |
208 | self->step_interp_inputs(); |
209 | } |
210 | static void skip(FragmentShaderImpl* impl, int steps) { |
211 | Self* self = (Self*)impl; |
212 | self->step_interp_inputs(steps); |
213 | } |
214 | static void run_perspective(FragmentShaderImpl* impl) { |
215 | Self* self = (Self*)impl; |
216 | self->main(); |
217 | self->step_perspective_inputs(); |
218 | } |
219 | static void skip_perspective(FragmentShaderImpl* impl, int steps) { |
220 | Self* self = (Self*)impl; |
221 | self->step_perspective_inputs(steps); |
222 | } |
223 | static int draw_span_RGBA8(FragmentShaderImpl* impl) { |
224 | Self* self = (Self*)impl; DISPATCH_DRAW_SPAN(self, RGBA8)do { int total = self->swgl_SpanLength; self->swgl_drawSpanRGBA8 (); int drawn = total - self->swgl_SpanLength; if (drawn) self ->step_interp_inputs(drawn); return drawn; } while (0); } |
225 | public: |
226 | composite_FAST_PATH_TEXTURE_RECT_frag() { |
227 | init_span_func = &read_interp_inputs; |
228 | run_func = &run; |
229 | skip_func = &skip; |
230 | draw_span_RGBA8_func = &draw_span_RGBA8; |
231 | enable_perspective(); |
232 | init_span_w_func = &read_perspective_inputs; |
233 | run_w_func = &run_perspective; |
234 | skip_w_func = &skip_perspective; |
235 | } |
236 | }; |
237 | |
238 | struct composite_FAST_PATH_TEXTURE_RECT_program : ProgramImpl, composite_FAST_PATH_TEXTURE_RECT_frag { |
239 | int get_uniform(const char *name) const override { |
240 | if (strcmp("sColor0", name) == 0) { return 2; } |
241 | if (strcmp("uTransform", name) == 0) { return 1; } |
242 | return -1; |
243 | } |
244 | void bind_attrib(const char* name, int index) override { |
245 | attrib_locations.bind_loc(name, index); |
246 | } |
247 | int get_attrib(const char* name) const override { |
248 | return attrib_locations.get_loc(name); |
249 | } |
250 | size_t interpolants_size() const override { return sizeof(InterpOutputs); } |
251 | VertexShaderImpl* get_vertex_shader() override { |
252 | return this; |
253 | } |
254 | FragmentShaderImpl* get_fragment_shader() override { |
255 | return this; |
256 | } |
257 | const char* get_name() const override { return "composite_FAST_PATH_TEXTURE_RECT"; } |
258 | static ProgramImpl* loader() { return new composite_FAST_PATH_TEXTURE_RECT_program; } |
259 | }; |
260 |