summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-10General: Fix up doxygen commentsLioncash
2015-09-10Merge pull request #1131 from lioncash/uninitYuri Kunde Schlesner
y2r: Give local variables an initial value
2015-09-10Merge pull request #1132 from lioncash/unimplYuri Kunde Schlesner
disk_archive: Remove unimplemented constructor declarations
2015-09-09disk_archive: Remove unimplemented constructor declarationsLioncash
2015-09-09y2r: Give local variables an initial valueLioncash
Keeps compilers/static analyzers quiet.
2015-09-08Merge pull request #1020 from yuriks/qt-binariesbunnei
CMake: Add option to download Qt binaries
2015-09-08CMake: Point binary downloads to new official repoYuri Kunde Schlesner
2015-09-08CMake: Remove support for QTDIR environment variableYuri Kunde Schlesner
Using this variable is problematic is the user has several versions of Qt installed on their system. There is no way to know ahead of time if the Qt version pointed to by QTDIR matches the toolchain that is being targeted. The Qt installation path can still be easily specified if it's not found by CMake by setting the Qt5_DIR cache variable after the initial configuration run, so this shouldn't present an usability issue.
2015-09-08CMake: Don't complain when Boost isn't found in the system.Yuri Kunde Schlesner
2015-09-08CMake: Use HINTS option instead of modifying CMAKE_PREFIX_PATH for QtYuri Kunde Schlesner
2015-09-08CMake: Add option to download Qt and GLFW binaries over HTTPYuri Kunde Schlesner
2015-09-08CMake: Fix architecture detection on MSVCYuri Kunde Schlesner
CMAKE_SYSTEM_ARCHICTETURE always returns the *host* not target arch when using the MSVC generators. (CMake bugs 15170 and 14342.)
2015-09-07Merge pull request #1125 from yuriks/uilayout-configYuri Kunde Schlesner
citra-qt: Separate UI layout state in a separate section of the config
2015-09-07Merge pull request #1124 from yuriks/trim-mruYuri Kunde Schlesner
citra-qt: Trim recently used files list to size when insterting new item
2015-09-07citra-qt: Separate UI layout state in a separate section of the configYuri Kunde Schlesner
Closes #1113
2015-09-07citra-qt: Trim recently used files list to size when insterting new itemYuri Kunde Schlesner
Even though they weren't visible in the UI, old entries would never be removed from the list and would be stored in the config file across sessions.
2015-09-07Merge pull request #1118 from Kloen/monospace-fontbunnei
citra-qt: Use monospace font on Disassembler and ARM Registers
2015-09-07Merge pull request #1121 from aroulin/shader-minor-fixesbunnei
Shader: Use constants and proper type casts
2015-09-07Merge pull request #1052 from yuriks/vertex-disasmYuri Kunde Schlesner
Shader Debugger Improvements
2015-09-07Shader Debugger: Allow editing of input vertex dataYuri Kunde Schlesner
2015-09-07Shader Debugger: Highlight current instruction instead of focusingYuri Kunde Schlesner
This avoid some annoying focus stealing in some situations, and looks nicer in general.
2015-09-07Shader Debugger: Remove useless signalYuri Kunde Schlesner
2015-09-07Shader Debugger: Fix only first vertex attribute being loadedYuri Kunde Schlesner
2015-09-07Shader Debugger: Fix freeze when double-clicking shader disassemblyYuri Kunde Schlesner
2015-09-07Shader Debugger: Improve space efficiency of the layoutYuri Kunde Schlesner
2015-09-07Shader Disassembly: Fix printing of jump offsetsYuri Kunde Schlesner
2015-09-07Shader Disassembly: Fix disassembly of IFU/CALLU instructionsYuri Kunde Schlesner
2015-09-07Shader Disassembly: Implement support for MAD/MADIYuri Kunde Schlesner
2015-09-07Shader Disassembly: Introduce variables to hold common subexpressionsYuri Kunde Schlesner
2015-09-07Shader Debugger: Initialize input_vertex to prevent crashesYuri Kunde Schlesner
If the first type of breakpoint to be hit wasn't "Vertex Loaded", the input_vertex would contain garbage, which would be passed to the shader interpreter and ocasionally cause crashes.
2015-09-07Shader Disassembly: Cleanup code and improve output alignmentYuri Kunde Schlesner
2015-09-07citra-qt: Use monospace font on Disassembler and ARM RegistersKloen
2015-09-07Shader JIT: Use SCALE constant from emitteraroulin
2015-09-07Shader: Fix size_t to int casts of register offsetsaroulin
2015-09-06Merge pull request #1117 from yuriks/fix-glad-buildYuri Kunde Schlesner
CMake: Add missing library required by Linux for compiling glad
2015-09-06CMake: Add missing library required by Linux for compiling gladYuri Kunde Schlesner
2015-09-06Merge pull request #1114 from archshift/conditioncode_alLioncash
DynCom: Converted all magic 0xE condition code checks to ConditionCode::AL
2015-09-05DynCom: Converted all 0xE condition code checks to ConditionCode::ALarchshift
2015-09-05Merge pull request #1104 from yuriks/opengl-samplersbunnei
OpenGL: Use Sampler Objects to decouple sampler config from textures
2015-09-03OpenGL: Use Sampler Objects to decouple sampler config from texturesYuri Kunde Schlesner
Fixes #978
2015-09-03OpenGL: Remove ugly and endian-unsafe color pointer castsYuri Kunde Schlesner
2015-09-03OpenGL: Add support for Sampler Objects to state trackerYuri Kunde Schlesner
2015-09-03citra-qt: Move system shutdown to run inside EmuThreadYuri Kunde Schlesner
This stops (for some reason sporadic) crashes and OpenGL errors during shutdown, when the OpenGL renderer tries to clean up objects from the UI thread, which has no OpenGL context active.
2015-09-03Merge pull request #1087 from yuriks/opengl-gladYuri Kunde Schlesner
Replace the previous OpenGL loader with a glad-generated 3.3 one
2015-09-03Merge pull request #1101 from archshift/camu-service-namesbunnei
Add cam:u service function names to its function table
2015-09-03Add cam:u service function names to its function tablearchshift
2015-09-02Merge pull request #1088 from aroulin/x64-emitter-abi-callbunnei
x64: Proper stack alignment in shader JIT function calls
2015-09-02Merge pull request #1099 from aroulin/video-core-format-specifierbunnei
video_core: Fix format specifiers warnings
2015-09-02video_core: Fix format specifiers warningsaroulin
2015-09-01x64: Proper stack alignment in shader JIT function callsaroulin
Import Dolphin stack handling and register saving routines Also removes the x86 parts from abi files