]> git.sesse.net Git - movit/blob - effect_chain.cpp
0f8876d8f70c68ccb6b4d2a41a538414eddf9efe
[movit] / effect_chain.cpp
1 #define GL_GLEXT_PROTOTYPES 1
2
3 #include <stdio.h>
4 #include <math.h>
5 #include <string.h>
6 #include <locale.h>
7 #include <assert.h>
8 #include <GL/glew.h>
9
10 #include <algorithm>
11 #include <set>
12 #include <stack>
13 #include <vector>
14
15 #include "util.h"
16 #include "effect_chain.h"
17 #include "gamma_expansion_effect.h"
18 #include "gamma_compression_effect.h"
19 #include "colorspace_conversion_effect.h"
20 #include "alpha_multiplication_effect.h"
21 #include "alpha_division_effect.h"
22 #include "dither_effect.h"
23 #include "input.h"
24 #include "init.h"
25
26 EffectChain::EffectChain(float aspect_nom, float aspect_denom)
27         : aspect_nom(aspect_nom),
28           aspect_denom(aspect_denom),
29           dither_effect(NULL),
30           fbo(0),
31           num_dither_bits(0),
32           finalized(false) {}
33
34 EffectChain::~EffectChain()
35 {
36         for (unsigned i = 0; i < nodes.size(); ++i) {
37                 if (nodes[i]->output_texture != 0) {
38                         glDeleteTextures(1, &nodes[i]->output_texture);
39                 }
40                 delete nodes[i]->effect;
41                 delete nodes[i];
42         }
43         for (unsigned i = 0; i < phases.size(); ++i) {
44                 glDeleteProgram(phases[i]->glsl_program_num);
45                 glDeleteShader(phases[i]->vertex_shader);
46                 glDeleteShader(phases[i]->fragment_shader);
47                 delete phases[i];
48         }
49         if (fbo != 0) {
50                 glDeleteFramebuffers(1, &fbo);
51         }
52 }
53
54 Input *EffectChain::add_input(Input *input)
55 {
56         inputs.push_back(input);
57         add_node(input);
58         return input;
59 }
60
61 void EffectChain::add_output(const ImageFormat &format, OutputAlphaFormat alpha_format)
62 {
63         output_format = format;
64         output_alpha_format = alpha_format;
65 }
66
67 Node *EffectChain::add_node(Effect *effect)
68 {
69         char effect_id[256];
70         sprintf(effect_id, "eff%u", (unsigned)nodes.size());
71
72         Node *node = new Node;
73         node->effect = effect;
74         node->disabled = false;
75         node->effect_id = effect_id;
76         node->output_color_space = COLORSPACE_INVALID;
77         node->output_gamma_curve = GAMMA_INVALID;
78         node->output_alpha_type = ALPHA_INVALID;
79         node->output_texture = 0;
80
81         nodes.push_back(node);
82         node_map[effect] = node;
83         return node;
84 }
85
86 void EffectChain::connect_nodes(Node *sender, Node *receiver)
87 {
88         sender->outgoing_links.push_back(receiver);
89         receiver->incoming_links.push_back(sender);
90 }
91
92 void EffectChain::replace_receiver(Node *old_receiver, Node *new_receiver)
93 {
94         new_receiver->incoming_links = old_receiver->incoming_links;
95         old_receiver->incoming_links.clear();
96         
97         for (unsigned i = 0; i < new_receiver->incoming_links.size(); ++i) {
98                 Node *sender = new_receiver->incoming_links[i];
99                 for (unsigned j = 0; j < sender->outgoing_links.size(); ++j) {
100                         if (sender->outgoing_links[j] == old_receiver) {
101                                 sender->outgoing_links[j] = new_receiver;
102                         }
103                 }
104         }       
105 }
106
107 void EffectChain::replace_sender(Node *old_sender, Node *new_sender)
108 {
109         new_sender->outgoing_links = old_sender->outgoing_links;
110         old_sender->outgoing_links.clear();
111         
112         for (unsigned i = 0; i < new_sender->outgoing_links.size(); ++i) {
113                 Node *receiver = new_sender->outgoing_links[i];
114                 for (unsigned j = 0; j < receiver->incoming_links.size(); ++j) {
115                         if (receiver->incoming_links[j] == old_sender) {
116                                 receiver->incoming_links[j] = new_sender;
117                         }
118                 }
119         }       
120 }
121
122 void EffectChain::insert_node_between(Node *sender, Node *middle, Node *receiver)
123 {
124         for (unsigned i = 0; i < sender->outgoing_links.size(); ++i) {
125                 if (sender->outgoing_links[i] == receiver) {
126                         sender->outgoing_links[i] = middle;
127                         middle->incoming_links.push_back(sender);
128                 }
129         }
130         for (unsigned i = 0; i < receiver->incoming_links.size(); ++i) {
131                 if (receiver->incoming_links[i] == sender) {
132                         receiver->incoming_links[i] = middle;
133                         middle->outgoing_links.push_back(receiver);
134                 }
135         }
136
137         assert(middle->incoming_links.size() == middle->effect->num_inputs());
138 }
139
140 void EffectChain::find_all_nonlinear_inputs(Node *node, std::vector<Node *> *nonlinear_inputs)
141 {
142         if (node->output_gamma_curve == GAMMA_LINEAR &&
143             node->effect->effect_type_id() != "GammaCompressionEffect") {
144                 return;
145         }
146         if (node->effect->num_inputs() == 0) {
147                 nonlinear_inputs->push_back(node);
148         } else {
149                 assert(node->effect->num_inputs() == node->incoming_links.size());
150                 for (unsigned i = 0; i < node->incoming_links.size(); ++i) {
151                         find_all_nonlinear_inputs(node->incoming_links[i], nonlinear_inputs);
152                 }
153         }
154 }
155
156 Effect *EffectChain::add_effect(Effect *effect, const std::vector<Effect *> &inputs)
157 {
158         assert(inputs.size() == effect->num_inputs());
159         Node *node = add_node(effect);
160         for (unsigned i = 0; i < inputs.size(); ++i) {
161                 assert(node_map.count(inputs[i]) != 0);
162                 connect_nodes(node_map[inputs[i]], node);
163         }
164         return effect;
165 }
166
167 // GLSL pre-1.30 doesn't support token pasting. Replace PREFIX(x) with <effect_id>_x.
168 std::string replace_prefix(const std::string &text, const std::string &prefix)
169 {
170         std::string output;
171         size_t start = 0;
172
173         while (start < text.size()) {
174                 size_t pos = text.find("PREFIX(", start);
175                 if (pos == std::string::npos) {
176                         output.append(text.substr(start, std::string::npos));
177                         break;
178                 }
179
180                 output.append(text.substr(start, pos - start));
181                 output.append(prefix);
182                 output.append("_");
183
184                 pos += strlen("PREFIX(");
185         
186                 // Output stuff until we find the matching ), which we then eat.
187                 int depth = 1;
188                 size_t end_arg_pos = pos;
189                 while (end_arg_pos < text.size()) {
190                         if (text[end_arg_pos] == '(') {
191                                 ++depth;
192                         } else if (text[end_arg_pos] == ')') {
193                                 --depth;
194                                 if (depth == 0) {
195                                         break;
196                                 }
197                         }
198                         ++end_arg_pos;
199                 }
200                 output.append(text.substr(pos, end_arg_pos - pos));
201                 ++end_arg_pos;
202                 assert(depth == 0);
203                 start = end_arg_pos;
204         }
205         return output;
206 }
207
208 Phase *EffectChain::compile_glsl_program(
209         const std::vector<Node *> &inputs,
210         const std::vector<Node *> &effects)
211 {
212         assert(!effects.empty());
213
214         // Deduplicate the inputs.
215         std::vector<Node *> true_inputs = inputs;
216         std::sort(true_inputs.begin(), true_inputs.end());
217         true_inputs.erase(std::unique(true_inputs.begin(), true_inputs.end()), true_inputs.end());
218
219         bool input_needs_mipmaps = false;
220         std::string frag_shader = read_file("header.frag");
221
222         // Create functions for all the texture inputs that we need.
223         for (unsigned i = 0; i < true_inputs.size(); ++i) {
224                 Node *input = true_inputs[i];
225         
226                 frag_shader += std::string("uniform sampler2D tex_") + input->effect_id + ";\n";
227                 frag_shader += std::string("vec4 ") + input->effect_id + "(vec2 tc) {\n";
228                 frag_shader += "\treturn texture2D(tex_" + input->effect_id + ", tc);\n";
229                 frag_shader += "}\n";
230                 frag_shader += "\n";
231         }
232
233         std::vector<Node *> sorted_effects = topological_sort(effects);
234
235         for (unsigned i = 0; i < sorted_effects.size(); ++i) {
236                 Node *node = sorted_effects[i];
237
238                 if (node->incoming_links.size() == 1) {
239                         frag_shader += std::string("#define INPUT ") + node->incoming_links[0]->effect_id + "\n";
240                 } else {
241                         for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
242                                 char buf[256];
243                                 sprintf(buf, "#define INPUT%d %s\n", j + 1, node->incoming_links[j]->effect_id.c_str());
244                                 frag_shader += buf;
245                         }
246                 }
247         
248                 frag_shader += "\n";
249                 frag_shader += std::string("#define FUNCNAME ") + node->effect_id + "\n";
250                 frag_shader += replace_prefix(node->effect->output_convenience_uniforms(), node->effect_id);
251                 frag_shader += replace_prefix(node->effect->output_fragment_shader(), node->effect_id);
252                 frag_shader += "#undef PREFIX\n";
253                 frag_shader += "#undef FUNCNAME\n";
254                 if (node->incoming_links.size() == 1) {
255                         frag_shader += "#undef INPUT\n";
256                 } else {
257                         for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
258                                 char buf[256];
259                                 sprintf(buf, "#undef INPUT%d\n", j + 1);
260                                 frag_shader += buf;
261                         }
262                 }
263                 frag_shader += "\n";
264
265                 input_needs_mipmaps |= node->effect->needs_mipmaps();
266         }
267         for (unsigned i = 0; i < sorted_effects.size(); ++i) {
268                 Node *node = sorted_effects[i];
269                 if (node->effect->num_inputs() == 0) {
270                         CHECK(node->effect->set_int("needs_mipmaps", input_needs_mipmaps));
271                 }
272         }
273         frag_shader += std::string("#define INPUT ") + sorted_effects.back()->effect_id + "\n";
274         frag_shader.append(read_file("footer.frag"));
275
276         if (movit_debug_level == MOVIT_DEBUG_ON) {
277                 // Output shader to a temporary file, for easier debugging.
278                 static int compiled_shader_num = 0;
279                 char filename[256];
280                 sprintf(filename, "chain-%03d.frag", compiled_shader_num++);
281                 FILE *fp = fopen(filename, "w");
282                 if (fp == NULL) {
283                         perror(filename);
284                         exit(1);
285                 }
286                 fprintf(fp, "%s\n", frag_shader.c_str());
287                 fclose(fp);
288         }
289         
290         GLuint glsl_program_num = glCreateProgram();
291         GLuint vs_obj = compile_shader(read_file("vs.vert"), GL_VERTEX_SHADER);
292         GLuint fs_obj = compile_shader(frag_shader, GL_FRAGMENT_SHADER);
293         glAttachShader(glsl_program_num, vs_obj);
294         check_error();
295         glAttachShader(glsl_program_num, fs_obj);
296         check_error();
297         glLinkProgram(glsl_program_num);
298         check_error();
299
300         Phase *phase = new Phase;
301         phase->glsl_program_num = glsl_program_num;
302         phase->vertex_shader = vs_obj;
303         phase->fragment_shader = fs_obj;
304         phase->input_needs_mipmaps = input_needs_mipmaps;
305         phase->inputs = true_inputs;
306         phase->effects = sorted_effects;
307
308         return phase;
309 }
310
311 // Construct GLSL programs, starting at the given effect and following
312 // the chain from there. We end a program every time we come to an effect
313 // marked as "needs texture bounce", one that is used by multiple other
314 // effects, every time an effect wants to change the output size,
315 // and of course at the end.
316 //
317 // We follow a quite simple depth-first search from the output, although
318 // without any explicit recursion.
319 void EffectChain::construct_glsl_programs(Node *output)
320 {
321         // Which effects have already been completed?
322         // We need to keep track of it, as an effect with multiple outputs
323         // could otherwise be calculated multiple times.
324         std::set<Node *> completed_effects;
325
326         // Effects in the current phase, as well as inputs (outputs from other phases
327         // that we depend on). Note that since we start iterating from the end,
328         // the effect list will be in the reverse order.
329         std::vector<Node *> this_phase_inputs;
330         std::vector<Node *> this_phase_effects;
331
332         // Effects that we have yet to calculate, but that we know should
333         // be in the current phase.
334         std::stack<Node *> effects_todo_this_phase;
335
336         // Effects that we have yet to calculate, but that come from other phases.
337         // We delay these until we have this phase done in its entirety,
338         // at which point we pick any of them and start a new phase from that.
339         std::stack<Node *> effects_todo_other_phases;
340
341         effects_todo_this_phase.push(output);
342
343         for ( ;; ) {  // Termination condition within loop.
344                 if (!effects_todo_this_phase.empty()) {
345                         // OK, we have more to do this phase.
346                         Node *node = effects_todo_this_phase.top();
347                         effects_todo_this_phase.pop();
348
349                         // This should currently only happen for effects that are inputs
350                         // (either true inputs or phase outputs). We special-case inputs,
351                         // and then deduplicate phase outputs in compile_glsl_program().
352                         if (node->effect->num_inputs() == 0) {
353                                 if (find(this_phase_effects.begin(), this_phase_effects.end(), node) != this_phase_effects.end()) {
354                                         continue;
355                                 }
356                         } else {
357                                 assert(completed_effects.count(node) == 0);
358                         }
359
360                         this_phase_effects.push_back(node);
361                         completed_effects.insert(node);
362
363                         // Find all the dependencies of this effect, and add them to the stack.
364                         std::vector<Node *> deps = node->incoming_links;
365                         assert(node->effect->num_inputs() == deps.size());
366                         for (unsigned i = 0; i < deps.size(); ++i) {
367                                 bool start_new_phase = false;
368
369                                 // FIXME: If we sample directly from a texture, we won't need this.
370                                 if (node->effect->needs_texture_bounce()) {
371                                         start_new_phase = true;
372                                 }
373
374                                 if (deps[i]->outgoing_links.size() > 1) {
375                                         if (deps[i]->effect->num_inputs() > 0) {
376                                                 // More than one effect uses this as the input,
377                                                 // and it is not a texture itself.
378                                                 // The easiest thing to do (and probably also the safest
379                                                 // performance-wise in most cases) is to bounce it to a texture
380                                                 // and then let the next passes read from that.
381                                                 start_new_phase = true;
382                                         } else {
383                                                 // For textures, we try to be slightly more clever;
384                                                 // if none of our outputs need a bounce, we don't bounce
385                                                 // but instead simply use the effect many times.
386                                                 //
387                                                 // Strictly speaking, we could bounce it for some outputs
388                                                 // and use it directly for others, but the processing becomes
389                                                 // somewhat simpler if the effect is only used in one such way.
390                                                 for (unsigned j = 0; j < deps[i]->outgoing_links.size(); ++j) {
391                                                         Node *rdep = deps[i]->outgoing_links[j];
392                                                         start_new_phase |= rdep->effect->needs_texture_bounce();
393                                                 }
394                                         }
395                                 }
396
397                                 if (deps[i]->effect->changes_output_size()) {
398                                         start_new_phase = true;
399                                 }
400
401                                 if (start_new_phase) {
402                                         effects_todo_other_phases.push(deps[i]);
403                                         this_phase_inputs.push_back(deps[i]);
404                                 } else {
405                                         effects_todo_this_phase.push(deps[i]);
406                                 }
407                         }
408                         continue;
409                 }
410
411                 // No more effects to do this phase. Take all the ones we have,
412                 // and create a GLSL program for it.
413                 if (!this_phase_effects.empty()) {
414                         reverse(this_phase_effects.begin(), this_phase_effects.end());
415                         phases.push_back(compile_glsl_program(this_phase_inputs, this_phase_effects));
416                         this_phase_effects.back()->phase = phases.back();
417                         this_phase_inputs.clear();
418                         this_phase_effects.clear();
419                 }
420                 assert(this_phase_inputs.empty());
421                 assert(this_phase_effects.empty());
422
423                 // If we have no effects left, exit.
424                 if (effects_todo_other_phases.empty()) {
425                         break;
426                 }
427
428                 Node *node = effects_todo_other_phases.top();
429                 effects_todo_other_phases.pop();
430
431                 if (completed_effects.count(node) == 0) {
432                         // Start a new phase, calculating from this effect.
433                         effects_todo_this_phase.push(node);
434                 }
435         }
436
437         // Finally, since the phases are found from the output but must be executed
438         // from the input(s), reverse them, too.
439         std::reverse(phases.begin(), phases.end());
440 }
441
442 void EffectChain::output_dot(const char *filename)
443 {
444         if (movit_debug_level != MOVIT_DEBUG_ON) {
445                 return;
446         }
447
448         FILE *fp = fopen(filename, "w");
449         if (fp == NULL) {
450                 perror(filename);
451                 exit(1);
452         }
453
454         fprintf(fp, "digraph G {\n");
455         fprintf(fp, "  output [shape=box label=\"(output)\"];\n");
456         for (unsigned i = 0; i < nodes.size(); ++i) {
457                 // Find out which phase this event belongs to.
458                 std::vector<int> in_phases;
459                 for (unsigned j = 0; j < phases.size(); ++j) {
460                         const Phase* p = phases[j];
461                         if (std::find(p->effects.begin(), p->effects.end(), nodes[i]) != p->effects.end()) {
462                                 in_phases.push_back(j);
463                         }
464                 }
465
466                 if (in_phases.empty()) {
467                         fprintf(fp, "  n%ld [label=\"%s\"];\n", (long)nodes[i], nodes[i]->effect->effect_type_id().c_str());
468                 } else if (in_phases.size() == 1) {
469                         fprintf(fp, "  n%ld [label=\"%s\" style=\"filled\" fillcolor=\"/accent8/%d\"];\n",
470                                 (long)nodes[i], nodes[i]->effect->effect_type_id().c_str(),
471                                 (in_phases[0] % 8) + 1);
472                 } else {
473                         // If we had new enough Graphviz, style="wedged" would probably be ideal here.
474                         // But alas.
475                         fprintf(fp, "  n%ld [label=\"%s [in multiple phases]\" style=\"filled\" fillcolor=\"/accent8/%d\"];\n",
476                                 (long)nodes[i], nodes[i]->effect->effect_type_id().c_str(),
477                                 (in_phases[0] % 8) + 1);
478                 }
479
480                 char from_node_id[256];
481                 snprintf(from_node_id, 256, "n%ld", (long)nodes[i]);
482
483                 for (unsigned j = 0; j < nodes[i]->outgoing_links.size(); ++j) {
484                         char to_node_id[256];
485                         snprintf(to_node_id, 256, "n%ld", (long)nodes[i]->outgoing_links[j]);
486
487                         std::vector<std::string> labels = get_labels_for_edge(nodes[i], nodes[i]->outgoing_links[j]);
488                         output_dot_edge(fp, from_node_id, to_node_id, labels);
489                 }
490
491                 if (nodes[i]->outgoing_links.empty() && !nodes[i]->disabled) {
492                         // Output node.
493                         std::vector<std::string> labels = get_labels_for_edge(nodes[i], NULL);
494                         output_dot_edge(fp, from_node_id, "output", labels);
495                 }
496         }
497         fprintf(fp, "}\n");
498
499         fclose(fp);
500 }
501
502 std::vector<std::string> EffectChain::get_labels_for_edge(const Node *from, const Node *to)
503 {
504         std::vector<std::string> labels;
505
506         if (to != NULL && to->effect->needs_texture_bounce()) {
507                 labels.push_back("needs_bounce");
508         }
509         if (from->effect->changes_output_size()) {
510                 labels.push_back("resize");
511         }
512
513         switch (from->output_color_space) {
514         case COLORSPACE_INVALID:
515                 labels.push_back("spc[invalid]");
516                 break;
517         case COLORSPACE_REC_601_525:
518                 labels.push_back("spc[rec601-525]");
519                 break;
520         case COLORSPACE_REC_601_625:
521                 labels.push_back("spc[rec601-625]");
522                 break;
523         default:
524                 break;
525         }
526
527         switch (from->output_gamma_curve) {
528         case GAMMA_INVALID:
529                 labels.push_back("gamma[invalid]");
530                 break;
531         case GAMMA_sRGB:
532                 labels.push_back("gamma[sRGB]");
533                 break;
534         case GAMMA_REC_601:  // and GAMMA_REC_709
535                 labels.push_back("gamma[rec601/709]");
536                 break;
537         default:
538                 break;
539         }
540
541         switch (from->output_alpha_type) {
542         case ALPHA_INVALID:
543                 labels.push_back("alpha[invalid]");
544                 break;
545         case ALPHA_BLANK:
546                 labels.push_back("alpha[blank]");
547                 break;
548         case ALPHA_POSTMULTIPLIED:
549                 labels.push_back("alpha[postmult]");
550                 break;
551         default:
552                 break;
553         }
554
555         return labels;
556 }
557
558 void EffectChain::output_dot_edge(FILE *fp,
559                                   const std::string &from_node_id,
560                                   const std::string &to_node_id,
561                                   const std::vector<std::string> &labels)
562 {
563         if (labels.empty()) {
564                 fprintf(fp, "  %s -> %s;\n", from_node_id.c_str(), to_node_id.c_str());
565         } else {
566                 std::string label = labels[0];
567                 for (unsigned k = 1; k < labels.size(); ++k) {
568                         label += ", " + labels[k];
569                 }
570                 fprintf(fp, "  %s -> %s [label=\"%s\"];\n", from_node_id.c_str(), to_node_id.c_str(), label.c_str());
571         }
572 }
573
574 void EffectChain::size_rectangle_to_fit(unsigned width, unsigned height, unsigned *output_width, unsigned *output_height)
575 {
576         unsigned scaled_width, scaled_height;
577
578         if (float(width) * aspect_denom >= float(height) * aspect_nom) {
579                 // Same aspect, or W/H > aspect (image is wider than the frame).
580                 // In either case, keep width, and adjust height.
581                 scaled_width = width;
582                 scaled_height = lrintf(width * aspect_denom / aspect_nom);
583         } else {
584                 // W/H < aspect (image is taller than the frame), so keep height,
585                 // and adjust width.
586                 scaled_width = lrintf(height * aspect_nom / aspect_denom);
587                 scaled_height = height;
588         }
589
590         // We should be consistently larger or smaller then the existing choice,
591         // since we have the same aspect.
592         assert(!(scaled_width < *output_width && scaled_height > *output_height));
593         assert(!(scaled_height < *output_height && scaled_width > *output_width));
594
595         if (scaled_width >= *output_width && scaled_height >= *output_height) {
596                 *output_width = scaled_width;
597                 *output_height = scaled_height;
598         }
599 }
600
601 // Propagate input texture sizes throughout, and inform effects downstream.
602 // (Like a lot of other code, we depend on effects being in topological order.)
603 void EffectChain::inform_input_sizes(Phase *phase)
604 {
605         // All effects that have a defined size (inputs and RTT inputs)
606         // get that. Reset all others.
607         for (unsigned i = 0; i < phase->effects.size(); ++i) {
608                 Node *node = phase->effects[i];
609                 if (node->effect->num_inputs() == 0) {
610                         Input *input = static_cast<Input *>(node->effect);
611                         node->output_width = input->get_width();
612                         node->output_height = input->get_height();
613                         assert(node->output_width != 0);
614                         assert(node->output_height != 0);
615                 } else {
616                         node->output_width = node->output_height = 0;
617                 }
618         }
619         for (unsigned i = 0; i < phase->inputs.size(); ++i) {
620                 Node *input = phase->inputs[i];
621                 input->output_width = input->phase->virtual_output_width;
622                 input->output_height = input->phase->virtual_output_height;
623                 assert(input->output_width != 0);
624                 assert(input->output_height != 0);
625         }
626
627         // Now propagate from the inputs towards the end, and inform as we go.
628         // The rules are simple:
629         //
630         //   1. Don't touch effects that already have given sizes (ie., inputs).
631         //   2. If all of your inputs have the same size, that will be your output size.
632         //   3. Otherwise, your output size is 0x0.
633         for (unsigned i = 0; i < phase->effects.size(); ++i) {
634                 Node *node = phase->effects[i];
635                 if (node->effect->num_inputs() == 0) {
636                         continue;
637                 }
638                 unsigned this_output_width = 0;
639                 unsigned this_output_height = 0;
640                 for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
641                         Node *input = node->incoming_links[j];
642                         node->effect->inform_input_size(j, input->output_width, input->output_height);
643                         if (j == 0) {
644                                 this_output_width = input->output_width;
645                                 this_output_height = input->output_height;
646                         } else if (input->output_width != this_output_width || input->output_height != this_output_height) {
647                                 // Inputs disagree.
648                                 this_output_width = 0;
649                                 this_output_height = 0;
650                         }
651                 }
652                 node->output_width = this_output_width;
653                 node->output_height = this_output_height;
654         }
655 }
656
657 // Note: You should call inform_input_sizes() before this, as the last effect's
658 // desired output size might change based on the inputs.
659 void EffectChain::find_output_size(Phase *phase)
660 {
661         Node *output_node = phase->effects.back();
662
663         // If the last effect explicitly sets an output size, use that.
664         if (output_node->effect->changes_output_size()) {
665                 output_node->effect->get_output_size(&phase->output_width, &phase->output_height,
666                                                      &phase->virtual_output_width, &phase->virtual_output_height);
667                 return;
668         }
669
670         // If all effects have the same size, use that.
671         unsigned output_width = 0, output_height = 0;
672         bool all_inputs_same_size = true;
673
674         for (unsigned i = 0; i < phase->inputs.size(); ++i) {
675                 Node *input = phase->inputs[i];
676                 assert(input->phase->output_width != 0);
677                 assert(input->phase->output_height != 0);
678                 if (output_width == 0 && output_height == 0) {
679                         output_width = input->phase->virtual_output_width;
680                         output_height = input->phase->virtual_output_height;
681                 } else if (output_width != input->phase->virtual_output_width ||
682                            output_height != input->phase->virtual_output_height) {
683                         all_inputs_same_size = false;
684                 }
685         }
686         for (unsigned i = 0; i < phase->effects.size(); ++i) {
687                 Effect *effect = phase->effects[i]->effect;
688                 if (effect->num_inputs() != 0) {
689                         continue;
690                 }
691
692                 Input *input = static_cast<Input *>(effect);
693                 if (output_width == 0 && output_height == 0) {
694                         output_width = input->get_width();
695                         output_height = input->get_height();
696                 } else if (output_width != input->get_width() ||
697                            output_height != input->get_height()) {
698                         all_inputs_same_size = false;
699                 }
700         }
701
702         if (all_inputs_same_size) {
703                 assert(output_width != 0);
704                 assert(output_height != 0);
705                 phase->virtual_output_width = phase->output_width = output_width;
706                 phase->virtual_output_height = phase->output_height = output_height;
707                 return;
708         }
709
710         // If not, fit all the inputs into the current aspect, and select the largest one. 
711         output_width = 0;
712         output_height = 0;
713         for (unsigned i = 0; i < phase->inputs.size(); ++i) {
714                 Node *input = phase->inputs[i];
715                 assert(input->phase->output_width != 0);
716                 assert(input->phase->output_height != 0);
717                 size_rectangle_to_fit(input->phase->output_width, input->phase->output_height, &output_width, &output_height);
718         }
719         for (unsigned i = 0; i < phase->effects.size(); ++i) {
720                 Effect *effect = phase->effects[i]->effect;
721                 if (effect->num_inputs() != 0) {
722                         continue;
723                 }
724
725                 Input *input = static_cast<Input *>(effect);
726                 size_rectangle_to_fit(input->get_width(), input->get_height(), &output_width, &output_height);
727         }
728         assert(output_width != 0);
729         assert(output_height != 0);
730         phase->virtual_output_width = phase->output_width = output_width;
731         phase->virtual_output_height = phase->output_height = output_height;
732 }
733
734 void EffectChain::sort_all_nodes_topologically()
735 {
736         nodes = topological_sort(nodes);
737 }
738
739 std::vector<Node *> EffectChain::topological_sort(const std::vector<Node *> &nodes)
740 {
741         std::set<Node *> nodes_left_to_visit(nodes.begin(), nodes.end());
742         std::vector<Node *> sorted_list;
743         for (unsigned i = 0; i < nodes.size(); ++i) {
744                 topological_sort_visit_node(nodes[i], &nodes_left_to_visit, &sorted_list);
745         }
746         reverse(sorted_list.begin(), sorted_list.end());
747         return sorted_list;
748 }
749
750 void EffectChain::topological_sort_visit_node(Node *node, std::set<Node *> *nodes_left_to_visit, std::vector<Node *> *sorted_list)
751 {
752         if (nodes_left_to_visit->count(node) == 0) {
753                 return;
754         }
755         nodes_left_to_visit->erase(node);
756         for (unsigned i = 0; i < node->outgoing_links.size(); ++i) {
757                 topological_sort_visit_node(node->outgoing_links[i], nodes_left_to_visit, sorted_list);
758         }
759         sorted_list->push_back(node);
760 }
761
762 void EffectChain::find_color_spaces_for_inputs()
763 {
764         for (unsigned i = 0; i < nodes.size(); ++i) {
765                 Node *node = nodes[i];
766                 if (node->disabled) {
767                         continue;
768                 }
769                 if (node->incoming_links.size() == 0) {
770                         Input *input = static_cast<Input *>(node->effect);
771                         node->output_color_space = input->get_color_space();
772                         node->output_gamma_curve = input->get_gamma_curve();
773
774                         Effect::AlphaHandling alpha_handling = input->alpha_handling();
775                         switch (alpha_handling) {
776                         case Effect::OUTPUT_BLANK_ALPHA:
777                                 node->output_alpha_type = ALPHA_BLANK;
778                                 break;
779                         case Effect::INPUT_AND_OUTPUT_PREMULTIPLIED_ALPHA:
780                                 node->output_alpha_type = ALPHA_PREMULTIPLIED;
781                                 break;
782                         case Effect::OUTPUT_POSTMULTIPLIED_ALPHA:
783                                 node->output_alpha_type = ALPHA_POSTMULTIPLIED;
784                                 break;
785                         case Effect::INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK:
786                         case Effect::DONT_CARE_ALPHA_TYPE:
787                         default:
788                                 assert(false);
789                         }
790
791                         if (node->output_alpha_type == ALPHA_PREMULTIPLIED) {
792                                 assert(node->output_gamma_curve == GAMMA_LINEAR);
793                         }
794                 }
795         }
796 }
797
798 // Propagate gamma and color space information as far as we can in the graph.
799 // The rules are simple: Anything where all the inputs agree, get that as
800 // output as well. Anything else keeps having *_INVALID.
801 void EffectChain::propagate_gamma_and_color_space()
802 {
803         // We depend on going through the nodes in order.
804         sort_all_nodes_topologically();
805
806         for (unsigned i = 0; i < nodes.size(); ++i) {
807                 Node *node = nodes[i];
808                 if (node->disabled) {
809                         continue;
810                 }
811                 assert(node->incoming_links.size() == node->effect->num_inputs());
812                 if (node->incoming_links.size() == 0) {
813                         assert(node->output_color_space != COLORSPACE_INVALID);
814                         assert(node->output_gamma_curve != GAMMA_INVALID);
815                         continue;
816                 }
817
818                 Colorspace color_space = node->incoming_links[0]->output_color_space;
819                 GammaCurve gamma_curve = node->incoming_links[0]->output_gamma_curve;
820                 for (unsigned j = 1; j < node->incoming_links.size(); ++j) {
821                         if (node->incoming_links[j]->output_color_space != color_space) {
822                                 color_space = COLORSPACE_INVALID;
823                         }
824                         if (node->incoming_links[j]->output_gamma_curve != gamma_curve) {
825                                 gamma_curve = GAMMA_INVALID;
826                         }
827                 }
828
829                 // The conversion effects already have their outputs set correctly,
830                 // so leave them alone.
831                 if (node->effect->effect_type_id() != "ColorspaceConversionEffect") {
832                         node->output_color_space = color_space;
833                 }               
834                 if (node->effect->effect_type_id() != "GammaCompressionEffect" &&
835                     node->effect->effect_type_id() != "GammaExpansionEffect") {
836                         node->output_gamma_curve = gamma_curve;
837                 }               
838         }
839 }
840
841 // Propagate alpha information as far as we can in the graph.
842 // Similar to propagate_gamma_and_color_space().
843 void EffectChain::propagate_alpha()
844 {
845         // We depend on going through the nodes in order.
846         sort_all_nodes_topologically();
847
848         for (unsigned i = 0; i < nodes.size(); ++i) {
849                 Node *node = nodes[i];
850                 if (node->disabled) {
851                         continue;
852                 }
853                 assert(node->incoming_links.size() == node->effect->num_inputs());
854                 if (node->incoming_links.size() == 0) {
855                         assert(node->output_alpha_type != ALPHA_INVALID);
856                         continue;
857                 }
858
859                 // The alpha multiplication/division effects are special cases.
860                 if (node->effect->effect_type_id() == "AlphaMultiplicationEffect") {
861                         assert(node->incoming_links.size() == 1);
862                         assert(node->incoming_links[0]->output_alpha_type == ALPHA_POSTMULTIPLIED);
863                         node->output_alpha_type = ALPHA_PREMULTIPLIED;
864                         continue;
865                 }
866                 if (node->effect->effect_type_id() == "AlphaDivisionEffect") {
867                         assert(node->incoming_links.size() == 1);
868                         assert(node->incoming_links[0]->output_alpha_type == ALPHA_PREMULTIPLIED);
869                         node->output_alpha_type = ALPHA_POSTMULTIPLIED;
870                         continue;
871                 }
872
873                 // GammaCompressionEffect and GammaExpansionEffect are also a special case,
874                 // because they are the only one that _need_ postmultiplied alpha.
875                 if (node->effect->effect_type_id() == "GammaCompressionEffect" ||
876                     node->effect->effect_type_id() == "GammaExpansionEffect") {
877                         assert(node->incoming_links.size() == 1);
878                         if (node->incoming_links[0]->output_alpha_type == ALPHA_BLANK) {
879                                 node->output_alpha_type = ALPHA_BLANK;
880                         } else if (node->incoming_links[0]->output_alpha_type == ALPHA_POSTMULTIPLIED) {
881                                 node->output_alpha_type = ALPHA_POSTMULTIPLIED;
882                         } else {
883                                 node->output_alpha_type = ALPHA_INVALID;
884                         }
885                         continue;
886                 }
887
888                 // Only inputs can have unconditional alpha output (OUTPUT_BLANK_ALPHA
889                 // or OUTPUT_POSTMULTIPLIED_ALPHA), and they have already been
890                 // taken care of above. Rationale: Even if you could imagine
891                 // e.g. an effect that took in an image and set alpha=1.0
892                 // unconditionally, it wouldn't make any sense to have it as
893                 // e.g. OUTPUT_BLANK_ALPHA, since it wouldn't know whether it
894                 // got its input pre- or postmultiplied, so it wouldn't know
895                 // whether to divide away the old alpha or not.
896                 Effect::AlphaHandling alpha_handling = node->effect->alpha_handling();
897                 assert(alpha_handling == Effect::INPUT_AND_OUTPUT_PREMULTIPLIED_ALPHA ||
898                        alpha_handling == Effect::INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK ||
899                        alpha_handling == Effect::DONT_CARE_ALPHA_TYPE);
900
901                 // If the node has multiple inputs, check that they are all valid and
902                 // the same.
903                 bool any_invalid = false;
904                 bool any_premultiplied = false;
905                 bool any_postmultiplied = false;
906
907                 for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
908                         switch (node->incoming_links[j]->output_alpha_type) {
909                         case ALPHA_INVALID:
910                                 any_invalid = true;
911                                 break;
912                         case ALPHA_BLANK:
913                                 // Blank is good as both pre- and postmultiplied alpha,
914                                 // so just ignore it.
915                                 break;
916                         case ALPHA_PREMULTIPLIED:
917                                 any_premultiplied = true;
918                                 break;
919                         case ALPHA_POSTMULTIPLIED:
920                                 any_postmultiplied = true;
921                                 break;
922                         default:
923                                 assert(false);
924                         }
925                 }
926
927                 if (any_invalid) {
928                         node->output_alpha_type = ALPHA_INVALID;
929                         continue;
930                 }
931
932                 // Inputs must be of the same type.
933                 if (any_premultiplied && any_postmultiplied) {
934                         node->output_alpha_type = ALPHA_INVALID;
935                         continue;
936                 }
937
938                 if (alpha_handling == Effect::INPUT_AND_OUTPUT_PREMULTIPLIED_ALPHA ||
939                     alpha_handling == Effect::INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK) {
940                         // If the effect has asked for premultiplied alpha, check that it has got it.
941                         if (any_postmultiplied) {
942                                 node->output_alpha_type = ALPHA_INVALID;
943                         } else if (!any_premultiplied &&
944                                    alpha_handling == Effect::INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK) {
945                                 // Blank input alpha, and the effect preserves blank alpha.
946                                 node->output_alpha_type = ALPHA_BLANK;
947                         } else {
948                                 node->output_alpha_type = ALPHA_PREMULTIPLIED;
949                         }
950                 } else {
951                         // OK, all inputs are the same, and this effect is not going
952                         // to change it.
953                         assert(alpha_handling == Effect::DONT_CARE_ALPHA_TYPE);
954                         if (any_premultiplied) {
955                                 node->output_alpha_type = ALPHA_PREMULTIPLIED;
956                         } else if (any_postmultiplied) {
957                                 node->output_alpha_type = ALPHA_POSTMULTIPLIED;
958                         } else {
959                                 node->output_alpha_type = ALPHA_BLANK;
960                         }
961                 }
962         }
963 }
964
965 bool EffectChain::node_needs_colorspace_fix(Node *node)
966 {
967         if (node->disabled) {
968                 return false;
969         }
970         if (node->effect->num_inputs() == 0) {
971                 return false;
972         }
973
974         // propagate_gamma_and_color_space() has already set our output
975         // to COLORSPACE_INVALID if the inputs differ, so we can rely on that.
976         if (node->output_color_space == COLORSPACE_INVALID) {
977                 return true;
978         }
979         return (node->effect->needs_srgb_primaries() && node->output_color_space != COLORSPACE_sRGB);
980 }
981
982 // Fix up color spaces so that there are no COLORSPACE_INVALID nodes left in
983 // the graph. Our strategy is not always optimal, but quite simple:
984 // Find an effect that's as early as possible where the inputs are of
985 // unacceptable colorspaces (that is, either different, or, if the effect only
986 // wants sRGB, not sRGB.) Add appropriate conversions on all its inputs,
987 // propagate the information anew, and repeat until there are no more such
988 // effects.
989 void EffectChain::fix_internal_color_spaces()
990 {
991         unsigned colorspace_propagation_pass = 0;
992         bool found_any;
993         do {
994                 found_any = false;
995                 for (unsigned i = 0; i < nodes.size(); ++i) {
996                         Node *node = nodes[i];
997                         if (!node_needs_colorspace_fix(node)) {
998                                 continue;
999                         }
1000
1001                         // Go through each input that is not sRGB, and insert
1002                         // a colorspace conversion after it.
1003                         for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
1004                                 Node *input = node->incoming_links[j];
1005                                 assert(input->output_color_space != COLORSPACE_INVALID);
1006                                 if (input->output_color_space == COLORSPACE_sRGB) {
1007                                         continue;
1008                                 }
1009                                 Node *conversion = add_node(new ColorspaceConversionEffect());
1010                                 CHECK(conversion->effect->set_int("source_space", input->output_color_space));
1011                                 CHECK(conversion->effect->set_int("destination_space", COLORSPACE_sRGB));
1012                                 conversion->output_color_space = COLORSPACE_sRGB;
1013                                 replace_sender(input, conversion);
1014                                 connect_nodes(input, conversion);
1015                         }
1016
1017                         // Re-sort topologically, and propagate the new information.
1018                         propagate_gamma_and_color_space();
1019                         
1020                         found_any = true;
1021                         break;
1022                 }
1023         
1024                 char filename[256];
1025                 sprintf(filename, "step5-colorspacefix-iter%u.dot", ++colorspace_propagation_pass);
1026                 output_dot(filename);
1027                 assert(colorspace_propagation_pass < 100);
1028         } while (found_any);
1029
1030         for (unsigned i = 0; i < nodes.size(); ++i) {
1031                 Node *node = nodes[i];
1032                 if (node->disabled) {
1033                         continue;
1034                 }
1035                 assert(node->output_color_space != COLORSPACE_INVALID);
1036         }
1037 }
1038
1039 bool EffectChain::node_needs_alpha_fix(Node *node)
1040 {
1041         if (node->disabled) {
1042                 return false;
1043         }
1044
1045         // propagate_alpha() has already set our output to ALPHA_INVALID if the
1046         // inputs differ or we are otherwise in mismatch, so we can rely on that.
1047         return (node->output_alpha_type == ALPHA_INVALID);
1048 }
1049
1050 // Fix up alpha so that there are no ALPHA_INVALID nodes left in
1051 // the graph. Similar to fix_internal_color_spaces().
1052 void EffectChain::fix_internal_alpha(unsigned step)
1053 {
1054         unsigned alpha_propagation_pass = 0;
1055         bool found_any;
1056         do {
1057                 found_any = false;
1058                 for (unsigned i = 0; i < nodes.size(); ++i) {
1059                         Node *node = nodes[i];
1060                         if (!node_needs_alpha_fix(node)) {
1061                                 continue;
1062                         }
1063
1064                         // If we need to fix up GammaExpansionEffect, then clearly something
1065                         // is wrong, since the combination of premultiplied alpha and nonlinear inputs
1066                         // is meaningless.
1067                         assert(node->effect->effect_type_id() != "GammaExpansionEffect");
1068
1069                         AlphaType desired_type = ALPHA_PREMULTIPLIED;
1070
1071                         // GammaCompressionEffect is special; it needs postmultiplied alpha.
1072                         if (node->effect->effect_type_id() == "GammaCompressionEffect") {
1073                                 assert(node->incoming_links.size() == 1);
1074                                 assert(node->incoming_links[0]->output_alpha_type == ALPHA_PREMULTIPLIED);
1075                                 desired_type = ALPHA_POSTMULTIPLIED;
1076                         }
1077
1078                         // Go through each input that is not premultiplied alpha, and insert
1079                         // a conversion before it.
1080                         for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
1081                                 Node *input = node->incoming_links[j];
1082                                 assert(input->output_alpha_type != ALPHA_INVALID);
1083                                 if (input->output_alpha_type == desired_type ||
1084                                     input->output_alpha_type == ALPHA_BLANK) {
1085                                         continue;
1086                                 }
1087                                 Node *conversion;
1088                                 if (desired_type == ALPHA_PREMULTIPLIED) {
1089                                         conversion = add_node(new AlphaMultiplicationEffect());
1090                                 } else {
1091                                         conversion = add_node(new AlphaDivisionEffect());
1092                                 }
1093                                 conversion->output_alpha_type = desired_type;
1094                                 replace_sender(input, conversion);
1095                                 connect_nodes(input, conversion);
1096                         }
1097
1098                         // Re-sort topologically, and propagate the new information.
1099                         propagate_gamma_and_color_space();
1100                         propagate_alpha();
1101                         
1102                         found_any = true;
1103                         break;
1104                 }
1105         
1106                 char filename[256];
1107                 sprintf(filename, "step%u-alphafix-iter%u.dot", step, ++alpha_propagation_pass);
1108                 output_dot(filename);
1109                 assert(alpha_propagation_pass < 100);
1110         } while (found_any);
1111
1112         for (unsigned i = 0; i < nodes.size(); ++i) {
1113                 Node *node = nodes[i];
1114                 if (node->disabled) {
1115                         continue;
1116                 }
1117                 assert(node->output_alpha_type != ALPHA_INVALID);
1118         }
1119 }
1120
1121 // Make so that the output is in the desired color space.
1122 void EffectChain::fix_output_color_space()
1123 {
1124         Node *output = find_output_node();
1125         if (output->output_color_space != output_format.color_space) {
1126                 Node *conversion = add_node(new ColorspaceConversionEffect());
1127                 CHECK(conversion->effect->set_int("source_space", output->output_color_space));
1128                 CHECK(conversion->effect->set_int("destination_space", output_format.color_space));
1129                 conversion->output_color_space = output_format.color_space;
1130                 connect_nodes(output, conversion);
1131                 propagate_alpha();
1132                 propagate_gamma_and_color_space();
1133         }
1134 }
1135
1136 // Make so that the output is in the desired pre-/postmultiplication alpha state.
1137 void EffectChain::fix_output_alpha()
1138 {
1139         Node *output = find_output_node();
1140         assert(output->output_alpha_type != ALPHA_INVALID);
1141         if (output->output_alpha_type == ALPHA_BLANK) {
1142                 // No alpha output, so we don't care.
1143                 return;
1144         }
1145         if (output->output_alpha_type == ALPHA_PREMULTIPLIED &&
1146             output_alpha_format == OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED) {
1147                 Node *conversion = add_node(new AlphaDivisionEffect());
1148                 connect_nodes(output, conversion);
1149                 propagate_alpha();
1150                 propagate_gamma_and_color_space();
1151         }
1152         if (output->output_alpha_type == ALPHA_POSTMULTIPLIED &&
1153             output_alpha_format == OUTPUT_ALPHA_FORMAT_PREMULTIPLIED) {
1154                 Node *conversion = add_node(new AlphaMultiplicationEffect());
1155                 connect_nodes(output, conversion);
1156                 propagate_alpha();
1157                 propagate_gamma_and_color_space();
1158         }
1159 }
1160
1161 bool EffectChain::node_needs_gamma_fix(Node *node)
1162 {
1163         if (node->disabled) {
1164                 return false;
1165         }
1166
1167         // Small hack since the output is not an explicit node:
1168         // If we are the last node and our output is in the wrong
1169         // space compared to EffectChain's output, we need to fix it.
1170         // This will only take us to linear, but fix_output_gamma()
1171         // will come and take us to the desired output gamma
1172         // if it is needed.
1173         //
1174         // This needs to be before everything else, since it could
1175         // even apply to inputs (if they are the only effect).
1176         if (node->outgoing_links.empty() &&
1177             node->output_gamma_curve != output_format.gamma_curve &&
1178             node->output_gamma_curve != GAMMA_LINEAR) {
1179                 return true;
1180         }
1181
1182         if (node->effect->num_inputs() == 0) {
1183                 return false;
1184         }
1185
1186         // propagate_gamma_and_color_space() has already set our output
1187         // to GAMMA_INVALID if the inputs differ, so we can rely on that,
1188         // except for GammaCompressionEffect.
1189         if (node->output_gamma_curve == GAMMA_INVALID) {
1190                 return true;
1191         }
1192         if (node->effect->effect_type_id() == "GammaCompressionEffect") {
1193                 assert(node->incoming_links.size() == 1);
1194                 return node->incoming_links[0]->output_gamma_curve != GAMMA_LINEAR;
1195         }
1196
1197         return (node->effect->needs_linear_light() && node->output_gamma_curve != GAMMA_LINEAR);
1198 }
1199
1200 // Very similar to fix_internal_color_spaces(), but for gamma.
1201 // There is one difference, though; before we start adding conversion nodes,
1202 // we see if we can get anything out of asking the sources to deliver
1203 // linear gamma directly. fix_internal_gamma_by_asking_inputs()
1204 // does that part, while fix_internal_gamma_by_inserting_nodes()
1205 // inserts nodes as needed afterwards.
1206 void EffectChain::fix_internal_gamma_by_asking_inputs(unsigned step)
1207 {
1208         unsigned gamma_propagation_pass = 0;
1209         bool found_any;
1210         do {
1211                 found_any = false;
1212                 for (unsigned i = 0; i < nodes.size(); ++i) {
1213                         Node *node = nodes[i];
1214                         if (!node_needs_gamma_fix(node)) {
1215                                 continue;
1216                         }
1217
1218                         // See if all inputs can give us linear gamma. If not, leave it.
1219                         std::vector<Node *> nonlinear_inputs;
1220                         find_all_nonlinear_inputs(node, &nonlinear_inputs);
1221                         assert(!nonlinear_inputs.empty());
1222
1223                         bool all_ok = true;
1224                         for (unsigned i = 0; i < nonlinear_inputs.size(); ++i) {
1225                                 Input *input = static_cast<Input *>(nonlinear_inputs[i]->effect);
1226                                 all_ok &= input->can_output_linear_gamma();
1227                         }
1228
1229                         if (!all_ok) {
1230                                 continue;
1231                         }
1232
1233                         for (unsigned i = 0; i < nonlinear_inputs.size(); ++i) {
1234                                 CHECK(nonlinear_inputs[i]->effect->set_int("output_linear_gamma", 1));
1235                                 nonlinear_inputs[i]->output_gamma_curve = GAMMA_LINEAR;
1236                         }
1237
1238                         // Re-sort topologically, and propagate the new information.
1239                         propagate_gamma_and_color_space();
1240                         
1241                         found_any = true;
1242                         break;
1243                 }
1244         
1245                 char filename[256];
1246                 sprintf(filename, "step%u-gammafix-iter%u.dot", step, ++gamma_propagation_pass);
1247                 output_dot(filename);
1248                 assert(gamma_propagation_pass < 100);
1249         } while (found_any);
1250 }
1251
1252 void EffectChain::fix_internal_gamma_by_inserting_nodes(unsigned step)
1253 {
1254         unsigned gamma_propagation_pass = 0;
1255         bool found_any;
1256         do {
1257                 found_any = false;
1258                 for (unsigned i = 0; i < nodes.size(); ++i) {
1259                         Node *node = nodes[i];
1260                         if (!node_needs_gamma_fix(node)) {
1261                                 continue;
1262                         }
1263
1264                         // Special case: We could be an input and still be asked to
1265                         // fix our gamma; if so, we should be the only node
1266                         // (as node_needs_gamma_fix() would only return true in
1267                         // for an input in that case). That means we should insert
1268                         // a conversion node _after_ ourselves.
1269                         if (node->incoming_links.empty()) {
1270                                 assert(node->outgoing_links.empty());
1271                                 Node *conversion = add_node(new GammaExpansionEffect());
1272                                 CHECK(conversion->effect->set_int("source_curve", node->output_gamma_curve));
1273                                 conversion->output_gamma_curve = GAMMA_LINEAR;
1274                                 connect_nodes(node, conversion);
1275                         }
1276
1277                         // If not, go through each input that is not linear gamma,
1278                         // and insert a gamma conversion after it.
1279                         for (unsigned j = 0; j < node->incoming_links.size(); ++j) {
1280                                 Node *input = node->incoming_links[j];
1281                                 assert(input->output_gamma_curve != GAMMA_INVALID);
1282                                 if (input->output_gamma_curve == GAMMA_LINEAR) {
1283                                         continue;
1284                                 }
1285                                 Node *conversion = add_node(new GammaExpansionEffect());
1286                                 CHECK(conversion->effect->set_int("source_curve", input->output_gamma_curve));
1287                                 conversion->output_gamma_curve = GAMMA_LINEAR;
1288                                 replace_sender(input, conversion);
1289                                 connect_nodes(input, conversion);
1290                         }
1291
1292                         // Re-sort topologically, and propagate the new information.
1293                         propagate_alpha();
1294                         propagate_gamma_and_color_space();
1295                         
1296                         found_any = true;
1297                         break;
1298                 }
1299         
1300                 char filename[256];
1301                 sprintf(filename, "step%u-gammafix-iter%u.dot", step, ++gamma_propagation_pass);
1302                 output_dot(filename);
1303                 assert(gamma_propagation_pass < 100);
1304         } while (found_any);
1305
1306         for (unsigned i = 0; i < nodes.size(); ++i) {
1307                 Node *node = nodes[i];
1308                 if (node->disabled) {
1309                         continue;
1310                 }
1311                 assert(node->output_gamma_curve != GAMMA_INVALID);
1312         }
1313 }
1314
1315 // Make so that the output is in the desired gamma.
1316 // Note that this assumes linear input gamma, so it might create the need
1317 // for another pass of fix_internal_gamma().
1318 void EffectChain::fix_output_gamma()
1319 {
1320         Node *output = find_output_node();
1321         if (output->output_gamma_curve != output_format.gamma_curve) {
1322                 Node *conversion = add_node(new GammaCompressionEffect());
1323                 CHECK(conversion->effect->set_int("destination_curve", output_format.gamma_curve));
1324                 conversion->output_gamma_curve = output_format.gamma_curve;
1325                 connect_nodes(output, conversion);
1326         }
1327 }
1328         
1329 // If the user has requested dither, add a DitherEffect right at the end
1330 // (after GammaCompressionEffect etc.). This needs to be done after everything else,
1331 // since dither is about the only effect that can _not_ be done in linear space.
1332 void EffectChain::add_dither_if_needed()
1333 {
1334         if (num_dither_bits == 0) {
1335                 return;
1336         }
1337         Node *output = find_output_node();
1338         Node *dither = add_node(new DitherEffect());
1339         CHECK(dither->effect->set_int("num_bits", num_dither_bits));
1340         connect_nodes(output, dither);
1341
1342         dither_effect = dither->effect;
1343 }
1344
1345 // Find the output node. This is, simply, one that has no outgoing links.
1346 // If there are multiple ones, the graph is malformed (we do not support
1347 // multiple outputs right now).
1348 Node *EffectChain::find_output_node()
1349 {
1350         std::vector<Node *> output_nodes;
1351         for (unsigned i = 0; i < nodes.size(); ++i) {
1352                 Node *node = nodes[i];
1353                 if (node->disabled) {
1354                         continue;
1355                 }
1356                 if (node->outgoing_links.empty()) {
1357                         output_nodes.push_back(node);
1358                 }
1359         }
1360         assert(output_nodes.size() == 1);
1361         return output_nodes[0];
1362 }
1363
1364 void EffectChain::finalize()
1365 {
1366         // Save the current locale, and set it to C, so that we can output decimal
1367         // numbers with printf and be sure to get them in the format mandated by GLSL.
1368         char *saved_locale = setlocale(LC_NUMERIC, "C");
1369
1370         // Output the graph as it is before we do any conversions on it.
1371         output_dot("step0-start.dot");
1372
1373         // Give each effect in turn a chance to rewrite its own part of the graph.
1374         // Note that if more effects are added as part of this, they will be
1375         // picked up as part of the same for loop, since they are added at the end.
1376         for (unsigned i = 0; i < nodes.size(); ++i) {
1377                 nodes[i]->effect->rewrite_graph(this, nodes[i]);
1378         }
1379         output_dot("step1-rewritten.dot");
1380
1381         find_color_spaces_for_inputs();
1382         output_dot("step2-input-colorspace.dot");
1383
1384         propagate_alpha();
1385         output_dot("step3-propagated-alpha.dot");
1386
1387         propagate_gamma_and_color_space();
1388         output_dot("step4-propagated-all.dot");
1389
1390         fix_internal_color_spaces();
1391         fix_internal_alpha(6);
1392         fix_output_color_space();
1393         output_dot("step7-output-colorspacefix.dot");
1394         fix_output_alpha();
1395         output_dot("step8-output-alphafix.dot");
1396
1397         // Note that we need to fix gamma after colorspace conversion,
1398         // because colorspace conversions might create needs for gamma conversions.
1399         // Also, we need to run an extra pass of fix_internal_gamma() after 
1400         // fixing the output gamma, as we only have conversions to/from linear,
1401         // and fix_internal_alpha() since GammaCompressionEffect needs
1402         // postmultiplied input.
1403         fix_internal_gamma_by_asking_inputs(9);
1404         fix_internal_gamma_by_inserting_nodes(10);
1405         fix_output_gamma();
1406         output_dot("step11-output-gammafix.dot");
1407         propagate_alpha();
1408         output_dot("step12-output-alpha-propagated.dot");
1409         fix_internal_alpha(13);
1410         output_dot("step14-output-alpha-fixed.dot");
1411         fix_internal_gamma_by_asking_inputs(15);
1412         fix_internal_gamma_by_inserting_nodes(16);
1413
1414         output_dot("step17-before-dither.dot");
1415
1416         add_dither_if_needed();
1417
1418         output_dot("step18-final.dot");
1419         
1420         // Construct all needed GLSL programs, starting at the output.
1421         construct_glsl_programs(find_output_node());
1422
1423         output_dot("step19-split-to-phases.dot");
1424
1425         // If we have more than one phase, we need intermediate render-to-texture.
1426         // Construct an FBO, and then as many textures as we need.
1427         // We choose the simplest option of having one texture per output,
1428         // since otherwise this turns into an (albeit simple)
1429         // register allocation problem.
1430         if (phases.size() > 1) {
1431                 glGenFramebuffers(1, &fbo);
1432
1433                 for (unsigned i = 0; i < phases.size() - 1; ++i) {
1434                         inform_input_sizes(phases[i]);
1435                         find_output_size(phases[i]);
1436
1437                         Node *output_node = phases[i]->effects.back();
1438                         glGenTextures(1, &output_node->output_texture);
1439                         check_error();
1440                         glBindTexture(GL_TEXTURE_2D, output_node->output_texture);
1441                         check_error();
1442                         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
1443                         check_error();
1444                         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
1445                         check_error();
1446                         glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F_ARB, phases[i]->output_width, phases[i]->output_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
1447                         check_error();
1448
1449                         output_node->output_texture_width = phases[i]->output_width;
1450                         output_node->output_texture_height = phases[i]->output_height;
1451                 }
1452                 inform_input_sizes(phases.back());
1453         }
1454                 
1455         for (unsigned i = 0; i < inputs.size(); ++i) {
1456                 inputs[i]->finalize();
1457         }
1458
1459         assert(phases[0]->inputs.empty());
1460         
1461         finalized = true;
1462         setlocale(LC_NUMERIC, saved_locale);
1463 }
1464
1465 void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height)
1466 {
1467         assert(finalized);
1468
1469         // Save original viewport.
1470         GLuint x = 0, y = 0;
1471
1472         if (width == 0 && height == 0) {
1473                 GLint viewport[4];
1474                 glGetIntegerv(GL_VIEWPORT, viewport);
1475                 x = viewport[0];
1476                 y = viewport[1];
1477                 width = viewport[2];
1478                 height = viewport[3];
1479         }
1480
1481         // Basic state.
1482         glDisable(GL_BLEND);
1483         check_error();
1484         glDisable(GL_DEPTH_TEST);
1485         check_error();
1486         glDepthMask(GL_FALSE);
1487         check_error();
1488
1489         glMatrixMode(GL_PROJECTION);
1490         glLoadIdentity();
1491         glOrtho(0.0, 1.0, 0.0, 1.0, 0.0, 1.0);
1492
1493         glMatrixMode(GL_MODELVIEW);
1494         glLoadIdentity();
1495
1496         if (phases.size() > 1) {
1497                 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
1498                 check_error();
1499         }
1500
1501         std::set<Node *> generated_mipmaps;
1502
1503         for (unsigned phase = 0; phase < phases.size(); ++phase) {
1504                 // See if the requested output size has changed. If so, we need to recreate
1505                 // the texture (and before we start setting up inputs).
1506                 inform_input_sizes(phases[phase]);
1507                 if (phase != phases.size() - 1) {
1508                         find_output_size(phases[phase]);
1509
1510                         Node *output_node = phases[phase]->effects.back();
1511
1512                         if (output_node->output_texture_width != phases[phase]->output_width ||
1513                             output_node->output_texture_height != phases[phase]->output_height) {
1514                                 glActiveTexture(GL_TEXTURE0);
1515                                 check_error();
1516                                 glBindTexture(GL_TEXTURE_2D, output_node->output_texture);
1517                                 check_error();
1518                                 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F_ARB, phases[phase]->output_width, phases[phase]->output_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
1519                                 check_error();
1520                                 glBindTexture(GL_TEXTURE_2D, 0);
1521                                 check_error();
1522
1523                                 output_node->output_texture_width = phases[phase]->output_width;
1524                                 output_node->output_texture_height = phases[phase]->output_height;
1525                         }
1526                 }
1527
1528                 glUseProgram(phases[phase]->glsl_program_num);
1529                 check_error();
1530
1531                 // Set up RTT inputs for this phase.
1532                 for (unsigned sampler = 0; sampler < phases[phase]->inputs.size(); ++sampler) {
1533                         glActiveTexture(GL_TEXTURE0 + sampler);
1534                         Node *input = phases[phase]->inputs[sampler];
1535                         glBindTexture(GL_TEXTURE_2D, input->output_texture);
1536                         check_error();
1537                         if (phases[phase]->input_needs_mipmaps) {
1538                                 if (generated_mipmaps.count(input) == 0) {
1539                                         glGenerateMipmap(GL_TEXTURE_2D);
1540                                         check_error();
1541                                         generated_mipmaps.insert(input);
1542                                 }
1543                                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
1544                                 check_error();
1545                         } else {
1546                                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1547                                 check_error();
1548                         }
1549
1550                         std::string texture_name = std::string("tex_") + input->effect_id;
1551                         glUniform1i(glGetUniformLocation(phases[phase]->glsl_program_num, texture_name.c_str()), sampler);
1552                         check_error();
1553                 }
1554
1555                 // And now the output.
1556                 if (phase == phases.size() - 1) {
1557                         // Last phase goes to the output the user specified.
1558                         glBindFramebuffer(GL_FRAMEBUFFER, dest_fbo);
1559                         check_error();
1560                         glViewport(x, y, width, height);
1561                         if (dither_effect != NULL) {
1562                                 CHECK(dither_effect->set_int("output_width", width));
1563                                 CHECK(dither_effect->set_int("output_height", height));
1564                         }
1565                 } else {
1566                         Node *output_node = phases[phase]->effects.back();
1567                         glFramebufferTexture2D(
1568                                 GL_FRAMEBUFFER,
1569                                 GL_COLOR_ATTACHMENT0,
1570                                 GL_TEXTURE_2D,
1571                                 output_node->output_texture,
1572                                 0);
1573                         check_error();
1574                         glViewport(0, 0, phases[phase]->output_width, phases[phase]->output_height);
1575                 }
1576
1577                 // Give the required parameters to all the effects.
1578                 unsigned sampler_num = phases[phase]->inputs.size();
1579                 for (unsigned i = 0; i < phases[phase]->effects.size(); ++i) {
1580                         Node *node = phases[phase]->effects[i];
1581                         node->effect->set_gl_state(phases[phase]->glsl_program_num, node->effect_id, &sampler_num);
1582                         check_error();
1583                 }
1584
1585                 // Now draw!
1586                 glBegin(GL_QUADS);
1587
1588                 glTexCoord2f(0.0f, 0.0f);
1589                 glVertex2f(0.0f, 0.0f);
1590
1591                 glTexCoord2f(1.0f, 0.0f);
1592                 glVertex2f(1.0f, 0.0f);
1593
1594                 glTexCoord2f(1.0f, 1.0f);
1595                 glVertex2f(1.0f, 1.0f);
1596
1597                 glTexCoord2f(0.0f, 1.0f);
1598                 glVertex2f(0.0f, 1.0f);
1599
1600                 glEnd();
1601                 check_error();
1602
1603                 for (unsigned i = 0; i < phases[phase]->effects.size(); ++i) {
1604                         Node *node = phases[phase]->effects[i];
1605                         node->effect->clear_gl_state();
1606                 }
1607         }
1608 }