aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-03-23FS: Move the file open mode calculation to a separate function.Subv
2018-03-23RasterizerCacheOpenGL: FlushAll should flush full memory region.bunnei
2018-03-23memory: RasterizerFlushVirtualRegion should also check process image region.bunnei
2018-03-23rasterizer: Flush and invalidate regions should be 64-bit.bunnei
2018-03-23renderer_opengl: Add framebuffer_transform_flags member variable.bunnei
2018-03-23renderer_opengl: Better handling of framebuffer transform flags.bunnei
2018-03-23Remove Option for N/3DS from default.iniN00byKing
2018-03-23CITRA_ICON -> YUZU_ICONN00byKing
2018-03-23Service/SSL: add ssl servicemailwl
2018-03-22renderer_opengl: Use accelerated framebuffer load with LoadFBToScreenInfo.bunnei
2018-03-22nvdisp_disp0: Always flush and invalidate framebuffer region.bunnei
- Workaround for texture forwarding until we have a better place.
2018-03-22gl_rasterizer: Implement AccelerateDisplay method from Citra.bunnei
2018-03-22LoadGLBuffer: Use bytes_per_pixel, not bits.bunnei
2018-03-22memory: Port RasterizerFlushVirtualRegion from Citra.bunnei
2018-03-22gl_rasterizer_cache: LoadGLBuffer should do a morton copy.bunnei
2018-03-22video_core: Move MortonCopyPixels128 to utils header.bunnei
2018-03-22yuzu_cmd: change default cpu core to dynarmicValentin Vanelslande
2018-03-22default_ini: change default cpu core to dynarmicValentin Vanelslande
2018-03-22video_core: Remove usage of PAddr and replace with VAddr.bunnei
2018-03-22video_core: Move FramebufferInfo to FramebufferConfig in GPU.bunnei
2018-03-22gl_rasterizer: Replace a bunch of UNIMPLEMENTED with ASSERT.bunnei
2018-03-22gl_rasterizer: Add a simple passthrough shader in lieu of shader generation.bunnei
2018-03-22gpu: Expose Maxwell3D engine.bunnei
2018-03-22maxwell_3d: Add some format decodings and string helper functions.bunnei
2018-03-22renderer: Create rasterizer and cleanup.bunnei
2018-03-22Remove more N3DS ReferencesN00byKing
2018-03-22Remove dependency chronoDaniel Lim Wee Soong
Earlier chrono was included but after some code changed it was no longer needed Forgot to remove it so I'm removing it now
2018-03-22Change "yuzu starting..." to be logged with the new macroDaniel Lim Wee Soong
Just as a proof that it works
2018-03-22Logging: Create logging macros based on fmtlibDaniel Lim Wee Soong
Add a new set of logging macros based on fmtlib Similar but not exactly the same as https://github.com/citra-emu/citra/pull/3533 Citra currently uses a different version of fmt, which does not support FMT_VARIADIC so make_args is used instead. On the other hand, yuzu uses fmt 4.1.0 which doesn't have make_args yet so FMT_VARIADIC is used.
2018-03-22Service/spl: add module and servicesmailwl
2018-03-21Merge pull request #258 from Subv/gpu_attribsbunnei
GPU: Added vertex attrib format and triangle topology registers
2018-03-21CMake: Set EMU_ARCH_BITS in CMakeLists.txtN00byKing
2018-03-21FS: Implemented IFileSystem::CreateDirectory.Subv
2018-03-21GPU: Added vertex attribute format registers.Subv
2018-03-21Service/vi: convert services to modulemailwl
2018-03-20GPU: Added registers for the number of vertices to render.Subv
2018-03-20Merge pull request #254 from bunnei/port-citra-rendererbunnei
Port Citra OpenGL rasterizer code
2018-03-20Service: add fatal:u, fatal:p servicesmailwl
2018-03-20renderer_gl: Port boilerplate rasterizer code over from Citra.bunnei
2018-03-20gl_shader_util: Sync latest version with Citra.bunnei
2018-03-20renderer_gl: Port over gl_shader_gen module from Citra.bunnei
2018-03-19FS: Implemented IFileSystem's OpenDirectory function.Subv
Note that the filter parameter is not yet implemented.
2018-03-19FS: Added the IDirectory IPC interface and implemented its two functions.Subv
2018-03-19FS: Implement DiskFileSystem's OpenDirectory interface.Subv
2018-03-19FS: Implement DiskFileSystem::GetEntryType for existing files/directories.Subv
2018-03-19FS: Updated the Directory Entry structure to match the Switch.Subv
2018-03-19FS: Support the file Append open mode.Subv
2018-03-19Merge pull request #253 from Subv/rt_depthMat M
GPU: Added registers for color and Z buffers.
2018-03-19renderer_gl: Port over gl_shader_decompiler module from Citra.bunnei
2018-03-19renderer_gl: Port over gl_rasterizer_cache module from Citra.bunnei