| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-05-08 | vertex_loader: Provide an assertion for ensuring the loader has been setup | Lioncash | |
| Also adds an assert to ensure that Setup is not called more than once during a VertexLoader's lifetime. | |||
| 2016-05-08 | vertex_loader: Add constructors to facilitate immediate and two-step ↵ | Lioncash | |
| initialization | |||
| 2016-05-08 | vertex_loader: initialize_num_total_attributes. | Lioncash | |
| Keeps the public API sane. | |||
| 2016-05-08 | vertex_loader: Use std::array instead of raw C arrays | Lioncash | |
| 2016-05-08 | vertex_loader: Correct header ordering | Lioncash | |
| 2016-05-08 | Merge pull request #1766 from Subv/log_cpu | bunnei | |
| Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1) | |||
| 2016-05-07 | Merge pull request #1718 from alex-laties/fixup-type-conversions | bunnei | |
| fixup simple type conversions where possible | |||
| 2016-05-07 | Merge pull request #1761 from Subv/applets_fb | bunnei | |
| HLE/Applets: Use the correct size for the framebuffer SharedMemory | |||
| 2016-05-07 | fixup simple type conversions where possible | Alexander Laties | |
| 2016-05-07 | Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1). | Subv | |
| We do not currently implement any cores other than the AppCore (Core 0). | |||
| 2016-05-07 | Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE ↵ | Subv | |
| region of the linear heap. Each thread gets a 0x200-byte area from the 0x1000-sized page, when all 8 thread slots in a single page are used up, the kernel allocates a new page to hold another 8 entries. This is consistent with what the real kernel does. | |||
| 2016-05-07 | Merge pull request #1736 from MerryMage/sdl2-sink | bunnei | |
| AudioCore: SDL2 Sink | |||
| 2016-05-07 | HLE/Applets: Use the correct size for the framebuffer SharedMemory in the ↵ | Subv | |
| swkbd and MiiSelector applets. | |||
| 2016-05-07 | AudioCore: SDL2 Sink | MerryMage | |
| 2016-05-07 | citra_qt: Replace 'Pica Framebuffer Debugger' with 'Pica Surface Viewer' | Jannik Vogel | |
| 2016-05-07 | HLE: Fix recent DSP change for Visual Studio. | bunnei | |
| 2016-05-07 | Merge pull request #1544 from linkmauve/move-glad-init | bunnei | |
| Move glad initialisation to the frontend | |||
| 2016-05-06 | Merge pull request #1764 from ↵ | bunnei | |
| wwylele/how-can-i-find-this-if-i-have-only-decrypted-rom fix loader: return proper result | |||
| 2016-05-06 | fix:return proper error | wwylele | |
| 2016-05-06 | Frontends, VideoCore: Move glad initialisation to the frontend | Emmanuel Gil Peyrot | |
| On SDL2 this allows it to use SDL_GL_GetProcAddress() instead of the default function loader, and fixes a crash when using apitrace with an EGL context. On Qt we will need to migrate from QGLWidget to QOpenGLWidget and QOpenGLContext before we can use gladLoadGLLoader() instead of gladLoadGL(), since the former doesn’t expose a function loader. | |||
| 2016-05-05 | Merge pull request #1762 from bunnei/global | bunnei | |
| hle: Get rid of direct global access to g_reschedule | |||
| 2016-05-05 | HLE: Rename RescheduleIsPending to IsReschedulePending. | bunnei | |
| 2016-05-05 | Merge pull request #1700 from wwylele/gamelist-icon | bunnei | |
| Qt: display game icon and title in the game list | |||
| 2016-05-05 | Merge pull request #1706 from mailwl/mii-selector | Sebastian Valle | |
| Layout Mii parameters input/output, and return success as result of applet work | |||
| 2016-05-05 | Layout Mii parameters input/output, and return success as result of applet work | mailwl | |
| 2016-05-05 | Merge pull request #1757 from JayFoxRox/rename-vertexloaded-bp | bunnei | |
| Pica: Rename VertexLoaded breakpoint to VertexShaderInvocation | |||
| 2016-05-04 | Merge pull request #1734 from MerryMage/dsp-hle-source | bunnei | |
| DSP/HLE: Implement Source processing | |||
| 2016-05-04 | add missing header | wwylele | |
| 2016-05-04 | make the name column larger as default | wwylele | |
| 2016-05-04 | add icon & title to game list | wwylele | |
| 2016-05-04 | Pica: Rename VertexLoaded breakpoint to VertexShaderInvocation | Jannik Vogel | |
| 2016-05-03 | DSP/HLE: Implement Source processing | MerryMage | |
| 2016-05-03 | clean up config block | wwylele | |
| 2016-05-03 | Pica: Use a union for PicaShaderConfig | Jannik Vogel | |
| 2016-05-03 | Pica: Add TevStageConfigRaw to PicaShaderConfig (MSVC workaround) | Jannik Vogel | |
| 2016-05-03 | Pica: Make PicaShaderConfig trivially_copyable and clear it before use | Jannik Vogel | |
| 2016-05-03 | Merge pull request #1754 from JayFoxRox/fix-const_color-revert | bunnei | |
| OpenGL: Don't copy const_color (Reverts #1745) | |||
| 2016-05-03 | OpenGL: Don't copy const_color (Reverts #1745) | Jannik Vogel | |
| 2016-05-02 | Merge pull request #1750 from JayFoxRox/cleanup-shader-input | bunnei | |
| Pica: Replace logic in shader.cpp with loop | |||
| 2016-05-03 | Pica: Replace logic in shader.cpp with loop | Jannik Vogel | |
| 2016-05-02 | Merge pull request #1732 from wwylele/config00170000 | bunnei | |
| add config block 0x00170000; remove duplicated content | |||
| 2016-05-01 | Merge pull request #1741 from linkmauve/iwyu-video_core | bunnei | |
| Fix video_core includes (and dependencies) using include-what-you-use | |||
| 2016-05-01 | Merge pull request #1745 from JayFoxRox/fix-const_color | bunnei | |
| OpenGL: Copy TevStageConfig using a loop. Fixes bug: const_color not copied | |||
| 2016-05-01 | OpenGL: Copy TevStageConfig using a loop. Fixes bug: const_color not copied | Jannik Vogel | |
| 2016-05-01 | remove duplicated function declaration | wwylele | |
| 2016-04-30 | OpenGL: border_color was never set. Fixed. (#1740) | Jannik Vogel | |
| 2016-04-30 | VideoCore: Run include-what-you-use and fix most includes. | Emmanuel Gil Peyrot | |
| 2016-04-30 | LCD: Remove unneeded #undef with no matching #define. | Emmanuel Gil Peyrot | |
| 2016-04-30 | Merge pull request #1735 from JayFoxRox/remove-tga | linkmauve | |
| Remove TGA dumper | |||
| 2016-04-30 | Merge pull request #1729 from MerryMage/null-sink | bunnei | |
| Audio Config: Implement null sink and implement sink configuration | |||
