forked from vsg-dev/VulkanSceneGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShaderModule.h
More file actions
130 lines (96 loc) · 4.65 KB
/
Copy pathShaderModule.h
File metadata and controls
130 lines (96 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#pragma once
/* <editor-fold desc="MIT License">
Copyright(c) 2018 Robert Osfield
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</editor-fold> */
#include <fstream>
#include <vsg/vk/Device.h>
#include <vsg/vk/vk_buffer.h>
namespace vsg
{
// forward declare
class Context;
template<typename T>
bool readFile(T& buffer, const std::string& filename)
{
std::ifstream fin(filename, std::ios::ate | std::ios::binary);
if (!fin.is_open()) return false;
size_t fileSize = fin.tellg();
using value_type = typename T::value_type;
size_t valueSize = sizeof(value_type);
size_t bufferSize = (fileSize + valueSize - 1) / valueSize;
buffer.resize(bufferSize);
fin.seekg(0);
fin.read(reinterpret_cast<char*>(buffer.data()), fileSize);
fin.close();
// buffer.size() * valueSize
return true;
}
/// Settings passed to glsLang when compiling GLSL/HLSL shader source to SPIR-V
/// Provides the values to pass to glsLang::TShader::setEnvInput, setEnvClient and setEnvTarget.
class VSG_DECLSPEC ShaderCompileSettings : public Inherit<Object, ShaderCompileSettings>
{
public:
enum Language
{
GLSL,
HLSL
};
enum SpirvTarget
{
SPIRV_1_0 = (1 << 16),
SPIRV_1_1 = (1 << 16) | (1 << 8),
SPIRV_1_2 = (1 << 16) | (2 << 8),
SPIRV_1_3 = (1 << 16) | (3 << 8),
SPIRV_1_4 = (1 << 16) | (4 << 8),
SPIRV_1_5 = (1 << 16) | (5 << 8)
};
uint32_t vulkanVersion = VK_API_VERSION_1_0;
int clientInputVersion = 100;
Language language = GLSL;
int defaultVersion = 450;
SpirvTarget target = SPIRV_1_0;
bool forwardCompatible = false;
std::vector<std::string> defines;
void read(Input& input) override;
void write(Output& output) const override;
};
VSG_type_name(vsg::ShaderCompileSettings);
class VSG_DECLSPEC ShaderModule : public Inherit<Object, ShaderModule>
{
public:
using SPIRV = std::vector<uint32_t>;
ShaderModule();
explicit ShaderModule(const std::string& in_source, ref_ptr<ShaderCompileSettings> in_hints = {});
explicit ShaderModule(const SPIRV& in_code);
ShaderModule(const std::string& source, const SPIRV& in_code);
std::string source;
ref_ptr<ShaderCompileSettings> hints;
/// VkShaderModuleCreateInfo settings
SPIRV code;
/// Vulkan VkShaderModule handle
VkShaderModule vk(uint32_t deviceID) const { return _implementation[deviceID]->_shaderModule; }
void read(Input& input) override;
void write(Output& output) const override;
// compile the Vulkan object, context parameter used for Device
void compile(Context& context);
// remove the local reference to the Vulkan implementation
void release(uint32_t deviceID) { _implementation[deviceID] = {}; }
void release() { _implementation.clear(); }
protected:
virtual ~ShaderModule();
struct Implementation : public Inherit<Object, Implementation>
{
Implementation(Device* device, ShaderModule* shader);
virtual ~Implementation();
VkShaderModule _shaderModule;
ref_ptr<Device> _device;
};
vk_buffer<ref_ptr<Implementation>> _implementation;
};
VSG_type_name(vsg::ShaderModule);
/// replace all instances of #include "filename.extension" with the contents of the related files.
extern VSG_DECLSPEC std::string insertIncludes(const std::string& source, ref_ptr<const Options> options);
} // namespace vsg