X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.cpp;h=21c4a0d1d2cf84e8a2eb3f80153715557aab8d1c;hp=0a01bd356e6066261910a60e4ee2af2813d428f5;hb=d88ed3150376693000665b9016c0350d5d90e9e1;hpb=7ea0b3a5be9bafaa2d1fa5a17ce285a725ce132b diff --git a/effect_chain.cpp b/effect_chain.cpp index 0a01bd3..21c4a0d 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -2,7 +2,6 @@ #include #include -#include #include #include #include @@ -1330,10 +1329,6 @@ Node *EffectChain::find_output_node() void EffectChain::finalize() { - // Save the current locale, and set it to C, so that we can output decimal - // numbers with printf and be sure to get them in the format mandated by GLSL. - char *saved_locale = setlocale(LC_NUMERIC, "C"); - // Output the graph as it is before we do any conversions on it. output_dot("step0-start.dot"); @@ -1396,7 +1391,6 @@ void EffectChain::finalize() assert(phases[0]->inputs.empty()); finalized = true; - setlocale(LC_NUMERIC, saved_locale); } void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height)