summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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()
2018-07-23Merge pull request #782 from lioncash/filebunnei
loader/nro: Minor changes
2018-07-23gl_shader_decompiler: Implement shader instruction TLDS.bunnei
2018-07-23Merge pull request #781 from lioncash/declbunnei
gl_shader_decompiler: Simplify GetCommonDeclarations()
2018-07-23Merge pull request #780 from lioncash/movebunnei
vi: Minor changes
2018-07-23Merge pull request #779 from lioncash/sharedbunnei
hle: Remove unused config_mem and shared_page source files
2018-07-23gl_rasterizer_cache: Implement RenderTargetFormat RG32_FLOAT.bunnei
2018-07-23gl_rasterizer_cache: Implement RenderTargetFormat RGBA32_FLOAT.bunnei
2018-07-23gl_rasterizer_cache: Implement RenderTargetFormat BGRA8_UNORM.bunnei
2018-07-23gl_rasterizer_cache: Add missing log statements.bunnei
2018-07-23gl_shader_decompiler: Print instruction value in shader comments.bunnei
2018-07-23gl_shader_decompiler: Check if SetRegister result is ZeroIndex.bunnei
2018-07-23exclusive_monitor: Use consistent type alias for u64Lioncash
Uses the same type aliases we use for virtual addresses, and converts one lingering usage of std::array<uint64_t, 2> to u128 for consistency.
2018-07-23partition_filesystem: Use std::move where applicableLioncash
Avoids copying a std::string instance and avoids unnecessary atomic reference count incrementing and decrementing.
2018-07-23loader: Remove unnecessary constructor call in IdentifyFile()Lioncash
RealVfsFile inherits from VfsFile, the instance from std::make_shared is already compatible with the function argument type, making the copy constructor call unnecessary.
2018-07-23linker: Remove unused parameter from WriteRelocations()Lioncash
is_jump_relocation is never used within the function, so we can just remove it.
2018-07-23nro: Replace inclusion with a forward declarationLioncash
It's sufficient to use a forward declaration instead of a direct inclusion here.
2018-07-23nro: Make bracing consistentLioncash
Makes the code more uniform, and also braces cases where the body of an unbraced conditional travels more than one line.
2018-07-23nro: Make constructor explicitLioncash
Makes it consistent with the other Apploader constructors, and prevents implicit conversions.
2018-07-23nro: Remove unused forward declarationLioncash
This isn't used anywhere in the header.
2018-07-23Merge pull request #695 from DarkLordZach/nro-assetbunnei
NRO Assets and NACP File Format
2018-07-23gl_shader_decompiler: Simplify GetCommonDeclarations()Lioncash