Example Triangle Pog

This commit is contained in:
2022-10-18 22:02:03 -07:00
parent 8698ef318b
commit e08684de19
21 changed files with 525 additions and 10 deletions

View File

@ -0,0 +1,11 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
namespace Dawn {
class Shader;
}

View File

@ -0,0 +1,14 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "display/mesh/Mesh.hpp"
namespace Dawn {
class TriangleMesh {
public:
static void createTriangleMesh(std::shared_ptr<Mesh> mesh);
};
}

View File

@ -0,0 +1,11 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
namespace Dawn {
class Mesh;
}