summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-10-30Improve OpenGL state handlingRodolfo Bogado
2018-10-30Merge pull request #1624 from lioncash/boostbunnei
general: Remove unused boost inclusions where applicable
2018-10-30Merge pull request #1595 from FreddyFunk/castbunnei
configure_system: Fix compiler warning
2018-10-30general: Remove unused boost inclusions where applicableLioncash
Cleans up unused includes and trims off some dependencies on externals.
2018-10-30global: Use std::optional instead of boost::optional (#1578)Frederic L
* 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
2018-10-29Merge pull request #1621 from lioncash/ipcbunnei
hle_ipc: Make GetDomainMessageHeader return a regular pointer
2018-10-29hle_ipc: Add member function for querying the existence of a domain headerLioncash
Gets rid of the need to call the getter and then check for null.
2018-10-29hle_ipc: Make GetDomainMessageHeader return a regular pointerLioncash
Nothing requires the shared owner ship here, so we can just return a plain pointer.
2018-10-29Merge pull request #1611 from lioncash/constbunnei
core: Add missing const variants of getters for the System class
2018-10-29Merge pull request #1580 from FernandoS27/mm-implbunnei
Implemented Mipmaps
2018-10-29Merge pull request #1617 from FearlessTobi/fix-stretch-delaybunnei
time_stretch: Switch to values of Citra
2018-10-29Merge pull request #1613 from ReinUsesLisp/gl-utilsbunnei
video_core: Move OpenGL specific utils to its renderer
2018-10-29time_stretch: Switch to values of CitrafearlessTobi
2018-10-28Merge pull request #1610 from slashiee/dxt1-alphabunnei
renderer_opengl: Enable alpha channel for DXT1 texture format
2018-10-28video_core: Move OpenGL specific utils to its rendererReinUsesLisp
2018-10-28renderer_opengl: Correct bpp value for ASTC_2D_8X5_SRGBRodolfo Bogado
2018-10-28Fixed black textures, pixelation and we no longer require to auto-generate ↵FernandoS27
mipmaps
2018-10-28Fixed mipmap block autosizing algorithmFernandoS27
2018-10-28Fixed Invalid Image size and Mipmap calculationFernandoS27
2018-10-28Fixed Block Resizing algorithm and Clang FormatFernandoS27
2018-10-28Implement Mip FilterFernandoS27
2018-10-28Zero out memory region of recreated surface before flushingFernandoS27
2018-10-28Implement MipmapsFernandoS27
2018-10-28core: Make System references const where applicableLioncash
2018-10-28core: Add missing const variants of getters for the System classLioncash
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.
2018-10-28Enable alpha channel for DXT1 texture formatMichael
2018-10-28configure_system: Fix compiler warningFrederic Laing
2018-10-28Correct bpp value for ASTC_2D_8X5Tobias
2018-10-28Merge pull request #1601 from FernandoS27/shader-precisionbunnei
Improved Shader accuracy on Vertex and Geometry Shaders.
2018-10-28Refactor precise usage and add FMNMX, MUFU, FMUL32 and FADD332FernandoS27
2018-10-28Merge pull request #1593 from lioncash/svcbunnei
svc: Implement svcGetInfo command 0xF0000002
2018-10-28file_sys/patch_manager: Remove unnecessary if-statements (#1586)Frederic L
* remove unnecessary if-statements * Addressed feedback
2018-10-28Merge pull request #1598 from DeeJayBro/delete-directorybunnei
service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive
2018-10-28Merge pull request #1600 from DarkLordZach/nsp-secondary-loader-fixbunnei
loader/nsp: Move secondary loader initialization to constructor
2018-10-28Implement sRGB Support, including workarounds for nvidia driver issues and ↵Rodolfo Bogado
QT sRGB support
2018-10-27Merge pull request #1602 from DarkLordZach/key-derivation-isxdigitbunnei
key_manager: Use isxdigit instead of isdigit when reading key file
2018-10-27key_manager: Use isxdigit instead of isdigit when reading key fileZach Hilman
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.
2018-10-27Merge pull request #1597 from lioncash/errorbunnei
configure_system: Indicate when filesystem operations fail
2018-10-27Merge pull request #1594 from FreddyFunk/static-castbunnei
gl_rasterizer_cache: Fix compiler warning
2018-10-27Improved Shader accuracy on Vertex and Geometry Shaders with FFMA, FMUL and FADDFernandoS27
2018-10-27Merge pull request #1596 from FearlessTobi/port-4367bunnei
Port citra-emu/citra#4367: "cubeb_sink: ignore null-name device when selecting"
2018-10-27Merge pull request #1592 from bunnei/prim-restartbunnei
gl_rasterizer: Implement primitive restart.
2018-10-27Implement Default Block Height for each formatFernandoS27
2018-10-27loader/nsp: Move secondary loader initialization to constructorZach Hilman
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
2018-10-27gl_rasterizer_cache: Fix compiler warningFrederic Laing
2018-10-27service/filesystem: Add DirectoryDelete & DirectoryDeleteRecursivelyDeeJayBro
2018-10-27configure_system: Make GetIcon() return the scaled 64x64 iconLioncash
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.
2018-10-27configure_system: Move entry formatting for the user account list entries to ↵Lioncash
its own function Avoids the need to duplicate this all over the place, and makes it translator-friendly across the board.
2018-10-27configure_system: Display errors to the user if file operations fail when ↵Lioncash
setting user images We should display an error to the user if setting a user image for an account fails, rather than continuing onwards.
2018-10-27cubeb_sink: ignore null-name device when selectingWeiyi Wang
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