From 1b42d55a9dcb27ac2374de0ed0d1d0ec8385b13e Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 13 May 2015 23:29:27 -0400 Subject: Pica: Create 'State' structure and move state memory there. --- src/video_core/vertex_shader.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/video_core/vertex_shader.h') 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 { static_assert(std::is_pod::value, "Structure is not POD"); static_assert(sizeof(OutputVertex) == 32 * sizeof(float), "OutputVertex has invalid size"); -void SubmitShaderMemoryChange(u32 addr, u32 value); -void SubmitSwizzleDataChange(u32 addr, u32 value); - OutputVertex RunShader(const InputVertex& input, int num_attributes); -Math::Vec4& GetFloatUniform(u32 index); -bool& GetBoolUniform(u32 index); -Math::Vec4& GetIntUniform(u32 index); -Math::Vec4& GetDefaultAttribute(u32 index); - -const std::array& GetShaderBinary(); -const std::array& GetSwizzlePatterns(); - } // namespace } // namespace -- cgit v1.2.3