TDME2 1.9.121
VKGL3CoreShaderProgram.h
Go to the documentation of this file.
1#pragma once
2
4
5#include <ext/vulkan/spirv/GlslangToSpv.h>
6
7#include <map>
8#include <string>
9#include <unordered_map>
10#include <unordered_set>
11#include <vector>
12
13#include <tdme/tdme.h>
15
16using std::map;
17using std::string;
18using std::unordered_map;
19using std::unordered_set;
20using std::vector;
21
22/**
23 * GL3/Core -> Vulkan shader program
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
30 static constexpr bool VERBOSE { false };
31
32 static constexpr uint32_t SHADER_VERTEX_SHADER { VK_SHADER_STAGE_VERTEX_BIT };
33 static constexpr uint32_t SHADER_FRAGMENT_SHADER { VK_SHADER_STAGE_FRAGMENT_BIT };
34 static constexpr uint32_t SHADER_COMPUTE_SHADER { VK_SHADER_STAGE_COMPUTE_BIT };
35
36 /**
37 * Set up shader constraints/resources
38 * @param resources resources
39 */
40 static void shaderInitResources(TBuiltInResource &resources);
41
42 /**
43 * Shader VK type to language converter
44 * @param shaderType shader type
45 */
46 static EShLanguage shaderFindLanguage(const VkShaderStageFlagBits shaderType);
47
48 /**
49 * Determine alignment
50 * @param structs structs
51 * @param uniforms uniforms
52 */
53 static int determineAlignment(const unordered_map<string, vector<string>>& structs, const vector<string>& uniforms);
54
55 /**
56 * Align
57 * @param alignment alignment
58 * @param offset offset
59 */
60 inline static int align(int alignment, int offset) {
61 auto alignRemainder = offset % alignment;
62 return alignRemainder == 0?offset:offset + (alignment - alignRemainder);
63 }
64
65 /**
66 * Add shader uniform buffer object
67 * @param shader shader
68 * @param definitionValues preprocessor definition values
69 * @param structs parsed structs
70 * @param uniforms parsed uniforms
71 * @param prefix prefix
72 * @param uniformStructsArrays uniforms and structs arrays
73 * @param uniformsBlock uniforms block
74 */
77 const unordered_map<string, string>& definitionValues,
78 const unordered_map<string, vector<string>>& structs,
79 const vector<string>& uniforms,
80 const string& prefix,
81 unordered_set<string>& uniformStructsArrays,
82 string& uniformsBlock
83 );
84
85public:
86 /**
87 * Loads a shader
88 * @param shader shader
89 * @param type type
90 * @param pathName path name
91 * @param fileName file name
92 * @param definitions preprocessor definitions
93 * @param functions included functions
94 * @return shader handle
95 */
96 static void loadShader(VKRenderer::shader_type& shader, int32_t type, const string& pathName, const string& fileName, const string& definitions = string(), const string& functions = string());
97
98 /**
99 * Links attached shaders to a program
100 * @param program program
101 * @return success
102 */
103 static bool linkProgram(VKRenderer::program_type& program);
104};
static bool addToShaderUniformBufferObject(VKRenderer::shader_type &shader, const unordered_map< string, string > &definitionValues, const unordered_map< string, vector< string > > &structs, const vector< string > &uniforms, const string &prefix, unordered_set< string > &uniformStructsArrays, string &uniformsBlock)
Add shader uniform buffer object.
static void loadShader(VKRenderer::shader_type &shader, int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string())
Loads a shader.
static bool linkProgram(VKRenderer::program_type &program)
Links attached shaders to a program.
static EShLanguage shaderFindLanguage(const VkShaderStageFlagBits shaderType)
Shader VK type to language converter.
static void shaderInitResources(TBuiltInResource &resources)
Set up shader constraints/resources.
static int determineAlignment(const unordered_map< string, vector< string > > &structs, const vector< string > &uniforms)
Determine alignment.