13#ifndef _CS237_SHADER_HPP_
14#define _CS237_SHADER_HPP_
17#error "cs237-shader.hpp should not be included directly"
40 std::string
const &stem,
41 vk::ShaderStageFlags
stages);
54 std::vector<std::string>
const &files,
55 vk::ShaderStageFlags
stages);
60 int numStages ()
const {
return this->_stages.size(); }
63 std::vector<vk::PipelineShaderStageCreateInfo>
const &
stages ()
const
70 std::vector<vk::PipelineShaderStageCreateInfo> _stages;
Definition cs237-shader.hpp:25
int numStages() const
return the number of shader stages in the pipeline
Definition cs237-shader.hpp:60
Shaders(vk::Device device, std::string const &stem, vk::ShaderStageFlags stages)
load a pre-compiled shader program from the file system.
std::vector< vk::PipelineShaderStageCreateInfo > const & stages() const
return a pointer to the array of stage create infos
Definition cs237-shader.hpp:63
Shaders(vk::Device device, std::vector< std::string > const &files, vk::ShaderStageFlags stages)
Definition cs237-aabb.hpp:22