summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | Merge pull request #282 from N00byKing/patch-2Gravatar bunnei2018-03-263-3/+3
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | log.h: Change comment from citra to yuzuGravatar N00byKing2018-03-261-1/+1
| * | | | | file_util.h: Update Comment from citra to yuzuGravatar N00byKing2018-03-261-1/+1
| * | | | | cpu_detect.cpp: Change comment from citra to yuzuGravatar N00byKing2018-03-261-1/+1
| |/ / / /
* | | | | renderer_opengl: Use better naming for DrawScreens and DrawSingleScreen.Gravatar bunnei2018-03-262-8/+8
* | | | | graphics_surface: Remove superfluous cast.Gravatar bunnei2018-03-261-2/+1
* | | | | gl_rasterizer: Move code to bind framebuffer surfaces before draw to its own ...Gravatar bunnei2018-03-262-22/+31
* | | | | gl_rasterizer: Add a SyncViewport method.Gravatar bunnei2018-03-263-18/+30
* | | | | gl_rasterizer: Move PrimitiveTopology check to MaxwellToGL.Gravatar bunnei2018-03-262-11/+12
* | | | | graphics_surface: Fix merge conflicts.Gravatar bunnei2018-03-262-3/+4
* | | | | gl_rasterizer: Use ReadBlock instead of GetPointer for SetupVertexArray.Gravatar bunnei2018-03-261-1/+1
* | | | | gl_rasterizer: Normalize vertex array data as appropriate.Gravatar bunnei2018-03-262-1/+5
* | | | | memory: Fix cast for ReadBlock/WriteBlock/ZeroBlock/CopyBlock.Gravatar bunnei2018-03-261-4/+8
* | | | | maxwel_to_gl: Fix string formatting in log statements.Gravatar bunnei2018-03-261-2/+2
* | | | | rasterizer: Rename DrawTriangles to DrawArrays.Gravatar bunnei2018-03-263-5/+5
* | | | | gl_rasterizer: Use passthrough shader for SetupVertexShader.Gravatar bunnei2018-03-261-1/+2
* | | | | renderer_opengl: Logging, etc. cleanup.Gravatar bunnei2018-03-266-33/+34
* | | | | renderer_opengl: Remove framebuffer RasterizerFlushVirtualRegion hack.Gravatar bunnei2018-03-261-5/+0
* | | | | gl_rasterizer_cache: Implement UpdatePagesCachedCount.Gravatar bunnei2018-03-262-8/+37
* | | | | memory: Add RasterizerMarkRegionCached code and cleanup.Gravatar bunnei2018-03-262-200/+195
* | | | | gl_rasterizer: Implement SetupVertexArray.Gravatar bunnei2018-03-261-20/+38
* | | | | gl_rasterizer_cache: Fix an ASSERT_MSG.Gravatar bunnei2018-03-261-1/+1
* | | | | maxwell_to_gl: Add module and function for decoding VertexType.Gravatar bunnei2018-03-262-0/+41
* | | | | 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
* | | | | gl_rasterizer: Use 32 texture units instead of 3.Gravatar bunnei2018-03-263-2/+3
* | | | | gl_rasterizer: Implement DrawTriangles.Gravatar bunnei2018-03-261-1/+194
* | | | | Maxwell3D: Call AccelerateDrawBatch on DrawArrays.Gravatar bunnei2018-03-261-1/+8
* | | | | gl_rasterizer: Implement AnalyzeVertexArray.Gravatar bunnei2018-03-262-1/+56
* | | | | gl_rasterizer_cache: MortonCopy Switch-style.Gravatar bunnei2018-03-261-72/+32
* | | | | gl_rasterizer_cache: Implement GetFramebufferSurfaces.Gravatar bunnei2018-03-262-4/+104
* | | | | maxwell: Add RenderTargetFormat enum.Gravatar bunnei2018-03-262-4/+5
* | | | | renderer_opengl: Only draw the screen if a framebuffer is specified.Gravatar bunnei2018-03-261-6/+7
* | | | | GPU: Load the sampler info (TSC) when retrieving active textures.Gravatar Subv2018-03-262-21/+67
* | | | | GPU: Added the TSC structure. It contains information about the sampler.Gravatar Subv2018-03-261-0/+50
* | | | | GPU: Added more fields to the TIC structure.Gravatar Subv2018-03-261-4/+30
|/ / / /
* | | | Merge pull request #280 from bunnei/misc-service-fixesGravatar bunnei2018-03-255-8/+66
|\ \ \ \
| * | | | audren_u: Fix GetAudioDevice.Gravatar bunnei2018-03-252-7/+48
| * | | | hid: Stub out SetNpadJoyAssignmentModeDual.Gravatar bunnei2018-03-251-1/+7
| * | | | pl_u: Add RequestLoad.Gravatar bunnei2018-03-252-0/+11
* | | | | Merge pull request #273 from Subv/texturesGravatar bunnei2018-03-2521-10/+1464
|\ \ \ \ \
| * | | | | GPU: Make the debug_context variable a member of the frontend instead of a gl...Gravatar Subv2018-03-247-19/+40
| * | | | | GPU: Added a function to retrieve the active textures for a shader stage.Gravatar Subv2018-03-242-50/+59
| * | | | | Frontend: Updated the surface view debug widget to work with Maxwell surfaces.Gravatar Subv2018-03-243-19/+38
| * | | | | Frontend: Allow opening the Surface View widget in the Qt frontend.Gravatar Subv2018-03-242-0/+8
| * | | | | 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
| * | | | | Frontend: Ported the GPU breakpoints and surface viewer widgets from citra.Gravatar Subv2018-03-2415-4/+1155
| * | | | | GPU: Added a method to unswizzle a texture without decoding it.Gravatar Subv2018-03-244-5/+95
| * | | | | GPU: Preliminary work for texture decoding.Gravatar Subv2018-03-245-0/+139
| |/ / / /