rsx/gl: Add basic interpreter support to OGL

- Adds basic interpreter functionality.
- Flow control and other instructions not yet implemented.
This commit is contained in:
kd-11 2020-03-25 00:22:21 +03:00 committed by Ivan
parent 65e9e568b5
commit 0072df7f20
15 changed files with 1721 additions and 33 deletions

View file

@ -46,7 +46,7 @@ void GLVertexDecompilerThread::insertHeader(std::stringstream &OS)
OS << "layout(std140, binding = 1) uniform VertexLayoutBuffer\n";
OS << "{\n";
OS << " uint vertex_base_index;\n";
OS << " uint vertex_index_offset;\n";
OS << " uint vertex_index_offset;\n";
OS << " uvec4 input_attributes_blob[16 / 2];\n";
OS << "};\n\n";
}