summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Assert Control Codes GenerationGravatar FernandoS272018-10-302-1/+103
|
* 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.
| * | gl_rasterizer: Implement primitive restart.Gravatar bunnei2018-10-265-1/+40
| |/
* / Implement Default Block Height for each formatGravatar FernandoS272018-10-271-0/+62
|/
* Merge pull request #1533 from FernandoS27/lmemGravatar bunnei2018-10-263-1/+138
|\ | | | | Implemented Shader Local Memory
| * Implemented LD_L and ST_LGravatar FernandoS272018-10-243-12/+112
| |
| * Implement Shader Local MemoryGravatar FernandoS272018-10-241-0/+37
| |
* | Merge pull request #1430 from DarkLordZach/remove-promote-dirGravatar bunnei2018-10-2617-95/+1
|\ \ | | | | | | vfs: Remove InterpretAsDirectory and related functions
| * | vfs: Remove InterpretAsDirectory and related functionsGravatar Zach Hilman2018-10-1917-95/+1
| | | | | | | | | | | | When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
* | | Merge pull request #1591 from bunnei/depth-rangeGravatar bunnei2018-10-266-14/+41
|\ \ \ | | | | | | | | gl_rasterizer: Implement depth range.
| * | | maxwell_3d: Add code for initializing register defaults.Gravatar bunnei2018-10-252-1/+21
| | | |
| * | | gl_rasterizer: Implement depth range.Gravatar bunnei2018-10-254-13/+20
| | | |