summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-09-11Merge pull request #1147 from lioncash/nullptrYuri Kunde Schlesner
General: Replace NULL and '0' usages with nullptr where applicable
2015-09-11Merge pull request #1149 from lioncash/overrideYuri Kunde Schlesner
graphics_breakpoints_p: Add missing override specifier
2015-09-11Merge pull request #1142 from lioncash/hdrqtYuri Kunde Schlesner
citra_qt: Reorganize headers
2015-09-11Merge pull request #1143 from lioncash/vcore-hdrYuri Kunde Schlesner
video_core: Reorganize headers
2015-09-11graphics_breakpoints_p: Add missing override specifierLioncash
2015-09-11General: Replace NULL and '0' usages with nullptr where applicableLioncash
2015-09-11Merge pull request #1144 from lioncash/removebunnei
common: Get rid of debug_interface.h
2015-09-11common: Get rid of a cast in swap.hLioncash
2015-09-11common: Get rid of debug_interface.hLioncash
This is technically unused. Also removes TMemChecks because it relies on this. Whenever memory breakpoints are implemented for real, it should be designed to match the codebase debugging mechanisms.
2015-09-11video_core: Reorganize headersLioncash
2015-09-11citra_qt: Reorganize headersLioncash
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 #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-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-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: Add option to download Qt and GLFW binaries over HTTPYuri Kunde Schlesner
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-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-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 #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-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