summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-02-03Merge pull request #2520 from wwylele/shader-stack-boundaryYuri Kunde Schlesner
ShaderJIT: add 16 dummy bytes at the bottom of the stack
2017-02-03Merge pull request #2518 from MerryMage/coprocYuri Kunde Schlesner
arm_dynarmic: Coprocessor support
2017-02-03Merge pull request #2509 from jfmherokiller/settingscastpatchbunnei
removed the possibly uneeded cast on values.gdbstub_port
2017-02-03Merge pull request #2507 from jfmherokiller/keyidchangebunnei
removal of the -1 case in the configure_input switch
2017-02-03arm_dynarmic: Update memory interfaceMerryMage
2017-02-03arm_dynarmic: CP15 supportMerryMage
2017-02-03ShaderJIT: add 16 dummy bytes at the bottom of the stackwwylele
2017-02-02GSP_GPU::StoreDataCache stubbed (#2428)mailwl
2017-01-31removed the possibly uneeded cast on values.gdbstub_portnoah the goodra
as far as i could tell this cast is unneeded because [GDBStub::SetServerPort](https://github.com/citra-emu/citra/blob/master/src/core/gdbstub/gdbstub.cpp#L897) takes a u16 and [values.gdbstub_port](https://github.com/citra-emu/citra/blob/master/src/core/settings.h#L116) is already a u16
2017-01-31removal of the -1 case in the configure_input switchnoah the goodra
this case is unneeded because no enumeration value can possibly correspond to it
2017-01-31HLE/Applets: Stub Mint (eShop) Applet (#2463)mailwl
This allows Phoenix Wright - Dual Destinies to boot.
2017-01-31Common/x64: remove legacy emitter and abi (#2504)Weiyi Wang
These are not used any more since we moved shader JIT to xbyak.
2017-01-31shader_jit_x64_compiler: esi and edi should be persistent (#2500)Merry
2017-01-30file_util: Fixed implicit type conversion warning (#2503)noah the goodra
2017-01-29Support looping HLE audio (#2422)Jake Merdich
* Support looping HLE audio * DSP: Fix dirty bit clears, handle nonmonotonically incrementing IDs * DSP: Add start offset support
2017-01-29Merge pull request #2368 from wwylele/camera-2Yuri Kunde Schlesner
CAM: build the service framework with a dummy implementation
2017-01-29Merge pull request #2429 from wwylele/auto-language-fixYuri Kunde Schlesner
CFG: move language override to the boot process
2017-01-30video_core: gl_rasterizer_cache.cpp removed unused type aliasKloen
2017-01-30video_core: gl_rasterizer.cpp removed unused type aliasKloen
2017-01-29Merge pull request #2494 from Kloen/killing-warnings-2-final-mixYuri Kunde Schlesner
core: inline CPU, 132 warnings fixed on GCC
2017-01-29Merge pull request #2492 from Kloen/killing-warnings-HD1.5ReMIXYuri Kunde Schlesner
Fix OSX build warnings about unhandled enumeration values.
2017-01-29Merge pull request #2493 from Kloen/killing-warnings-final-mixYuri Kunde Schlesner
video_core: silence unused-local-typedef boost related warnings on GCC
2017-01-30core: inline CPU, 132 warnings fixed on GCCKloen
2017-01-29citra: add missing control paths for ResultStatus on rom load. Fix warning ↵Kloen
about unhandled enumeration values on OSX
2017-01-29core: fix err_f.cpp warning about unhandled enumeration value on OSXKloen
2017-01-29core: fix savedata_archive.cpp warnings about unhandled enumeration values ↵Kloen
on OSX
2017-01-29core: fix archive_sdmc.cpp warnings about unhandled enumeration value on OSXKloen
2017-01-29core: fix archive_extsavedata.cpp warning on OSXKloen
2017-01-29video_core: silence unused-local-typedef boost related warning on GCCKloen
2017-01-29core: emu_window.cpp, fix conversion warnings from float to s16 on MSVCKloen
2017-01-28common: add <cstddef> to hash.hKloen
2017-01-28common: switch ComputeHash64 len param to size_t instead of int, fix warning ↵Kloen
on MSVC on dsp_dsp.cpp
2017-01-27fixed the override warningnoah the goodra
``` In file included from citra/src/audio_core/sink_details.cpp:11: citra/src/./audio_core/sdl2_sink.h:25:10: warning: 'SetDevice' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] void SetDevice(int device_id); ^ citra/src/./audio_core/sink.h:39:18: note: overridden virtual function is here virtual void SetDevice(int device_id) = 0; ^ ```
2017-01-27Merge pull request #2346 from yuriks/shader-refactor2Yuri Kunde Schlesner
More shader refactoring
2017-01-25SDL: Select audio device (#2403)Kloen Lansfiel
* Initial Commit Added Device logic to Sinks Started on UI for selecting devices Removed redundant import * Audio Core: Complete Device Switching Complete the device switching implementation by allowing the output device to be loaded, changed and saved through the configurations menu. Worked with the Sink abstraction and tuned the "Device Selection" configuration so that the Device List is automatically populated when the Sink is changed. This hopefully addresses the concerns and recommendations mentioned in the comments of the PR. * Clean original implementation. * Refactor GetSinkDetails
2017-01-25VideoCore/Shader: Move entry_point to SetupBatchYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Move per-batch ShaderEngine state into ShaderSetupYuri Kunde Schlesner
2017-01-25Shader: Remove OutputRegisters structYuri Kunde Schlesner
2017-01-25Shader: Initialize conditional_code in interpreterYuri Kunde Schlesner
This doesn't belong in LoadInputVertex because it also happens for non-VS invocations. Since it's not used by the JIT it seems adequate to initialize it in the interpreter which is the only thing that cares about them.
2017-01-25Shader: Don't read ShaderSetup from global stateYuri Kunde Schlesner
2017-01-25shader_jit_x64: Don't read program from global stateYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Move ProduceDebugInfo to InterpreterEngineYuri Kunde Schlesner
2017-01-25Debugger: Always use interpreter for shader debuggingYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Split interpreter and JIT into separate ShaderEnginesYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Rename shader_jit_x64{ => _compiler}.{cpp,h}Yuri Kunde Schlesner
2017-01-25VideoCore/Shader: Split shader uniform state and shader engineYuri Kunde Schlesner
Currently there's only a single dummy implementation, which will be split in a following commit.
2017-01-25VideoCore/Shader: Add constness to methodsYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Use only entry_point as ShaderSetup paramYuri Kunde Schlesner
This removes all implicit dependency of ShaderState on global PICA state.
2017-01-25VideoCore/Shader: Use self instead of g_state.vs in ShaderSetupYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Extract input vertex loading code into functionYuri Kunde Schlesner