summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1624 from lioncash/boostGravatar bunnei2018-10-303-4/+0
|\ | | | | general: Remove unused boost inclusions where applicable
| * general: Remove unused boost inclusions where applicableGravatar Lioncash2018-10-303-4/+0
| | | | | | | | Cleans up unused includes and trims off some dependencies on externals.
* | Merge pull request #1595 from FreddyFunk/castGravatar bunnei2018-10-301-1/+1
|\ \ | |/ |/| configure_system: Fix compiler warning
| * configure_system: Fix compiler warningGravatar Frederic Laing2018-10-281-1/+1
| |
* | global: Use std::optional instead of boost::optional (#1578)Gravatar Frederic L2018-10-3049-266/+274
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build
* | Merge pull request #1621 from lioncash/ipcGravatar bunnei2018-10-293-6/+9
|\ \ | | | | | | hle_ipc: Make GetDomainMessageHeader return a regular pointer
| * | hle_ipc: Add member function for querying the existence of a domain headerGravatar Lioncash2018-10-293-3/+6
| | | | | | | | | | | | Gets rid of the need to call the getter and then check for null.
| * | hle_ipc: Make GetDomainMessageHeader return a regular pointerGravatar Lioncash2018-10-292-3/+3
| | | | | | | | | | | | | | | Nothing requires the shared owner ship here, so we can just return a plain pointer.
* | | Merge pull request #1611 from lioncash/constGravatar bunnei2018-10-294-13/+52
|\ \ \ | | | | | | | | core: Add missing const variants of getters for the System class
| * | | core: Make System references const where applicableGravatar Lioncash2018-10-282-3/+3
| | | |
| * | | core: Add missing const variants of getters for the System classGravatar Lioncash2018-10-282-10/+49
| |/ / | | | | | | | | | | | | | | | Many of the Current<Thing> getters (as well as a few others) were missing const qualified variants, which makes it a pain to retrieve certain things from const qualified references to System.
* | | Merge pull request #1580 from FernandoS27/mm-implGravatar bunnei2018-10-296-109/+254
|\ \ \ | | | | | | | | Implemented Mipmaps
| * | | Fixed black textures, pixelation and we no longer require to auto-generate ↵Gravatar FernandoS272018-10-281-14/+2
| | | | | | | | | | | | | | | | mipmaps
| * | | Fixed mipmap block autosizing algorithmGravatar FernandoS272018-10-283-13/+25
| | | |
| * | | Fixed Invalid Image size and Mipmap calculationGravatar FernandoS272018-10-281-4/+7
| | | |
| * | | Fixed Block Resizing algorithm and Clang FormatGravatar FernandoS272018-10-283-12/+19
| | | |
| * | | Implement Mip FilterGravatar FernandoS272018-10-284-10/+33
| | | |
| * | | Zero out memory region of recreated surface before flushingGravatar FernandoS272018-10-281-0/+2
| | | |
| * | | Implement MipmapsGravatar FernandoS272018-10-282-101/+211
| |/ /
* | | Merge pull request #1617 from FearlessTobi/fix-stretch-delayGravatar bunnei2018-10-291-3/+3
|\ \ \ | | | | | | | | time_stretch: Switch to values of Citra
| * | | time_stretch: Switch to values of CitraGravatar fearlessTobi2018-10-291-3/+3
| | | |
* | | | Merge pull request #1613 from ReinUsesLisp/gl-utilsGravatar bunnei2018-10-296-30/+61
|\ \ \ \ | |/ / / |/| | | video_core: Move OpenGL specific utils to its renderer
| * | | video_core: Move OpenGL specific utils to its rendererGravatar ReinUsesLisp2018-10-286-30/+61
| |/ /
* | | Merge pull request #1610 from slashiee/dxt1-alphaGravatar bunnei2018-10-281-2/+2
|\ \ \ | | | | | | | | renderer_opengl: Enable alpha channel for DXT1 texture format
| * | | Enable alpha channel for DXT1 texture formatGravatar Michael2018-10-281-2/+2
| |/ /
* / / renderer_opengl: Correct bpp value for ASTC_2D_8X5_SRGBGravatar Rodolfo Bogado2018-10-281-1/+1
|/ /
* / Correct bpp value for ASTC_2D_8X5Gravatar Tobias2018-10-281-1/+1
|/
* Merge pull request #1601 from FernandoS27/shader-precisionGravatar bunnei2018-10-281-20/+35
|\ | | | | Improved Shader accuracy on Vertex and Geometry Shaders.
| * Refactor precise usage and add FMNMX, MUFU, FMUL32 and FADD332Gravatar FernandoS272018-10-282-74/+37
| |
| * Improved Shader accuracy on Vertex and Geometry Shaders with FFMA, FMUL and FADDGravatar FernandoS272018-10-272-6/+58
| |
* | Merge pull request #1593 from lioncash/svcGravatar bunnei2018-10-286-35/+128
|\ \ | | | | | | svc: Implement svcGetInfo command 0xF0000002
| * | svc: Localize the GetInfo enum class to the function itselfGravatar Lioncash2018-10-262-32/+31
| | | | | | | | | | | | Nothing from this enum is intended to be used outside of this function.
| * | svc: Implement svcGetInfo command 0xF0000002Gravatar Lioncash2018-10-266-4/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This retrieves: if (curr_thread == handle_thread) { result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks); } else if (curr_thread == handle_thread && sub_id == current_core_index) { result = hardware_tick_count - last_context_switch_ticks; }
* | | file_sys/patch_manager: Remove unnecessary if-statements (#1586)Gravatar Frederic L2018-10-281-7/+6
| | | | | | | | | | | | | | | | | | * remove unnecessary if-statements * Addressed feedback
* | | Merge pull request #1598 from DeeJayBro/delete-directoryGravatar bunnei2018-10-281-2/+26
|\ \ \ | | | | | | | | service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive
| * | | service/filesystem: Add DirectoryDelete & DirectoryDeleteRecursivelyGravatar DeeJayBro2018-10-271-2/+26
| |/ /
* | | Merge pull request #1600 from DarkLordZach/nsp-secondary-loader-fixGravatar bunnei2018-10-281-17/+20
|\ \ \ | | | | | | | | loader/nsp: Move secondary loader initialization to constructor
| * | | loader/nsp: Move secondary loader initialization to constructorGravatar Zach Hilman2018-10-271-17/+20
| |/ / | | | | | | | | | Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
* | | Implement sRGB Support, including workarounds for nvidia driver issues and ↵Gravatar Rodolfo Bogado2018-10-288-40/+197
| | | | | | | | | | | | QT sRGB support
* | | Merge pull request #1602 from DarkLordZach/key-derivation-isxdigitGravatar bunnei2018-10-271-1/+1
|\ \ \ | | | | | | | | key_manager: Use isxdigit instead of isdigit when reading key file
| * | | key_manager: Use isxdigit instead of isdigit when reading key fileGravatar Zach Hilman2018-10-271-1/+1
| |/ / | | | | | | | | | Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit.
* | | Merge pull request #1597 from lioncash/errorGravatar bunnei2018-10-271-51/+70
|\ \ \ | | | | | | | | configure_system: Indicate when filesystem operations fail
| * | | configure_system: Make GetIcon() return the scaled 64x64 iconGravatar Lioncash2018-10-271-14/+7
| | | | | | | | | | | | | | | | | | | | | | | | Avoids the need to put the scaling parameters all over the place for the common case. The only other time scaling is done is to generate the smaller 48x48 image, so this is fine.
| * | | configure_system: Move entry formatting for the user account list entries to ↵Gravatar Lioncash2018-10-271-18/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | its own function Avoids the need to duplicate this all over the place, and makes it translator-friendly across the board.
| * | | configure_system: Display errors to the user if file operations fail when ↵Gravatar Lioncash2018-10-271-24/+46
| |/ / | | | | | | | | | | | | | | | | | | setting user images We should display an error to the user if setting a user image for an account fails, rather than continuing onwards.
* | | Merge pull request #1594 from FreddyFunk/static-castGravatar bunnei2018-10-271-2/+2
|\ \ \ | |_|/ |/| | gl_rasterizer_cache: Fix compiler warning
| * | gl_rasterizer_cache: Fix compiler warningGravatar Frederic Laing2018-10-271-2/+2
| |/
* | Merge pull request #1596 from FearlessTobi/port-4367Gravatar bunnei2018-10-271-1/+2
|\ \ | | | | | | Port citra-emu/citra#4367: "cubeb_sink: ignore null-name device when selecting"
| * | cubeb_sink: ignore null-name device when selectingGravatar Weiyi Wang2018-10-271-1/+2
| |/ | | | | | | We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list
* | Merge pull request #1592 from bunnei/prim-restartGravatar bunnei2018-10-275-1/+40
|\ \ | | | | | | gl_rasterizer: Implement primitive restart.