summaryrefslogtreecommitdiffstats
path: root/src/video_core/debug_utils/debug_utils.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* debug_utils: Remove unused includesLioncash2018-08-251-8/+0
| | | | | Quite a bit of these aren't necessary directly within the debug_utils header and can be removed or included where actually necessary.
* debug_utils: Make BreakpointObserver class' constructor explicitLioncash2018-08-251-1/+1
| | | | Avoids implicit conversions.
* debug_utils: Initialize active_breakpoint member of DebugContextLioncash2018-08-251-2/+2
| | | | Ensures that all class members are initialized.
* Fix crash at exitmailwl2018-06-251-2/+4
|
* GPU: Make the debug_context variable a member of the frontend instead of a global.Subv2018-03-251-2/+0
|
* Frontend: Ported the GPU breakpoints and surface viewer widgets from citra.Subv2018-03-241-0/+165
|
* Remove references to PICA and rasterizers in video_coreJames Rowe2018-01-131-251/+0
|
* Doxygen: Amend minor issues (#2593)Mat M2017-02-271-1/+1
| | | | | | | | | Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
* VideoCore: Split regs.h inclusionsYuri Kunde Schlesner2017-02-091-1/+3
|
* VideoCore: Move Regs to its own fileYuri Kunde Schlesner2017-02-041-1/+1
|
* VideoCore: Split shader regs from Regs structYuri Kunde Schlesner2017-02-041-1/+1
|
* VideoCore: Split texturing regs from Regs structYuri Kunde Schlesner2017-02-041-4/+4
|
* VideoCore: Split rasterizer regs from Regs structYuri Kunde Schlesner2017-02-041-1/+1
|
* VideoCore: Move LookupTexture out of debug_utils.hYuri Kunde Schlesner2017-02-041-25/+0
|
* VideoCore: Inline IsPicaTracingYuri Kunde Schlesner2016-12-151-1/+5
| | | | Speeds up ALBW main menu slightly (~3%)
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-2/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-4/+2
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-11/+20
|
* Refactor Tev stage dumperJannik Vogel2016-05-211-1/+5
|
* Pica: Rename VertexLoaded breakpoint to VertexShaderInvocationJannik Vogel2016-05-041-1/+1
|
* VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot2016-04-301-3/+13
|
* Merge pull request #1730 from hrydgard/vertex-loaderbunnei2016-04-291-0/+30
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove late accesses to attribute_config * Refactor: Extract VertexLoader from command_processor.cpp. Preparation for a similar concept to Dolphin or PPSSPP. These can be JIT-ed and cached. * Move "&" to their proper place, add missing includes and make some properly relative. * Don't keep base_address in the loader, it doesn't belong there (with it, the loader can't be cached). * Optimize the vertex loader, nearly doubling its speed. * Debugger fix * Move and rename the MemoryAccesses class to MemoryAccessTracker.
| * Move and rename the MemoryAccesses class to MemoryAccessTracker.Henrik Rydgard2016-04-291-0/+30
| |
* | Replace std::map with std::array for graphics event breakpoints, and allow the compiler to inline. Saves 1%+ in vertex heavy situations.Henrik Rydgard2016-04-241-3/+13
|/
* Pica: Remove geometry dumper (PICA_DUMP_GEOMETRY)Jannik Vogel2016-04-101-21/+0
|
* Add immediate mode vertex submissionDwayne Slater2016-03-031-1/+2
|
* Merge pull request #997 from Lectem/cmdlist_full_debugTony Wasserka2015-08-161-9/+5
|\ | | | | citra-qt: Improve pica command list widget (add mask, fix some issues)
| * citra-qt/command list: Add mask columnLectem2015-07-261-9/+5
| |
* | Introduce a shader tracer to allow inspection of input/output values for each processed instruction.Tony Wasserka2015-08-161-1/+2
| |
* | Pica/DebugUtils: Include uniform information into shader dumps.Tony Wasserka2015-08-161-2/+1
| |
* | citra-qt: Improve shader debugger.Tony Wasserka2015-08-161-1/+0
| | | | | | | | Now supports dumping the current shader and recognizes a larger number of output semantics.
* | VideoCore: #ifdef out some debugging routinesYuri Kunde Schlesner2015-07-261-0/+5
|/ | | | | | | Some disabled debugging functionality was being called from rendering routines in VideoCore. Although disabled, many of them still allocated memory or did some extra work that was enough to show up in a profiler. Gives a slight (~2ms) speedup.
* Qt/GPU Breakpoints: Added three more breakpoint types:Subv2015-07-231-2/+5
| | | | | | * IncomingDisplayTransfer: Triggered just before a display transfer is performed. * GSPCommandProcessed: Triggered right after a GSP command is processed. * BufferSwapped: Triggered when the frames flip
* Add CiTrace recording support.Tony Wasserka2015-07-131-0/+4
| | | | | | This is exposed in the GUI as a new "CiTrace Recording" widget. Playback is implemented by a standalone 3DS homebrew application (which only runs reliably within Citra currently; on an actual 3DS it will often crash still).
* Move video_core/math.h to common/vector_math.harchshift2015-05-301-1/+2
| | | | The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
* Pica/DebugUtils: Better document LookupTexture.Tony Wasserka2014-12-201-1/+10
|
* Pica/DebugUtils: Add an event triggered after loading a vertex.Tony Wasserka2014-12-201-0/+1
|
* Pica: Unify ugly address translation hacks.Tony Wasserka2014-12-201-1/+1
|
* Pica: Merge texture lookup logic for DebugUtils and Rasterizer.Tony Wasserka2014-12-201-1/+2
| | | | This effectively adds support for a lot texture formats in the rasterizer.
* citra_qt: Add enhanced texture debugging widgets.Tony Wasserka2014-12-091-0/+4
| | | | Double-clicking a texture parameter command in the pica command lists will spawn these as a new tab in the pica command list dock area.
* citra-qt: Add texture viewer to Pica command list.Tony Wasserka2014-12-091-0/+9
| | | | The texture viewer is enabled when selecting a write command to one of the texture config registers.
* Pica/DebugUtils: Add breakpoint functionality.Tony Wasserka2014-12-091-0/+133
|
* Remove tabs in all files except in skyeye imports and in generated GL codeEmmanuel Gil Peyrot2014-11-191-1/+1
|
* Pica: Consolidate the primitive assembly code in PrimitiveAssembly and GeometryDumper.Tony Wasserka2014-08-251-7/+5
|
* Pica/DebugUtils: Add convenient tev setup printer.Tony Wasserka2014-08-251-0/+2
|
* Pica: Add support for dumping textures.Tony Wasserka2014-08-251-0/+2
|
* Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.Tony Wasserka2014-08-251-0/+21
|
* Pica: Add debug utilities for dumping shaders.Tony Wasserka2014-08-251-0/+3
|
* Pica: Add debug utility functions for dumping geometry data.Tony Wasserka2014-08-251-0/+40