a working version with no error but still some bugs around texturing
This commit is contained in:
parent
2d8244386a
commit
68d4610470
16 changed files with 473 additions and 110 deletions
|
@ -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;
|
||||
|
||||
};
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#endif
|
||||
|
||||
// Why? LLVM does not adhere to C++17
|
||||
//#include <filesystem>
|
||||
#include <filesystem>
|
||||
|
||||
namespace pw {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue