summaryrefslogtreecommitdiffstats
path: root/src/video_core/vertex_loader.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* VideoCore: Move Regs to its own fileYuri Kunde Schlesner2017-02-041-1/+1
|
* VideoCore: Split geometry pipeline regs from Regs structYuri Kunde Schlesner2017-02-041-7/+8
|
* VideoCore: Rename some types to more accurate namesYuri Kunde Schlesner2017-01-301-2/+3
|
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-5/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-36/+52
|
* Merge pull request #1733 from lioncash/vert_loaderbunnei2016-05-241-1/+7
|\ | | | | VertexLoader: Minor changes
| * vertex_loader: Provide an assertion for ensuring the loader has been setupLioncash2016-05-091-0/+6
| | | | | | | | | | Also adds an assert to ensure that Setup is not called more than once during a VertexLoader's lifetime.
| * vertex_loader: Correct header orderingLioncash2016-05-091-1/+1
| |
* | Move default_attributes into Pica stateJannik Vogel2016-05-121-1/+1
|/
* VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot2016-04-301-5/+5
|
* Move and rename the MemoryAccesses class to MemoryAccessTracker.Henrik Rydgard2016-04-291-3/+2
|
* Debugger fixHenrik Rydgard2016-04-281-2/+2
|
* Optimize the vertex loader, nearly doubling its speed.Henrik Rydgard2016-04-281-31/+54
|
* Don't keep base_address in the loader, it doesn't belong there (with it, the loader can't be cached).Henrik Rydgard2016-04-281-5/+4
|
* Move "&" to their proper place, add missing includes and make some properly relative.Henrik Rydgard2016-04-281-6/+6
|
* Refactor: Extract VertexLoader from command_processor.cpp.Henrik Rydgard2016-04-281-0/+119
Preparation for a similar concept to Dolphin or PPSSPP. These can be JIT-ed and cached.