summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-20 01:55:14 +0100
committerbunnei <bunneidev@gmail.com>2018-03-20 05:07:30 +0100
commitd7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd (patch)
treed11bb0678d38a6d24718f24befe23f04a30afb81 /src/video_core/renderer_opengl
parentrenderer_gl: Port over gl_shader_decompiler module from Citra. (diff)
downloadyuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.tar
yuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.tar.gz
yuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.tar.bz2
yuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.tar.lz
yuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.tar.xz
yuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.tar.zst
yuzu-d7b1ebe4a8a11cb1ac23b084e8014fae9cc6b7dd.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_gen.cpp20
-rw-r--r--src/video_core/renderer_opengl/gl_shader_gen.h66
2 files changed, 86 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_gen.cpp b/src/video_core/renderer_opengl/gl_shader_gen.cpp
new file mode 100644
index 000000000..f242bce1d
--- /dev/null
+++ b/src/video_core/renderer_opengl/gl_shader_gen.cpp
@@ -0,0 +1,20 @@
+// Copyright 2018 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "common/assert.h"
+#include "video_core/renderer_opengl/gl_shader_gen.h"
+
+namespace GLShader {
+
+std::string GenerateVertexShader(const MaxwellVSConfig& config) {
+ UNIMPLEMENTED();
+ return {};
+}
+
+std::string GenerateFragmentShader(const MaxwellFSConfig& config) {
+ UNIMPLEMENTED();
+ return {};
+}
+
+} // namespace GLShader
diff --git a/src/video_core/renderer_opengl/gl_shader_gen.h b/src/video_core/renderer_opengl/gl_shader_gen.h
new file mode 100644
index 000000000..5101e7d30
--- /dev/null
+++ b/src/video_core/renderer_opengl/gl_shader_gen.h
@@ -0,0 +1,66 @@
+// Copyright 2018 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <cstring>
+#include <string>
+#include <type_traits>
+#include "common/hash.h"
+
+namespace GLShader {
+
+enum Attributes {
+ ATTRIBUTE_POSITION,
+ ATTRIBUTE_COLOR,
+ ATTRIBUTE_TEXCOORD0,
+ ATTRIBUTE_TEXCOORD1,
+ ATTRIBUTE_TEXCOORD2,
+ ATTRIBUTE_TEXCOORD0_W,
+ ATTRIBUTE_NORMQUAT,
+ ATTRIBUTE_VIEW,
+};
+
+struct MaxwellShaderConfigCommon {
+ explicit MaxwellShaderConfigCommon(){};
+};
+
+struct MaxwellVSConfig : MaxwellShaderConfigCommon {
+ explicit MaxwellVSConfig() : MaxwellShaderConfigCommon() {}
+
+ bool operator==(const MaxwellVSConfig& o) const {
+ return std::memcmp(this, &o, sizeof(MaxwellVSConfig)) == 0;
+ };
+};
+
+struct MaxwellFSConfig : MaxwellShaderConfigCommon {
+ explicit MaxwellFSConfig() : MaxwellShaderConfigCommon() {}
+
+ bool operator==(const MaxwellFSConfig& o) const {
+ return std::memcmp(this, &o, sizeof(MaxwellFSConfig)) == 0;
+ };
+};
+
+std::string GenerateVertexShader(const MaxwellVSConfig& config);
+std::string GenerateFragmentShader(const MaxwellFSConfig& config);
+
+} // namespace GLShader
+
+namespace std {
+
+template <>
+struct hash<GLShader::MaxwellVSConfig> {
+ size_t operator()(const GLShader::MaxwellVSConfig& k) const {
+ return Common::ComputeHash64(&k, sizeof(GLShader::MaxwellVSConfig));
+ }
+};
+
+template <>
+struct hash<GLShader::MaxwellFSConfig> {
+ size_t operator()(const GLShader::MaxwellFSConfig& k) const {
+ return Common::ComputeHash64(&k, sizeof(GLShader::MaxwellFSConfig));
+ }
+};
+
+} // namespace std