]> git.sesse.net Git - movit/blobdiff - ycbcr_input_test.cpp
Handle texture non-bounce a bit better.
[movit] / ycbcr_input_test.cpp
index f9be19392cf421ff0e2f127a45188045ded1df86..352fe290dffc4143c27a44e62bf27bef842f2980 100644 (file)
@@ -1,13 +1,16 @@
 // Unit tests for YCbCrInput.
 // FIXME: This class really ought to support mipmaps.
 
+#include <GL/glew.h>
 #include <stddef.h>
 
 #include "effect_chain.h"
 #include "gtest/gtest.h"
 #include "test_util.h"
-#include "ycbcr_input.h"
 #include "util.h"
+#include "ycbcr_input.h"
+
+namespace movit {
 
 TEST(YCbCrInput, Simple444) {
        const int width = 1;
@@ -473,3 +476,5 @@ TEST(YCbCrInput, PBO) {
 
        glDeleteBuffers(1, &pbo);
 }
+
+}  // namespace movit