From: Steinar H. Gunderson Date: Thu, 11 Oct 2012 19:47:11 +0000 (+0200) Subject: needs_update should be set even after we have created the texture, since we have... X-Git-Tag: 1.0~317 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=05842e6ea3346ae7f1f31c661c056d6031b83f24;hp=a273634cfd765396c8d01d54fa9122675e15f82f needs_update should be set even after we have created the texture, since we have not actually filled it with anything. --- diff --git a/flat_input.cpp b/flat_input.cpp index 56a9951..9c27cc8 100644 --- a/flat_input.cpp +++ b/flat_input.cpp @@ -75,7 +75,7 @@ void FlatInput::finalize() glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); check_error(); - needs_update = false; + needs_update = true; finalized = true; }