Solve merge conflict.

This commit is contained in:
Kalle Bladin
2016-05-12 11:46:59 -04:00
16 changed files with 262 additions and 135 deletions
+15 -1
View File
@@ -38,13 +38,27 @@
namespace openspace {
class LonLatPatch;
using namespace glm;
class FrustumCuller {
public:
enum PointTestResult : int {
Inside = 0,
Above,
AboveRight,
Right,
BelowRight,
Below,
BelowLeft,
Left,
AboveLeft
};
FrustumCuller();
~FrustumCuller();