summaryrefslogtreecommitdiffstats
path: root/src/video_core/vertex_shader.h
diff options
context:
space:
mode:
authorTony Wasserka <neobrainx@gmail.com>2015-03-22 00:31:40 +0100
committerTony Wasserka <NeoBrainX@gmail.com>2015-07-15 17:31:57 +0200
commit33568494afe22f241f381c9741f3a355ab8dcba7 (patch)
tree32f1a6333dc2cf7c3d49538dacbc944624a5a49c /src/video_core/vertex_shader.h
parentMerge pull request #928 from JSFernandes/master (diff)
downloadyuzu-33568494afe22f241f381c9741f3a355ab8dcba7.tar
yuzu-33568494afe22f241f381c9741f3a355ab8dcba7.tar.gz
yuzu-33568494afe22f241f381c9741f3a355ab8dcba7.tar.bz2
yuzu-33568494afe22f241f381c9741f3a355ab8dcba7.tar.lz
yuzu-33568494afe22f241f381c9741f3a355ab8dcba7.tar.xz
yuzu-33568494afe22f241f381c9741f3a355ab8dcba7.tar.zst
yuzu-33568494afe22f241f381c9741f3a355ab8dcba7.zip
Diffstat (limited to 'src/video_core/vertex_shader.h')
-rw-r--r--src/video_core/vertex_shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vertex_shader.h b/src/video_core/vertex_shader.h
index c997e6a77..97f9250dd 100644
--- a/src/video_core/vertex_shader.h
+++ b/src/video_core/vertex_shader.h
@@ -65,7 +65,7 @@ struct OutputVertex {
static_assert(std::is_pod<OutputVertex>::value, "Structure is not POD");
static_assert(sizeof(OutputVertex) == 32 * sizeof(float), "OutputVertex has invalid size");
-OutputVertex RunShader(const InputVertex& input, int num_attributes);
+OutputVertex RunShader(const InputVertex& input, int num_attributes, const Regs::ShaderConfig& config, const State::ShaderSetup& setup);
} // namespace