summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2018-04-01GPU: Use the MacroInterpreter class to execute the GPU macros instead of HLEing them.Subv1-100/+8
2018-04-01GPU: Implemented a gpu macro interpreter.Subv1-0/+5
2018-03-27Maxwell3D: Call AccelerateDrawBatch on DrawArrays.bunnei1-1/+8
2018-03-26GPU: Load the sampler info (TSC) when retrieving active textures.Subv1-20/+60
2018-03-25GPU: Make the debug_context variable a member of the frontend instead of a global.Subv1-11/+13
2018-03-24GPU: Added a function to retrieve the active textures for a shader stage.Subv1-44/+49
2018-03-24GPU: Implement the Incoming/FinishedPrimitiveBatch debug breakpoints.Subv1-0/+7
2018-03-24GPU: Implement the MaxwellCommandLoaded/Processed debug breakpoints.Subv1-0/+10
2018-03-24GPU: Added a method to unswizzle a texture without decoding it.Subv1-1/+1
2018-03-24GPU: Preliminary work for texture decoding.Subv1-0/+45
2018-03-19Clang FixesN00byKing1-1/+2
2018-03-19Clean Warnings (?)N00byKing1-1/+1
2018-03-19GPU: Implement macro 0xE1A BindTextureInfoBuffer in HLE.Subv1-0/+18
2018-03-18GPU: Implement the BindStorageBuffer macro method in HLE.Subv1-0/+21
2018-03-18GPU: Handle writes to the CB_DATA method.Subv1-0/+36
2018-03-18GPU: Store uploaded GPU macros and keep track of the number of method parameters.Subv1-7/+16
2018-03-18GPU: Macros are specific to the Maxwell3D engine, so handle them internally.Subv1-5/+36
2018-03-18GPU: Renamed ShaderType to ShaderStage as that is less confusing.Subv1-12/+12
2018-03-18GPU: Store shader constbuffer bindings in the GPU state.Subv1-2/+36
2018-03-18GPU: Make the SetShader macro call do the same as the real macro's code.Subv1-1/+19
2018-03-17GPU: Corrected the parameter documentation for the SetShader macro call.Subv1-5/+6
2018-03-17GPU: Handle the SetShader method call (0xE24) and store the shader config.Subv1-2/+22
2018-03-17GPU: Process command mode 5 (IncreaseOnce) differently from other commands.Subv1-0/+17
2018-03-17GPU: Assert that we get a 0 CODE_ADDRESS register in the 3D engine.Subv1-0/+8
2018-03-05GPU: Intercept writes to the VERTEX_END_GL register.Subv1-0/+9
2018-02-12GPU: Partially implemented the QUERY_* registers in the Maxwell3D engine.Subv1-1/+39
2018-02-12Make a GPU class in VideoCore to contain the GPU state.Subv1-3/+1
2018-02-12GPU: Added a command processor to decode the GPU pushbuffers and forward the commands to their respective engines.Subv1-0/+15