summaryrefslogtreecommitdiff
path: root/src/video_core/engines (follow)
Commit message (Expand)AuthorAgeFilesLines
* gl_rasterizer: Add a SyncViewport method.Gravatar bunnei2018-03-261-0/+10
* gl_rasterizer: Normalize vertex array data as appropriate.Gravatar bunnei2018-03-261-0/+4
* maxwell_3d: Use names that match envytools for VertexType.Gravatar bunnei2018-03-261-8/+8
* maxwell_3d: Add VertexAttribute struct and cleanup.Gravatar bunnei2018-03-261-121/+160
* Maxwell3D: Call AccelerateDrawBatch on DrawArrays.Gravatar bunnei2018-03-261-1/+8
* gl_rasterizer: Implement AnalyzeVertexArray.Gravatar bunnei2018-03-261-0/+35
* maxwell: Add RenderTargetFormat enum.Gravatar bunnei2018-03-261-3/+4
* GPU: Load the sampler info (TSC) when retrieving active textures.Gravatar Subv2018-03-262-21/+67
* GPU: Make the debug_context variable a member of the frontend instead of a gl...Gravatar Subv2018-03-241-11/+13
* GPU: Added a function to retrieve the active textures for a shader stage.Gravatar Subv2018-03-242-50/+59
* GPU: Implement the Incoming/FinishedPrimitiveBatch debug breakpoints.Gravatar Subv2018-03-241-0/+7
* GPU: Implement the MaxwellCommandLoaded/Processed debug breakpoints.Gravatar Subv2018-03-241-0/+10
* GPU: Added a method to unswizzle a texture without decoding it.Gravatar Subv2018-03-241-1/+1
* GPU: Preliminary work for texture decoding.Gravatar Subv2018-03-241-0/+45
* GPU: Added viewport registers to Maxwell3D's reg structure.Gravatar Subv2018-03-241-1/+18
* maxwell_3d: Add some format decodings and string helper functions.Gravatar bunnei2018-03-221-3/+107
* GPU: Added vertex attribute format registers.Gravatar Subv2018-03-211-1/+14
* GPU: Added registers for the number of vertices to render.Gravatar Subv2018-03-201-2/+13
* Merge pull request #253 from Subv/rt_depthGravatar Mat M2018-03-191-1/+48
|\
| * GPU: Added Z buffer registers to Maxwell3D's reg structure.Gravatar Subv2018-03-191-1/+17
| * GPU: Added the render target (RT) registers to Maxwell3D's reg structure.Gravatar Subv2018-03-191-1/+32
* | Clang FixesGravatar N00byKing2018-03-191-1/+2
* | Clean Warnings (?)Gravatar N00byKing2018-03-191-1/+1
|/
* GPU: Added the TSC registers to the Maxwell3D register structure.Gravatar Subv2018-03-191-1/+15
* GPU: Added the TIC registers to the Maxwell3D register structure.Gravatar Subv2018-03-191-1/+16
* GPU: Implement macro 0xE1A BindTextureInfoBuffer in HLE.Gravatar Subv2018-03-182-1/+29
* GPU: Implement the BindStorageBuffer macro method in HLE.Gravatar Subv2018-03-182-1/+36
* GPU: Handle writes to the CB_DATA method.Gravatar Subv2018-03-182-0/+39
* GPU: Store uploaded GPU macros and keep track of the number of method paramet...Gravatar Subv2018-03-182-11/+24
* GPU: Macros are specific to the Maxwell3D engine, so handle them internally.Gravatar Subv2018-03-186-31/+55
* GPU: Renamed ShaderType to ShaderStage as that is less confusing.Gravatar Subv2018-03-172-19/+19
* GPU: Store shader constbuffer bindings in the GPU state.Gravatar Subv2018-03-172-5/+61
* GPU: Corrected some register offsets and removed superfluous macro registers.Gravatar Subv2018-03-171-9/+3
* GPU: Make the SetShader macro call do the same as the real macro's code.Gravatar Subv2018-03-172-3/+44
* GPU: Corrected the parameter documentation for the SetShader macro call.Gravatar Subv2018-03-172-11/+12
* Merge pull request #242 from Subv/set_shaderGravatar bunnei2018-03-172-4/+38
|\
| * GPU: Handle the SetShader method call (0xE24) and store the shader config.Gravatar Subv2018-03-162-4/+38
* | GPU: Added the vertex array registers.Gravatar Subv2018-03-161-2/+33
|/
* Merge pull request #241 from Subv/gpu_method_callGravatar bunnei2018-03-166-1/+56
|\
| * GPU: Process command mode 5 (IncreaseOnce) differently from other commands.Gravatar Subv2018-03-166-1/+56
* | GPU: Assert that we get a 0 CODE_ADDRESS register in the 3D engine.Gravatar Subv2018-03-161-0/+8
* | GPU: Added Maxwell registers for Shader Program control.Gravatar Subv2018-03-161-2/+55
|/
* GPU: Intercept writes to the VERTEX_END_GL register.Gravatar Subv2018-03-042-1/+18
* maxwell_3d: Make constructor explicitGravatar Lioncash2018-02-131-1/+1
* GPU: Partially implemented the QUERY_* registers in the Maxwell3D engine.Gravatar Subv2018-02-122-2/+94
* Make a GPU class in VideoCore to contain the GPU state.Gravatar Subv2018-02-116-18/+24
* GPU: Added a command processor to decode the GPU pushbuffers and forward the ...Gravatar Subv2018-02-116-0/+99