a working version with no error but still some bugs around texturing

This commit is contained in:
Hartmut Seichter 2021-01-28 20:11:17 +01:00
parent 2d8244386a
commit 68d4610470
16 changed files with 473 additions and 110 deletions

View file

@ -8,8 +8,7 @@ namespace pw {
class display {
public:
typedef std::vector<display> list;
using list = std::vector<display>;
static const list& all() { return _displays; }
@ -18,9 +17,7 @@ public:
protected:
friend class window;
std::string _name;
static list _displays;
};

View file

@ -19,7 +19,7 @@
#endif
// Why? LLVM does not adhere to C++17
//#include <filesystem>
#include <filesystem>
namespace pw {