summaryrefslogtreecommitdiff
path: root/src/mbgl/shaders/shaders.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/shaders/shaders.hpp')
-rw-r--r--src/mbgl/shaders/shaders.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mbgl/shaders/shaders.hpp b/src/mbgl/shaders/shaders.hpp
new file mode 100644
index 0000000000..e2912c5688
--- /dev/null
+++ b/src/mbgl/shaders/shaders.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <string>
+
+namespace mbgl {
+
+class ProgramParameters;
+
+namespace shaders {
+
+std::string fragmentSource(const ProgramParameters&, const char* fragmentSource);
+std::string vertexSource(const ProgramParameters&, const char* vertexSource);
+
+} // namespace shaders
+} // namespace mbgl