summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-18Merge pull request #2353 from CaptV0rt3x/code-cleanupbunnei
Code cleanup
2016-12-19line fixup for travis ciCaptV0rt3x
2016-12-19screen swap - Hotkey mappingVamsi Krishna
2016-12-19Fixed GPLv2 license text in the start.Vamsi Krishna
2016-12-17Merge pull request #2345 from wwylele/no-zombie-threadbunnei
Thread: remove the thread from the thread list when exiting
2016-12-17Thread: remove the thread from the thread list when exitingwwylele
2016-12-16Merge pull request #2335 from yuriks/shader-refactorYuri Kunde Schlesner
Misc. Shader refactors
2016-12-16Merge pull request #2303 from freiro/citra-qt_missing_sdl2_dllbunnei
Copy SDL2.dll when compiling citra-qt with msvc
2016-12-16Merge pull request #2337 from lioncash/gdbbunnei
gdbstub: const correctness changes
2016-12-16Merge pull request #2322 from MerryMage/ctx-mnuMerry
game_list: Add a context menu with "Open Save Location" option
2016-12-16Merge pull request #2338 from wwylele/fix-deadSebastian Valle
Kernel: remove object's waiting thread if it is dead
2016-12-16Kernel: remove object's waiting thread if it is deadwwylele
2016-12-16gdbstub: const correctness changesLioncash
Also uses size_t as the length indicator type, as is common with buffers.
2016-12-16VideoCore/Shader: Extract DebugData out from UnitStateYuri Kunde Schlesner
2016-12-16Remove unnecessary castYuri Kunde Schlesner
2016-12-16VideoCore/Shader: Extract evaluate_condition lambda to function scopeYuri Kunde Schlesner
2016-12-15VideoCore/Shader: Extract call lambda up a scope and remove unused paramYuri Kunde Schlesner
2016-12-15VideoCore/Shader: Remove dynamic control flow in (Get)UniformOffsetYuri Kunde Schlesner
2016-12-15VideoCore/Shader: Move DebugData to a separate fileYuri Kunde Schlesner
2016-12-16Merge pull request #2260 from Subv/schedulingbunnei
Threading: Reworked the way our scheduler works.
2016-12-16Merge pull request #2316 from endrift/macos-gccbunnei
Common: Fix gcc build on macOS
2016-12-15Merge pull request #2328 from wwylele/fix-traceYuri Kunde Schlesner
Fix debug build from #2249
2016-12-15Merge pull request #2332 from lioncash/gdbYuri Kunde Schlesner
gdbstub: Remove global variable from public interface
2016-12-15Merge pull request #2320 from mailwl/cecd-updateYuri Kunde Schlesner
Service/CECD: Add cecd:ndm service
2016-12-15Merge pull request #2331 from lioncash/truncbunnei
hid: Get rid of a double -> float truncation warning
2016-12-16FS: fix debug build from #2249wwylele
2016-12-15gdbstub: Remove global variable from public interfaceLioncash
Currently, this is only ever queried, so adding a function to check if the server is enabled is more sensible. If directly modifying this externally is ever desirable, it should be done by adding a function to the interface, rather than exposing implementation details directly.
2016-12-15Merge pull request #2330 from lioncash/pragmaSebastian Valle
core: Add missing #pragma once directives where applicable
2016-12-15hid: Get rid of a double -> float truncation warningLioncash
float literals need to have the 'f' prefix.
2016-12-15Merge pull request #2327 from lioncash/typobunnei
act: Fix docstring typo
2016-12-15core: Add missing #pragma once directives where applicableLioncash
2016-12-15act: Fix docstring typoLioncash
These aren't the AM services.
2016-12-15Merge pull request #2325 from yuriks/fix-indexYuri Kunde Schlesner
shader_jit_x64: Use LOOPCOUNT_REG as a 64-bit reg when indexing
2016-12-15Merge pull request #2314 from mailwl/accountbunnei
Service/ACT: move ACT services to folder
2016-12-15main: Open folder when open save folder location context menu is clickedMerryMage
2016-12-15game_list: Implement context menu for items in listMerryMage
* Add a context menu with a "Open Save Data Location" action
2016-12-15loader: Implement ReadProgramIdMerryMage
2016-12-15shader_jit_x64: Use LOOPCOUNT_REG as a 64-bit reg when indexingYuri Kunde Schlesner
2016-12-15Merge pull request #2321 from yuriks/flush-pagesbunnei
Memory: Always flush whole pages from surface cache
2016-12-15archive_source_sd_savedata: Add static method to get a specific save data pathMerryMage
2016-12-14Memory: Always flush whole pages from surface cacheYuri Kunde Schlesner
This prevents individual writes touching a cached page, but which don't overlap the surface, from constantly hitting the surface cache lookup.
2016-12-15Service/CECD: Add cecd:ndm servicemailwl
2016-12-15Merge pull request #2317 from yuriks/vertex-copySebastian Valle
VideoCore: Eliminate an unnecessary copy in the drawcall loop
2016-12-14VideoCore: Eliminate an unnecessary copy in the drawcall loopYuri Kunde Schlesner
2016-12-14Merge pull request #2309 from yuriks/shader-jit-xbyakYuri Kunde Schlesner
Convert shader JIT to Xbyak
2016-12-14Merge pull request #2249 from Subv/sessions_v3Yuri Kunde Schlesner
Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
2016-12-14shader_jit_x64: Use Reg32 for LOOP* registers, eliminating castsYuri Kunde Schlesner
2016-12-14VideoCore: Convert x64 shader JIT to use Xbyak for assemblyYuri Kunde Schlesner
2016-12-14Externals: Add XbyakYuri Kunde Schlesner
2016-12-14externals: Update DynarmicYuri Kunde Schlesner
Required to be able to use Xbyak in Citra without header conflicts.