22 lines
431 B
C++
22 lines
431 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace yave {
|
|
|
|
class YaveGrPipeline {
|
|
public:
|
|
YaveGrPipeline(const std::string &vertFilepath,
|
|
const std::string &fragFilepath);
|
|
|
|
private:
|
|
static std::vector<char> readFile(const std::string &filepath);
|
|
|
|
void createGraphicsPipeline(const std::string &vertFilepath,
|
|
const std::string &fragFilepath);
|
|
|
|
|
|
};
|
|
|
|
} // namespace yave
|