Fixed small error in scale when doing the downward traversal step. For some reason OpenCL has decided to start completely skipping the downward traversal loop when the jump power is equal to 1/2 dimension. What the hell?

This commit is contained in:
2018-04-15 22:32:22 -07:00
parent 195ffa1da2
commit c1e18ce17b
3 changed files with 50 additions and 39 deletions

View File

@@ -42,10 +42,12 @@ class Application {
public:
static const int WINDOW_X = 1366;
static const int WINDOW_Y = 768;
// static const int WINDOW_X = 500;
// static const int WINDOW_Y = 500;
// static const int WINDOW_X = 1366;
// static const int WINDOW_Y = 768;
// static const int WINDOW_X = 400;
// static const int WINDOW_Y = 400;
static const int WINDOW_X = 5;
static const int WINDOW_Y = 5;
static const int MAP_X;
static const int MAP_Y;
static const int MAP_Z;