Holy hell, finally got this working with an R9 390 + Ubuntu.

This commit is contained in:
2017-11-15 23:07:50 -08:00
parent d3a9c95ef7
commit 2baabf5bc5
7 changed files with 26 additions and 17 deletions

View File

@@ -20,7 +20,7 @@ public:
// =========== DEBUG =========== //
char* getDataPtr();
std::vector<std::tuple<sf::Vector3i, char>> ArrayMap::CastRayCharArray(
std::vector<std::tuple<sf::Vector3i, char>> CastRayCharArray(
char* map,
sf::Vector3i* map_dim,
sf::Vector2f* cam_dir,
@@ -32,4 +32,4 @@ private:
char *voxel_data;
sf::Vector3i dimensions;
};
};

View File

@@ -92,7 +92,7 @@ public:
static const uint64_t contour_pointer_mask = 0xFFFFFF00000000;
static const uint64_t contour_mask = 0xFF00000000000000;
std::vector<std::tuple<sf::Vector3i, char>> Octree::CastRayOctree(
std::vector<std::tuple<sf::Vector3i, char>> CastRayOctree(
sf::Vector2f cam_dir,
sf::Vector3f cam_pos
);