summaryrefslogtreecommitdiff
path: root/src/video_core/vertex_shader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/vertex_shader.h')
-rw-r--r--src/video_core/vertex_shader.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/video_core/vertex_shader.h b/src/video_core/vertex_shader.h
index c26709bbc..7471a6de8 100644
--- a/src/video_core/vertex_shader.h
+++ b/src/video_core/vertex_shader.h
@@ -66,19 +66,8 @@ struct OutputVertex {
66static_assert(std::is_pod<OutputVertex>::value, "Structure is not POD"); 66static_assert(std::is_pod<OutputVertex>::value, "Structure is not POD");
67static_assert(sizeof(OutputVertex) == 32 * sizeof(float), "OutputVertex has invalid size"); 67static_assert(sizeof(OutputVertex) == 32 * sizeof(float), "OutputVertex has invalid size");
68 68
69void SubmitShaderMemoryChange(u32 addr, u32 value);
70void SubmitSwizzleDataChange(u32 addr, u32 value);
71
72OutputVertex RunShader(const InputVertex& input, int num_attributes); 69OutputVertex RunShader(const InputVertex& input, int num_attributes);
73 70
74Math::Vec4<float24>& GetFloatUniform(u32 index);
75bool& GetBoolUniform(u32 index);
76Math::Vec4<u8>& GetIntUniform(u32 index);
77Math::Vec4<float24>& GetDefaultAttribute(u32 index);
78
79const std::array<u32, 1024>& GetShaderBinary();
80const std::array<u32, 1024>& GetSwizzlePatterns();
81
82} // namespace 71} // namespace
83 72
84} // namespace 73} // namespace