summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-11video_core: Remove unnecessary includes from headersLioncash
2015-09-10Merge pull request #1130 from lioncash/blockYuri Kunde Schlesner
memory: Get rid of pointer casts
2015-09-10Merge pull request #1128 from yuriks/cmake-optionsbunnei
CMake: Make all cache options appear even in case of errors
2015-09-10Merge pull request #1133 from lioncash/emplace-backbunnei
gl_rasterizer: Replace push_back calls with emplace_back in AddTriangle
2015-09-10Merge pull request #1136 from lioncash/protobunnei
renderer_opengl: Remove unimplemented function declaration
2015-09-10Merge pull request #1137 from lioncash/docbunnei
General: Fix up doxygen comments
2015-09-10Merge pull request #1135 from lioncash/unusedbunnei
video_core: Remove unused variables
2015-09-10General: Fix up doxygen commentsLioncash
2015-09-10renderer_opengl: Remove unimplemented function declarationLioncash
2015-09-10video_core: Remove unused variablesLioncash
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-10gl_rasterizer: Replace push_back calls with emplace_back in AddTriangleLioncash
2015-09-10memory: Get rid of pointer castsLioncash
2015-09-09disk_archive: Remove unimplemented constructor declarationsLioncash
2015-09-09y2r: Give local variables an initial valueLioncash
Keeps compilers/static analyzers quiet.
2015-09-08CMake: Make all cache options appear even in case of errorsYuri Kunde Schlesner
The `option` commands have been moved to the top of the file, so that the relevant options are registered in the CMake cache even if one of the required libraries is not found. This solves an ergonomic problem when using bundled libraries where you have to first download GLFW before being able to select the option to also download Qt.
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