This commit is contained in:
2024-12-23 16:14:50 -06:00
parent c87f13b063
commit 698aeb2afc
4 changed files with 54 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
// Copyright (c) 2024 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawn.hpp"
namespace Dawn {
class IShaderEntry {
};
class IShaderProgram2 {
private:
std::vector<IShaderEntry> entries;
protected:
public:
};
}