Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-25 | service/nvdrv: Use std::move where applicable | Lioncash | |
Avoids unnecessary reference count increments and decrements. In one case, we don't need to make a shared_ptr copy at all, just to call a member function. | |||
2018-07-25 | Merge pull request #801 from lioncash/time | Mat M | |
time: Add the time:a service | |||
2018-07-25 | Merge pull request #804 from lioncash/log | Mat M | |
svc: Log parameters in SetMemoryAttribute() | |||
2018-07-25 | time: Add the time:a service | Lioncash | |
Given we already have time:s and time:u, we should also have time:a | |||
2018-07-25 | Merge pull request #803 from MerryMage/core_timing_util | bunnei | |
core_timing: Split off utility functions into core_timing_util | |||
2018-07-25 | Merge pull request #802 from lioncash/unreach | bunnei | |
wait_tree: Silence warning about all code paths not returning a value | |||
2018-07-25 | Merge pull request #800 from lioncash/set | bunnei | |
set_sys: Implement SetColorSetId() | |||
2018-07-25 | GPU: Allow the use of Z24S8 as a texture format. | Subv | |
2018-07-25 | Merge pull request #816 from Subv/z32_s8 | bunnei | |
GPU: Implemented the Z32_S8_X24 depth buffer format. | |||
2018-07-25 | Merge pull request #815 from Subv/z32f_tex | bunnei | |
GPU: Allow using Z32 as a texture format. | |||
2018-07-25 | Merge pull request #814 from Subv/rt_r8 | bunnei | |
GPU: Allow the usage of R8 as a render target format. | |||
2018-07-24 | Merge pull request #809 from lioncash/rasterizer | bunnei | |
gl_rasterizer: Minor cleanup | |||
2018-07-24 | Merge pull request #811 from Subv/code_address_assert | bunnei | |
GPU: Remove the assert that required the CODE_ADDRESS to be 0. | |||
2018-07-24 | GPU: Implemented the Z32_S8_X24 depth buffer format. | Subv | |
2018-07-24 | GPU: Allow using Z32 as a texture format. | Subv | |
2018-07-24 | GPU: Allow the usage of R8 as a render target format. | Subv | |
2018-07-24 | Merge pull request #806 from lioncash/friend | bunnei | |
friend: Deduplicate interfaces | |||
2018-07-24 | Merge pull request #810 from Subv/r16 | bunnei | |
GPU: Implemented the R16 and R16F texture formats. | |||
2018-07-24 | Merge pull request #805 from lioncash/sign | bunnei | |
svc: Resolve sign comparison warnings in WaitSynchronization() | |||
2018-07-24 | GPU: Remove the assert that required the CODE_ADDRESS to be 0. | Subv | |
Games usually just leave it at 0 but nouveau sets it to something else. This already works fine, the assert is useless. | |||
2018-07-24 | GPU: Implemented the R16 and R16F texture formats. | Subv | |
2018-07-24 | gl_rasterizer: Replace magic number with GL_INVALID_INDEX in SetupConstBuffers() | Lioncash | |
This is just the named constant that OpenGL provides, so we can use that instead of using a literal -1 | |||
2018-07-24 | gl_rasterizer: Use std::string_view instead of std::string when checking for ↵ | Lioncash | |
extensions We can avoid heap allocations here by just using a std::string_view instead of performing unnecessary copying of the string data. | |||
2018-07-24 | gl_rasterizer: Use in-class member initializers where applicable | Lioncash | |
We can just assign to the members directly in these cases. | |||
2018-07-24 | deconstructed_rom_directory: Remove unused FindRomFS() function | Lioncash | |
2018-07-24 | friend: Add friend:m, friend:s, and friend:v services | Lioncash | |
Given we already have friend:a and friend:u, we should add the remaining services as well. | |||
2018-07-24 | friend/interface: Add missing CreateDaemonSuspendSessionService() to the ↵ | Lioncash | |
function handler table | |||
2018-07-24 | friend: Deduplicate interfaces | Lioncash | |
2018-07-24 | svc: Resolve sign comparison warnings in WaitSynchronization() | Lioncash | |
The loop's induction variable was signed, but we were comparing against an unsigned variable. | |||
2018-07-24 | svc: Log parameters in SetMemoryAttribute() | Lioncash | |
Provides slightly more context than only logging out the address value. | |||
2018-07-24 | Merge pull request #798 from lioncash/const | bunnei | |
arm_dynarmic: Make MakeJit() a const member function | |||
2018-07-24 | Merge pull request #797 from lioncash/explicit | bunnei | |
core: Make converting constructors explicit where applicable | |||
2018-07-24 | Merge pull request #795 from lioncash/decl | bunnei | |
apm/interface: Remove redundant declaration of InstallInterfaces() | |||
2018-07-24 | Merge pull request #799 from Subv/tex_r32f | bunnei | |
GPU: Implement texture format R32F. | |||
2018-07-24 | Merge pull request #794 from lioncash/ref | bunnei | |
mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference | |||
2018-07-24 | Merge pull request #796 from bunnei/gl-uint | bunnei | |
maxwell_to_gl: Implement VertexAttribute::Type::UnsignedInt. | |||
2018-07-24 | Merge pull request #789 from bunnei/tex-wrap-border | bunnei | |
maxwell_to_gl: Implement Texture::WrapMode::Border. | |||
2018-07-24 | time: Simplify interface creation | Lioncash | |
We can use one instance of the interface instead of duplicating code. | |||
2018-07-24 | core_timing: Split off utility functions into core_timing_util | MerryMage | |
2018-07-24 | CMakeLists: Sort filenames | MerryMage | |
2018-07-24 | wait_tree: Silence warning about all code paths not returning a value | Lioncash | |
If code execution hits this spot, something has gone very wrong, so mark the path as unreachable. This silences a warning on MSVC. | |||
2018-07-24 | set_sys: Implement SetColorSetId() | Lioncash | |
2018-07-24 | ipc_helper: Add helper member function for popping enum values to RequestParser | Lioncash | |
2018-07-23 | Merge pull request #793 from lioncash/priv | bunnei | |
ipc_helpers: Make member variables of ResponseBuilder private | |||
2018-07-23 | Merge pull request #785 from lioncash/fs | bunnei | |
partition_filesystem: Use std::move where applicable | |||
2018-07-23 | gl_rasterizer: Implement texture border color. | bunnei | |
2018-07-23 | maxwell_to_gl: Implement Texture::WrapMode::Border. | bunnei | |
2018-07-23 | GPU: Implement texture format R32F. | Subv | |
2018-07-23 | arm_dynarmic: Make MakeJit() a const member function | Lioncash | |
This functions doesn't modify instance state, so it can be a made a const member function. | |||
2018-07-23 | core: Make converting constructors explicit where applicable | Lioncash | |
Avoids unwanted implicit conversions. Thankfully, given the large amount of cleanup in past PRs, only this tiny amount is left over to cover. |