summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-07-25Merge pull request #816 from Subv/z32_s8bunnei
GPU: Implemented the Z32_S8_X24 depth buffer format.
2018-07-25Merge pull request #815 from Subv/z32f_texbunnei
GPU: Allow using Z32 as a texture format.
2018-07-25Merge pull request #814 from Subv/rt_r8bunnei
GPU: Allow the usage of R8 as a render target format.
2018-07-24Merge pull request #809 from lioncash/rasterizerbunnei
gl_rasterizer: Minor cleanup
2018-07-24Merge pull request #811 from Subv/code_address_assertbunnei
GPU: Remove the assert that required the CODE_ADDRESS to be 0.
2018-07-24GPU: Implemented the Z32_S8_X24 depth buffer format.Subv
2018-07-24GPU: Allow using Z32 as a texture format.Subv
2018-07-24GPU: Allow the usage of R8 as a render target format.Subv
2018-07-24Merge pull request #806 from lioncash/friendbunnei
friend: Deduplicate interfaces
2018-07-24Merge pull request #810 from Subv/r16bunnei
GPU: Implemented the R16 and R16F texture formats.
2018-07-24Merge pull request #805 from lioncash/signbunnei
svc: Resolve sign comparison warnings in WaitSynchronization()
2018-07-24GPU: 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-24GPU: Implemented the R16 and R16F texture formats.Subv
2018-07-24gl_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-24gl_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-24gl_rasterizer: Use in-class member initializers where applicableLioncash
We can just assign to the members directly in these cases.
2018-07-24deconstructed_rom_directory: Remove unused FindRomFS() functionLioncash
2018-07-24friend: Add friend:m, friend:s, and friend:v servicesLioncash
Given we already have friend:a and friend:u, we should add the remaining services as well.
2018-07-24friend/interface: Add missing CreateDaemonSuspendSessionService() to the ↵Lioncash
function handler table
2018-07-24friend: Deduplicate interfacesLioncash
2018-07-24svc: Resolve sign comparison warnings in WaitSynchronization()Lioncash
The loop's induction variable was signed, but we were comparing against an unsigned variable.
2018-07-24Merge pull request #798 from lioncash/constbunnei
arm_dynarmic: Make MakeJit() a const member function
2018-07-24Merge pull request #797 from lioncash/explicitbunnei
core: Make converting constructors explicit where applicable
2018-07-24Merge pull request #795 from lioncash/declbunnei
apm/interface: Remove redundant declaration of InstallInterfaces()
2018-07-24Merge pull request #799 from Subv/tex_r32fbunnei
GPU: Implement texture format R32F.
2018-07-24Merge pull request #794 from lioncash/refbunnei
mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference
2018-07-24Merge pull request #796 from bunnei/gl-uintbunnei
maxwell_to_gl: Implement VertexAttribute::Type::UnsignedInt.
2018-07-24Merge pull request #789 from bunnei/tex-wrap-borderbunnei
maxwell_to_gl: Implement Texture::WrapMode::Border.
2018-07-23Merge pull request #793 from lioncash/privbunnei
ipc_helpers: Make member variables of ResponseBuilder private
2018-07-23Merge pull request #785 from lioncash/fsbunnei
partition_filesystem: Use std::move where applicable
2018-07-23gl_rasterizer: Implement texture border color.bunnei
2018-07-23maxwell_to_gl: Implement Texture::WrapMode::Border.bunnei
2018-07-23GPU: Implement texture format R32F.Subv
2018-07-23arm_dynarmic: Make MakeJit() a const member functionLioncash
This functions doesn't modify instance state, so it can be a made a const member function.
2018-07-23core: Make converting constructors explicit where applicableLioncash
Avoids unwanted implicit conversions. Thankfully, given the large amount of cleanup in past PRs, only this tiny amount is left over to cover.
2018-07-23Merge pull request #791 from bunnei/rg32f-rgba32f-bgra8bunnei
gl_rasterizer_cache: Implement formats BGRA8_UNORM/RGBA32_FLOAT/RG32_FLOAT
2018-07-23maxwell_to_gl: Implement VertexAttribute::Type::UnsignedInt.bunnei
2018-07-23Merge pull request #792 from lioncash/retvalbunnei
gl_shader_decompiler: Correct return value of WriteTexsInstruction()
2018-07-23apm/interface: Remove redundant declaration of InstallInterfaces()Lioncash
This is already declared in apm/apm.h
2018-07-23mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by referenceLioncash
The pointed to thread's members are simply observed in this case, so we don't need to copy it here.
2018-07-23Merge pull request #790 from bunnei/shader-print-instrbunnei
gl_shader_decompiler: Print instruction value in shader comments.
2018-07-23Merge pull request #788 from bunnei/shader-check-zerobunnei
gl_shader_decompiler: Check if SetRegister result is ZeroIndex.
2018-07-23VFS Regression and Accuracy Fixes (#776)Zach Hilman
* Regression and Mode Fixes * Review Fixes * string_view correction * Add operator& for FileSys::Mode * Return std::string from SanitizePath * Farming Simulator Fix * Use != With mode operator&
2018-07-23hle_ipc: Make constructors explicit where applicableLioncash
2018-07-23gl_shader_decompiler: Correct return value of WriteTexsInstruction()Lioncash
This should be returning void, not a std::string
2018-07-23ipc_helpers: Make member variables of ResponseBuilder privateLioncash
These aren't used externally at all, so they can be made private.
2018-07-23Merge pull request #787 from bunnei/tldsbunnei
gl_shader_decompiler: Implement shader instruction TLDS.
2018-07-23Merge pull request #786 from lioncash/exclusivebunnei
exclusive_monitor: Use consistent type alias for u64
2018-07-23Merge pull request #784 from lioncash/loaderbunnei
loader: Minor cleanup
2018-07-23Merge pull request #783 from lioncash/linkerbunnei
linker: Remove unused parameter from WriteRelocations()