diff options
Diffstat (limited to 'src/video_core/vertex_shader.h')
| -rw-r--r-- | src/video_core/vertex_shader.h | 11 |
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 { | |||
| 66 | static_assert(std::is_pod<OutputVertex>::value, "Structure is not POD"); | 66 | static_assert(std::is_pod<OutputVertex>::value, "Structure is not POD"); |
| 67 | static_assert(sizeof(OutputVertex) == 32 * sizeof(float), "OutputVertex has invalid size"); | 67 | static_assert(sizeof(OutputVertex) == 32 * sizeof(float), "OutputVertex has invalid size"); |
| 68 | 68 | ||
| 69 | void SubmitShaderMemoryChange(u32 addr, u32 value); | ||
| 70 | void SubmitSwizzleDataChange(u32 addr, u32 value); | ||
| 71 | |||
| 72 | OutputVertex RunShader(const InputVertex& input, int num_attributes); | 69 | OutputVertex RunShader(const InputVertex& input, int num_attributes); |
| 73 | 70 | ||
| 74 | Math::Vec4<float24>& GetFloatUniform(u32 index); | ||
| 75 | bool& GetBoolUniform(u32 index); | ||
| 76 | Math::Vec4<u8>& GetIntUniform(u32 index); | ||
| 77 | Math::Vec4<float24>& GetDefaultAttribute(u32 index); | ||
| 78 | |||
| 79 | const std::array<u32, 1024>& GetShaderBinary(); | ||
| 80 | const std::array<u32, 1024>& GetSwizzlePatterns(); | ||
| 81 | |||
| 82 | } // namespace | 71 | } // namespace |
| 83 | 72 | ||
| 84 | } // namespace | 73 | } // namespace |