]> git.sesse.net Git - movit/commitdiff
Add some missing tests to .gitignore.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Feb 2013 14:47:23 +0000 (15:47 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Feb 2013 14:47:23 +0000 (15:47 +0100)
.gitignore
movit_pch.h [new file with mode: 0644]

index 2303e5af3bd863536750c3e82354154b83247641..a80bde9de1ea474d7d5034031f0555fe86508daa 100644 (file)
@@ -25,6 +25,8 @@ white_balance_effect_test
 lift_gamma_gain_effect_test
 resample_effect_test
 dither_effect_test
 lift_gamma_gain_effect_test
 resample_effect_test
 dither_effect_test
+glow_effect_test
+padding_effect_test
 flat_input_test
 ycbcr_input_test
 chain-*.frag
 flat_input_test
 ycbcr_input_test
 chain-*.frag
diff --git a/movit_pch.h b/movit_pch.h
new file mode 100644 (file)
index 0000000..0d88481
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef _MOVIT_PCH_H
+#define _MOVIT_PCH_H 1
+
+#ifdef MOVIT_USE_PCH
+
+#include <GL/glew.h>
+#include <Eigen/Core>
+#include <Eigen/LU>
+#include <vector>
+#include <map>
+#include <string>
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <stddef.h>
+#include <math.h>
+
+#endif  // defined(MOVIT_USE_PCH)
+
+#endif  // !defined(_MOVIT_PCH_H)