]> git.sesse.net Git - movit/blob - resample_effect.cpp
In ResampleEffect, be more aggressive about giving up on saving bilinear samples.
[movit] / resample_effect.cpp
1 // Three-lobed Lanczos, the most common choice.
2 #define LANCZOS_RADIUS 3.0
3
4 #include <epoxy/gl.h>
5 #include <assert.h>
6 #include <limits.h>
7 #include <math.h>
8 #include <stdio.h>
9 #include <algorithm>
10 #include <Eigen/Sparse>
11 #include <Eigen/SparseQR>
12 #include <Eigen/OrderingMethods>
13
14 #include "effect_chain.h"
15 #include "effect_util.h"
16 #include "fp16.h"
17 #include "init.h"
18 #include "resample_effect.h"
19 #include "util.h"
20
21 using namespace Eigen;
22 using namespace std;
23
24 namespace movit {
25
26 namespace {
27
28 template<class T>
29 struct Tap {
30         T weight;
31         T pos;
32 };
33
34 float sinc(float x)
35 {
36         if (fabs(x) < 1e-6) {
37                 return 1.0f - fabs(x);
38         } else {
39                 return sin(x) / x;
40         }
41 }
42
43 float lanczos_weight(float x, float a)
44 {
45         if (fabs(x) > a) {
46                 return 0.0f;
47         } else {
48                 return sinc(M_PI * x) * sinc(M_PI * x / a);
49         }
50 }
51
52 // Euclid's algorithm, from Wikipedia.
53 unsigned gcd(unsigned a, unsigned b)
54 {
55         while (b != 0) {
56                 unsigned t = b;
57                 b = a % b;
58                 a = t;
59         }
60         return a;
61 }
62
63 template<class DestFloat>
64 unsigned combine_samples(const Tap<float> *src, Tap<DestFloat> *dst, float num_subtexels, float inv_num_subtexels, unsigned num_src_samples, unsigned max_samples_saved)
65 {
66         // Cut off near-zero values at both sides.
67         unsigned num_samples_saved = 0;
68         while (num_samples_saved < max_samples_saved &&
69                num_src_samples > 0 &&
70                fabs(src[0].weight) < 1e-6) {
71                 ++src;
72                 --num_src_samples;
73                 ++num_samples_saved;
74         }
75         while (num_samples_saved < max_samples_saved &&
76                num_src_samples > 0 &&
77                fabs(src[num_src_samples - 1].weight) < 1e-6) {
78                 --num_src_samples;
79                 ++num_samples_saved;
80         }
81
82         for (unsigned i = 0, j = 0; i < num_src_samples; ++i, ++j) {
83                 // Copy the sample directly; it will be overwritten later if we can combine.
84                 if (dst != NULL) {
85                         dst[j].weight = convert_float<float, DestFloat>(src[i].weight);
86                         dst[j].pos = convert_float<float, DestFloat>(src[i].pos);
87                 }
88
89                 if (i == num_src_samples - 1) {
90                         // Last sample; cannot combine.
91                         continue;
92                 }
93                 assert(num_samples_saved <= max_samples_saved);
94                 if (num_samples_saved == max_samples_saved) {
95                         // We could maybe save more here, but other rows can't, so don't bother.
96                         continue;
97                 }
98
99                 float w1 = src[i].weight;
100                 float w2 = src[i + 1].weight;
101                 if (w1 * w2 < 0.0f) {
102                         // Differing signs; cannot combine.
103                         continue;
104                 }
105
106                 float pos1 = src[i].pos;
107                 float pos2 = src[i + 1].pos;
108                 assert(pos2 > pos1);
109
110                 fp16_int_t pos, total_weight;
111                 float sum_sq_error;
112                 combine_two_samples(w1, w2, pos1, pos2, num_subtexels, inv_num_subtexels, &pos, &total_weight, &sum_sq_error);
113
114                 // If the interpolation error is larger than that of about sqrt(2) of
115                 // a level at 8-bit precision, don't combine. (You'd think 1.0 was enough,
116                 // but since the artifacts are not really random, they can get quite
117                 // visible. On the other hand, going to 0.25f, I can see no change at
118                 // all with 8-bit output, so it would not seem to be worth it.)
119                 if (sum_sq_error > 0.5f / (255.0f * 255.0f)) {
120                         continue;
121                 }
122
123                 // OK, we can combine this and the next sample.
124                 if (dst != NULL) {
125                         dst[j].weight = total_weight;
126                         dst[j].pos = pos;
127                 }
128
129                 ++i;  // Skip the next sample.
130                 ++num_samples_saved;
131         }
132         return num_samples_saved;
133 }
134
135 // Normalize so that the sum becomes one. Note that we do it twice;
136 // this sometimes helps a tiny little bit when we have many samples.
137 template<class T>
138 void normalize_sum(Tap<T>* vals, unsigned num)
139 {
140         for (int normalize_pass = 0; normalize_pass < 2; ++normalize_pass) {
141                 double sum = 0.0;
142                 for (unsigned i = 0; i < num; ++i) {
143                         sum += to_fp64(vals[i].weight);
144                 }
145                 for (unsigned i = 0; i < num; ++i) {
146                         vals[i].weight = from_fp64<T>(to_fp64(vals[i].weight) / sum);
147                 }
148         }
149 }
150
151 // Make use of the bilinear filtering in the GPU to reduce the number of samples
152 // we need to make. This is a bit more complex than BlurEffect since we cannot combine
153 // two neighboring samples if their weights have differing signs, so we first need to
154 // figure out the maximum number of samples. Then, we downconvert all the weights to
155 // that number -- we could have gone for a variable-length system, but this is simpler,
156 // and the gains would probably be offset by the extra cost of checking when to stop.
157 //
158 // The greedy strategy for combining samples is optimal.
159 template<class DestFloat>
160 unsigned combine_many_samples(const Tap<float> *weights, unsigned src_size, unsigned src_samples, unsigned dst_samples, Tap<DestFloat> **bilinear_weights)
161 {
162         float num_subtexels = src_size / movit_texel_subpixel_precision;
163         float inv_num_subtexels = movit_texel_subpixel_precision / src_size;
164
165         unsigned max_samples_saved = UINT_MAX;
166         for (unsigned y = 0; y < dst_samples && max_samples_saved > 0; ++y) {
167                 unsigned num_samples_saved = combine_samples<DestFloat>(weights + y * src_samples, NULL, num_subtexels, inv_num_subtexels, src_samples, max_samples_saved);
168                 max_samples_saved = min(max_samples_saved, num_samples_saved);
169         }
170
171         // Now that we know the right width, actually combine the samples.
172         unsigned src_bilinear_samples = src_samples - max_samples_saved;
173         *bilinear_weights = new Tap<DestFloat>[dst_samples * src_bilinear_samples];
174         for (unsigned y = 0; y < dst_samples; ++y) {
175                 Tap<DestFloat> *bilinear_weights_ptr = *bilinear_weights + y * src_bilinear_samples;
176                 unsigned num_samples_saved = combine_samples(
177                         weights + y * src_samples,
178                         bilinear_weights_ptr,
179                         num_subtexels,
180                         inv_num_subtexels,
181                         src_samples,
182                         max_samples_saved);
183                 assert(num_samples_saved == max_samples_saved);
184                 normalize_sum(bilinear_weights_ptr, src_bilinear_samples);
185         }
186         return src_bilinear_samples;
187 }
188
189 // Compute the sum of squared errors between the ideal weights (which are
190 // assumed to fall exactly on pixel centers) and the weights that result
191 // from sampling at <bilinear_weights>. The primary reason for the difference
192 // is inaccuracy in the sampling positions, both due to limited precision
193 // in storing them (already inherent in sending them in as fp16_int_t)
194 // and in subtexel sampling precision (which we calculate in this function).
195 template<class T>
196 double compute_sum_sq_error(const Tap<float>* weights, unsigned num_weights,
197                             const Tap<T>* bilinear_weights, unsigned num_bilinear_weights,
198                             unsigned size)
199 {
200         // Find the effective range of the bilinear-optimized kernel.
201         // Due to rounding of the positions, this is not necessarily the same
202         // as the intended range (ie., the range of the original weights).
203         int lower_pos = int(floor(to_fp64(bilinear_weights[0].pos) * size - 0.5));
204         int upper_pos = int(ceil(to_fp64(bilinear_weights[num_bilinear_weights - 1].pos) * size - 0.5)) + 2;
205         lower_pos = min<int>(lower_pos, lrintf(weights[0].pos * size - 0.5));
206         upper_pos = max<int>(upper_pos, lrintf(weights[num_weights - 1].pos * size - 0.5) + 1);
207
208         float* effective_weights = new float[upper_pos - lower_pos];
209         for (int i = 0; i < upper_pos - lower_pos; ++i) {
210                 effective_weights[i] = 0.0f;
211         }
212
213         // Now find the effective weights that result from this sampling.
214         for (unsigned i = 0; i < num_bilinear_weights; ++i) {
215                 const float pixel_pos = to_fp64(bilinear_weights[i].pos) * size - 0.5f;
216                 const int x0 = int(floor(pixel_pos)) - lower_pos;
217                 const int x1 = x0 + 1;
218                 const float f = lrintf((pixel_pos - (x0 + lower_pos)) / movit_texel_subpixel_precision) * movit_texel_subpixel_precision;
219
220                 assert(x0 >= 0);
221                 assert(x1 >= 0);
222                 assert(x0 < upper_pos - lower_pos);
223                 assert(x1 < upper_pos - lower_pos);
224
225                 effective_weights[x0] += to_fp64(bilinear_weights[i].weight) * (1.0 - f);
226                 effective_weights[x1] += to_fp64(bilinear_weights[i].weight) * f;
227         }
228
229         // Subtract the desired weights to get the error.
230         for (unsigned i = 0; i < num_weights; ++i) {
231                 const int x = lrintf(weights[i].pos * size - 0.5f) - lower_pos;
232                 assert(x >= 0);
233                 assert(x < upper_pos - lower_pos);
234
235                 effective_weights[x] -= weights[i].weight;
236         }
237
238         double sum_sq_error = 0.0;
239         for (unsigned i = 0; i < num_weights; ++i) {
240                 sum_sq_error += effective_weights[i] * effective_weights[i];
241         }
242
243         delete[] effective_weights;
244         return sum_sq_error;
245 }
246
247 }  // namespace
248
249 ResampleEffect::ResampleEffect()
250         : input_width(1280),
251           input_height(720),
252           offset_x(0.0f), offset_y(0.0f),
253           zoom_x(1.0f), zoom_y(1.0f),
254           zoom_center_x(0.5f), zoom_center_y(0.5f)
255 {
256         register_int("width", &output_width);
257         register_int("height", &output_height);
258
259         // The first blur pass will forward resolution information to us.
260         hpass = new SingleResamplePassEffect(this);
261         CHECK(hpass->set_int("direction", SingleResamplePassEffect::HORIZONTAL));
262         vpass = new SingleResamplePassEffect(NULL);
263         CHECK(vpass->set_int("direction", SingleResamplePassEffect::VERTICAL));
264
265         update_size();
266 }
267
268 void ResampleEffect::rewrite_graph(EffectChain *graph, Node *self)
269 {
270         Node *hpass_node = graph->add_node(hpass);
271         Node *vpass_node = graph->add_node(vpass);
272         graph->connect_nodes(hpass_node, vpass_node);
273         graph->replace_receiver(self, hpass_node);
274         graph->replace_sender(self, vpass_node);
275         self->disabled = true;
276
277
278 // We get this information forwarded from the first blur pass,
279 // since we are not part of the chain ourselves.
280 void ResampleEffect::inform_input_size(unsigned input_num, unsigned width, unsigned height)
281 {
282         assert(input_num == 0);
283         assert(width != 0);
284         assert(height != 0);
285         input_width = width;
286         input_height = height;
287         update_size();
288 }
289
290 void ResampleEffect::update_size()
291 {
292         bool ok = true;
293         ok |= hpass->set_int("input_width", input_width);
294         ok |= hpass->set_int("input_height", input_height);
295         ok |= hpass->set_int("output_width", output_width);
296         ok |= hpass->set_int("output_height", input_height);
297
298         ok |= vpass->set_int("input_width", output_width);
299         ok |= vpass->set_int("input_height", input_height);
300         ok |= vpass->set_int("output_width", output_width);
301         ok |= vpass->set_int("output_height", output_height);
302
303         assert(ok);
304
305         // The offset added due to zoom may have changed with the size.
306         update_offset_and_zoom();
307 }
308
309 void ResampleEffect::update_offset_and_zoom()
310 {
311         bool ok = true;
312
313         // Zoom from the right origin. (zoom_center is given in normalized coordinates,
314         // i.e. 0..1.)
315         float extra_offset_x = zoom_center_x * (1.0f - 1.0f / zoom_x) * input_width;
316         float extra_offset_y = (1.0f - zoom_center_y) * (1.0f - 1.0f / zoom_y) * input_height;
317
318         ok |= hpass->set_float("offset", extra_offset_x + offset_x);
319         ok |= vpass->set_float("offset", extra_offset_y - offset_y);  // Compensate for the bottom-left origin.
320         ok |= hpass->set_float("zoom", zoom_x);
321         ok |= vpass->set_float("zoom", zoom_y);
322
323         assert(ok);
324 }
325
326 bool ResampleEffect::set_float(const string &key, float value) {
327         if (key == "width") {
328                 output_width = value;
329                 update_size();
330                 return true;
331         }
332         if (key == "height") {
333                 output_height = value;
334                 update_size();
335                 return true;
336         }
337         if (key == "top") {
338                 offset_y = value;
339                 update_offset_and_zoom();
340                 return true;
341         }
342         if (key == "left") {
343                 offset_x = value;
344                 update_offset_and_zoom();
345                 return true;
346         }
347         if (key == "zoom_x") {
348                 if (value <= 0.0f) {
349                         return false;
350                 }
351                 zoom_x = value;
352                 update_offset_and_zoom();
353                 return true;
354         }
355         if (key == "zoom_y") {
356                 if (value <= 0.0f) {
357                         return false;
358                 }
359                 zoom_y = value;
360                 update_offset_and_zoom();
361                 return true;
362         }
363         if (key == "zoom_center_x") {
364                 zoom_center_x = value;
365                 update_offset_and_zoom();
366                 return true;
367         }
368         if (key == "zoom_center_y") {
369                 zoom_center_y = value;
370                 update_offset_and_zoom();
371                 return true;
372         }
373         return false;
374 }
375
376 SingleResamplePassEffect::SingleResamplePassEffect(ResampleEffect *parent)
377         : parent(parent),
378           direction(HORIZONTAL),
379           input_width(1280),
380           input_height(720),
381           offset(0.0),
382           zoom(1.0),
383           last_input_width(-1),
384           last_input_height(-1),
385           last_output_width(-1),
386           last_output_height(-1),
387           last_offset(0.0 / 0.0),  // NaN.
388           last_zoom(0.0 / 0.0),  // NaN.
389           last_texture_width(-1), last_texture_height(-1)
390 {
391         register_int("direction", (int *)&direction);
392         register_int("input_width", &input_width);
393         register_int("input_height", &input_height);
394         register_int("output_width", &output_width);
395         register_int("output_height", &output_height);
396         register_float("offset", &offset);
397         register_float("zoom", &zoom);
398         register_uniform_sampler2d("sample_tex", &uniform_sample_tex);
399         register_uniform_int("num_samples", &uniform_num_samples);  // FIXME: What about GLSL pre-1.30?
400         register_uniform_float("num_loops", &uniform_num_loops);
401         register_uniform_float("slice_height", &uniform_slice_height);
402         register_uniform_float("sample_x_scale", &uniform_sample_x_scale);
403         register_uniform_float("sample_x_offset", &uniform_sample_x_offset);
404         register_uniform_float("whole_pixel_offset", &uniform_whole_pixel_offset);
405
406         glGenTextures(1, &texnum);
407 }
408
409 SingleResamplePassEffect::~SingleResamplePassEffect()
410 {
411         glDeleteTextures(1, &texnum);
412 }
413
414 string SingleResamplePassEffect::output_fragment_shader()
415 {
416         char buf[256];
417         sprintf(buf, "#define DIRECTION_VERTICAL %d\n", (direction == VERTICAL));
418         return buf + read_file("resample_effect.frag");
419 }
420
421 // Using vertical scaling as an example:
422 //
423 // Generally out[y] = w0 * in[yi] + w1 * in[yi + 1] + w2 * in[yi + 2] + ...
424 //
425 // Obviously, yi will depend on y (in a not-quite-linear way), but so will
426 // the weights w0, w1, w2, etc.. The easiest way of doing this is to encode,
427 // for each sample, the weight and the yi value, e.g. <yi, w0>, <yi + 1, w1>,
428 // and so on. For each y, we encode these along the x-axis (since that is spare),
429 // so out[0] will read from parameters <x,y> = <0,0>, <1,0>, <2,0> and so on.
430 //
431 // For horizontal scaling, we fill in the exact same texture;
432 // the shader just interprets it differently.
433 void SingleResamplePassEffect::update_texture(GLuint glsl_program_num, const string &prefix, unsigned *sampler_num)
434 {
435         unsigned src_size, dst_size;
436         if (direction == SingleResamplePassEffect::HORIZONTAL) {
437                 assert(input_height == output_height);
438                 src_size = input_width;
439                 dst_size = output_width;
440         } else if (direction == SingleResamplePassEffect::VERTICAL) {
441                 assert(input_width == output_width);
442                 src_size = input_height;
443                 dst_size = output_height;
444         } else {
445                 assert(false);
446         }
447
448         // For many resamplings (e.g. 640 -> 1280), we will end up with the same
449         // set of samples over and over again in a loop. Thus, we can compute only
450         // the first such loop, and then ask the card to repeat the texture for us.
451         // This is both easier on the texture cache and lowers our CPU cost for
452         // generating the kernel somewhat.
453         float scaling_factor;
454         if (fabs(zoom - 1.0f) < 1e-6) {
455                 num_loops = gcd(src_size, dst_size);
456                 scaling_factor = float(dst_size) / float(src_size);
457         } else {
458                 // If zooming is enabled (ie., zoom != 1), we turn off the looping.
459                 // We _could_ perhaps do it for rational zoom levels (especially
460                 // things like 2:1), but it doesn't seem to be worth it, given that
461                 // the most common use case would seem to be varying the zoom
462                 // from frame to frame.
463                 num_loops = 1;
464                 scaling_factor = zoom * float(dst_size) / float(src_size);
465         }
466         slice_height = 1.0f / num_loops;
467         unsigned dst_samples = dst_size / num_loops;
468
469         // Sample the kernel in the right place. A diagram with a triangular kernel
470         // (corresponding to linear filtering, and obviously with radius 1)
471         // for easier ASCII art drawing:
472         //
473         //                *
474         //               / \                      |
475         //              /   \                     |
476         //             /     \                    |
477         //    x---x---x   x   x---x---x---x
478         //
479         // Scaling up (in this case, 2x) means sampling more densely:
480         //
481         //                *
482         //               / \                      |
483         //              /   \                     |
484         //             /     \                    |
485         //   x-x-x-x-x-x x x x-x-x-x-x-x-x-x
486         //
487         // When scaling up, any destination pixel will only be influenced by a few
488         // (in this case, two) neighboring pixels, and more importantly, the number
489         // will not be influenced by the scaling factor. (Note, however, that the
490         // pixel centers have moved, due to OpenGL's center-pixel convention.)
491         // The only thing that changes is the weights themselves, as the sampling
492         // points are at different distances from the original pixels.
493         //
494         // Scaling down is a different story:
495         //
496         //                *
497         //               / \                      |
498         //              /   \                     |
499         //             /     \                    |
500         //    --x------ x     --x-------x--
501         //
502         // Again, the pixel centers have moved in a maybe unintuitive fashion,
503         // although when you consider that there are multiple source pixels around,
504         // it's not so bad as at first look:
505         //
506         //            *   *   *   *
507         //           / \ / \ / \ / \              |
508         //          /   X   X   X   \             |
509         //         /   / \ / \ / \   \            |
510         //    --x-------x-------x-------x--
511         //
512         // As you can see, the new pixels become averages of the two neighboring old
513         // ones (the situation for Lanczos is of course more complex).
514         //
515         // Anyhow, in this case we clearly need to look at more source pixels
516         // to compute the destination pixel, and how many depend on the scaling factor.
517         // Thus, the kernel width will vary with how much we scale.
518         float radius_scaling_factor = min(scaling_factor, 1.0f);
519         int int_radius = lrintf(LANCZOS_RADIUS / radius_scaling_factor);
520         int src_samples = int_radius * 2 + 1;
521         Tap<float> *weights = new Tap<float>[dst_samples * src_samples];
522         float subpixel_offset = offset - lrintf(offset);  // The part not covered by whole_pixel_offset.
523         assert(subpixel_offset >= -0.5f && subpixel_offset <= 0.5f);
524         for (unsigned y = 0; y < dst_samples; ++y) {
525                 // Find the point around which we want to sample the source image,
526                 // compensating for differing pixel centers as the scale changes.
527                 float center_src_y = (y + 0.5f) / scaling_factor - 0.5f;
528                 int base_src_y = lrintf(center_src_y);
529
530                 // Now sample <int_radius> pixels on each side around that point.
531                 for (int i = 0; i < src_samples; ++i) {
532                         int src_y = base_src_y + i - int_radius;
533                         float weight = lanczos_weight(radius_scaling_factor * (src_y - center_src_y - subpixel_offset), LANCZOS_RADIUS);
534                         weights[y * src_samples + i].weight = weight * radius_scaling_factor;
535                         weights[y * src_samples + i].pos = (src_y + 0.5) / float(src_size);
536                 }
537         }
538
539         // Now make use of the bilinear filtering in the GPU to reduce the number of samples
540         // we need to make. Try fp16 first; if it's not accurate enough, we go to fp32.
541         // Our tolerance level for total error is a bit higher than the one for invididual
542         // samples, since one would assume overall errors in the shape don't matter as much.
543         const float max_error = 2.0f / (255.0f * 255.0f);
544         Tap<fp16_int_t> *bilinear_weights_fp16;
545         src_bilinear_samples = combine_many_samples(weights, src_size, src_samples, dst_samples, &bilinear_weights_fp16);
546         Tap<float> *bilinear_weights_fp32 = NULL;
547         bool fallback_to_fp32 = false;
548         double max_sum_sq_error_fp16 = 0.0;
549         for (unsigned y = 0; y < dst_samples; ++y) {
550                 double sum_sq_error_fp16 = compute_sum_sq_error(
551                         weights + y * src_samples, src_samples,
552                         bilinear_weights_fp16 + y * src_bilinear_samples, src_bilinear_samples,
553                         src_size);
554                 max_sum_sq_error_fp16 = std::max(max_sum_sq_error_fp16, sum_sq_error_fp16);
555                 if (max_sum_sq_error_fp16 > max_error) {
556                         break;
557                 }
558         }
559
560         if (max_sum_sq_error_fp16 > max_error) {
561                 fallback_to_fp32 = true;
562                 src_bilinear_samples = combine_many_samples(weights, src_size, src_samples, dst_samples, &bilinear_weights_fp32);
563         }
564
565         // Encode as a two-component texture. Note the GL_REPEAT.
566         glActiveTexture(GL_TEXTURE0 + *sampler_num);
567         check_error();
568         glBindTexture(GL_TEXTURE_2D, texnum);
569         check_error();
570         if (last_texture_width == -1) {
571                 // Need to set this state the first time.
572                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
573                 check_error();
574                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
575                 check_error();
576                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
577                 check_error();
578         }
579
580         GLenum type, internal_format;
581         void *pixels;
582         if (fallback_to_fp32) {
583                 type = GL_FLOAT;
584                 internal_format = GL_RG32F;
585                 pixels = bilinear_weights_fp32;
586         } else {
587                 type = GL_HALF_FLOAT;
588                 internal_format = GL_RG16F;
589                 pixels = bilinear_weights_fp16;
590         }
591
592         if (int(src_bilinear_samples) == last_texture_width &&
593             int(dst_samples) == last_texture_height &&
594             internal_format == last_texture_internal_format) {
595                 // Texture dimensions and type are unchanged; it is more efficient
596                 // to just update it rather than making an entirely new texture.
597                 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, src_bilinear_samples, dst_samples, GL_RG, type, pixels);
598         } else {
599                 glTexImage2D(GL_TEXTURE_2D, 0, internal_format, src_bilinear_samples, dst_samples, 0, GL_RG, type, pixels);
600                 last_texture_width = src_bilinear_samples;
601                 last_texture_height = dst_samples;
602                 last_texture_internal_format = internal_format;
603         }
604         check_error();
605
606         delete[] weights;
607         delete[] bilinear_weights_fp16;
608         delete[] bilinear_weights_fp32;
609 }
610
611 void SingleResamplePassEffect::set_gl_state(GLuint glsl_program_num, const string &prefix, unsigned *sampler_num)
612 {
613         Effect::set_gl_state(glsl_program_num, prefix, sampler_num);
614
615         assert(input_width > 0);
616         assert(input_height > 0);
617         assert(output_width > 0);
618         assert(output_height > 0);
619
620         if (input_width != last_input_width ||
621             input_height != last_input_height ||
622             output_width != last_output_width ||
623             output_height != last_output_height ||
624             offset != last_offset ||
625             zoom != last_zoom) {
626                 update_texture(glsl_program_num, prefix, sampler_num);
627                 last_input_width = input_width;
628                 last_input_height = input_height;
629                 last_output_width = output_width;
630                 last_output_height = output_height;
631                 last_offset = offset;
632                 last_zoom = zoom;
633         }
634
635         glActiveTexture(GL_TEXTURE0 + *sampler_num);
636         check_error();
637         glBindTexture(GL_TEXTURE_2D, texnum);
638         check_error();
639
640         uniform_sample_tex = *sampler_num;
641         ++*sampler_num;
642         uniform_num_samples = src_bilinear_samples;
643         uniform_num_loops = num_loops;
644         uniform_slice_height = slice_height;
645
646         // Instructions for how to convert integer sample numbers to positions in the weight texture.
647         uniform_sample_x_scale = 1.0f / src_bilinear_samples;
648         uniform_sample_x_offset = 0.5f / src_bilinear_samples;
649
650         if (direction == SingleResamplePassEffect::VERTICAL) {
651                 uniform_whole_pixel_offset = lrintf(offset) / float(input_height);
652         } else {
653                 uniform_whole_pixel_offset = lrintf(offset) / float(input_width);
654         }
655
656         // We specifically do not want mipmaps on the input texture;
657         // they break minification.
658         Node *self = chain->find_node_for_effect(this);
659         glActiveTexture(chain->get_input_sampler(self, 0));
660         check_error();
661         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
662         check_error();
663 }
664
665 }  // namespace movit