summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Integrate SMAALiam2022-12-081-0/+7
| | | | | Co-authored-by: goldenx86 <goldenx86@users.noreply.github.com> Co-authored-by: BreadFish64 <breadfish64@users.noreply.github.com>
* chore: make yuzu REUSE compliantAndrea Pappacoda2022-07-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
* OpenGL: fix S8D24 to ABGR8 conversionsLiam2022-04-071-0/+1
|
* Address review commentsLiam2022-03-161-1/+1
|
* Vulkan: convert S8D24 <-> ABGR8Liam2022-03-161-0/+1
|
* TextureCache: Simplify blitting of D24S8 formats and fix bugs.Fernando Sahmkow2021-11-221-4/+0
|
* TextureCache: Add R16G16 to D24S8 converter.Fernando Sahmkow2021-11-201-0/+1
|
* TextureCache: Add B10G11R11 to D24S8 converter.Fernando Sahmkow2021-11-191-0/+1
|
* TextureCache: Implement additional D24S8 convertions.Fernando Sahmkow2021-11-191-0/+2
|
* Vulkan: implement D24S8 <-> RGBA8 convertions.Fernando Sahmkow2021-11-191-0/+2
|
* Presentation: Only use FP16 in scaling shaders on supported devices in VulkanMarshall Mohror2021-11-161-3/+7
|
* OpenGL: Implement FXAAMarshall Mohror2021-11-161-0/+2
|
* VideoCore: Add gaussian filtering.FernandoS272021-11-161-0/+1
|
* vulkan: Implement FidelityFX Super ResolutionMarshall Mohror2021-11-161-2/+15
|
* Renderers: Unify post processing filter shadersameerj2021-11-161-4/+2
|
* Renderer: Implement Bicubic and ScaleForce filters.Fernando Sahmkow2021-11-161-0/+4
|
* host_shaders: Remove opengl_copy_bgra.compameerj2021-09-171-1/+0
|
* cmake: Fix find_program usage for 3.15lat9nq2021-06-131-1/+4
| | | | | | | | | | yuzu requires CMake 3.15 yet find_program was using REQUIRED, which is only available on 3.18 and later. Instead, we check for "<VAR>-NOTFOUND". In addition, check for additional requirements before building libusb or FFmpeg with autotools. Otherwise, CMake configuration will pass yet compilation will fail.
* host_shaders: Modify shader cmake integration to allow for larger shadersameerj2021-03-131-0/+1
| | | | using a raw string to encapsulate the entire shader code limits us to shaders of size less than 2KB. This change overcomes this limitation.
* renderer_opengl: Swizzle BGR textures on copyameerj2021-03-041-0/+1
| | | | | | OpenGL does not natively support BGR internal formats, which causes many BGR textures to render incorrectly, with Red and Blue channels swapped. This commit aims to address this by swizzling the blue and red channels on texture copies when a BGR format is encountered.
* video_core: Reimplement the buffer cacheReinUsesLisp2021-02-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Reimplement the buffer cache using cached bindings and page level granularity for modification tracking. This also drops the usage of shared pointers and virtual functions from the cache. - Bindings are cached, allowing to skip work when the game changes few bits between draws. - OpenGL Assembly shaders no longer copy when a region has been modified from the GPU to emulate constant buffers, instead GL_EXT_memory_object is used to alias sub-buffers within the same allocation. - OpenGL Assembly shaders stream constant buffer data using glProgramBufferParametersIuivNV, from NV_parameter_buffer_object. In theory this should save one hash table resolve inside the driver compared to glBufferSubData. - A new OpenGL stream buffer is implemented based on fences for drivers that are not Nvidia's proprietary, due to their low performance on partial glBufferSubData calls synchronized with 3D rendering (that some games use a lot). - Most optimizations are shared between APIs now, allowing Vulkan to cache more bindings than before, skipping unnecesarry work. This commit adds the necessary infrastructure to use Vulkan object from OpenGL. Overall, it improves performance and fixes some bugs present on the old cache. There are still some edge cases hit by some games that harm performance on some vendors, this are planned to be fixed in later commits.
* video_core: host_shaders: Don't pass --quiet to glslangValidator if unavailablelat9nq2021-02-021-1/+19
| | | | | Prevents CMake from calling `glslangValidator` with `--quiet` when it is not available, i.e. on older downstream versions from Ubuntu.
* host_shaders/cmake: Pass --quiet to glslang to keep it quietReinUsesLisp2021-01-241-1/+1
| | | | Silences noisy builds on toolchains.
* host_shaders: Add Vulkan assembler compute shadersReinUsesLisp2020-12-301-0/+3
|
* host_shaders: Add helper to blit depth stencil fragment shaderReinUsesLisp2020-12-301-0/+1
|
* host_shaders: Add texture color blit fragment shaderReinUsesLisp2020-12-301-0/+1
|
* host_shaders: Add shaders to present to the swapchainReinUsesLisp2020-12-301-0/+2
|
* host_shaders: Add shaders to convert between depth and color imagesReinUsesLisp2020-12-301-0/+2
|
* host_shaders: Add compute shader to copy BC4 as RG32UI to RGBA8ReinUsesLisp2020-12-301-0/+1
|
* host_shaders: Add shader to render a full screen triangleReinUsesLisp2020-12-301-0/+1
|
* host_shaders: Add pitch linear upload compute shaderReinUsesLisp2020-12-301-0/+1
|
* host_shaders: Add block linear upload compute shadersReinUsesLisp2020-12-301-0/+2
|
* video_core/host_shaders: Add support for prebuilt SPIR-V shadersReinUsesLisp2020-12-301-16/+37
| | | | | Add support for building SPIR-V shaders from GLSL and generating headers to include the text of those same GLSL shaders to consume from OpenGL.
* video_core: Fix instances where msbuild always regenerated host shadersReinUsesLisp2020-09-241-12/+5
| | | | | | When HEADER_GENERATOR was included in the DEPENDS section of custom commands, msbuild assumed this was always modified. Changing this file is not common so we can remove it from there.
* video_core/host_shaders: Add CMake integration for string shadersReinUsesLisp2020-08-241-0/+43
Add the necessary CMake code to copy the contents in a string source shader (GLSL or GLASM) to a header file then consumed by video_core files. This allows editting GLSL in its own files without having to maintain them in source files. For now, only OpenGL presentation shaders are moved, but we can add GLASM presentation shaders and static SPIR-V generation through glslangValidator in the future.