summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_shader_disk_cache.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* gl_shader_disk_cache: Properly ignore existing cacheReinUsesLisp2019-10-061-4/+1
| | | | | Previously old entries where appended to the file even if the shader cache was ignored at boot. Address that issue.
* gl_rasterizer: Implement compute shadersReinUsesLisp2019-07-151-27/+6
|
* gl_shader_disk_cache: Address feedbackReinUsesLisp2019-06-241-2/+3
|
* gl_shader_decompiler: Implement image binding settingsReinUsesLisp2019-06-211-15/+9
|
* gl_rasterizer: Track texture buffer usageReinUsesLisp2019-06-211-13/+40
|
* gl_shader_cache: Fix clang strict standard build issuesReinUsesLisp2019-05-211-1/+6
|
* gl_shader_disk_cache: in-class initialize virtual file offset of ShaderDiskCacheOpenGLLioncash2019-05-191-3/+2
| | | | | | Given the offset is assigned a fixed value in the constructor, we can just assign it directly and get rid of the need to write the name of the variable again in the constructor initializer list.
* gl_shader_disk_cache: Default ShaderDiskCacheOpenGL's destructor in the cpp fileLioncash2019-05-191-0/+1
| | | | | | Given the disk shader cache contains non-trivial types, we should default it in the cpp file in order to prevent inlining of the complex destruction logic.
* gl_shader_disk_cache: Make hash specializations noexceptLioncash2019-05-191-2/+2
| | | | | | The standard library expects hash specializations that don't throw exceptions. Make this explicit in the type to allow selection of better code paths if possible in implementations.
* gl_shader_disk_cache: Special-case boolean handlingLioncash2019-05-191-1/+17
| | | | | | | | | | | | | Booleans don't have a guaranteed size, but we still want to have them integrate into the disk cache system without needing to actually use a different type. We can do this by supplying non-template overloads for the bool type. Non-template overloads always have precedence during function resolution, so this is safe to provide. This gets rid of the need to smatter ternary conditionals, as well as the need to use u8 types to store the value in.
* gl_shader_disk_cache: Use VectorVfsFile for the virtual precompiled shader cache fileunknown2019-04-231-8/+45
|
* gl_shader_disk_cache: Remove per shader compressionunknown2019-04-231-1/+0
|
* gl_shader_disk_cache: Use unordered containersReinUsesLisp2019-02-071-37/+45
|
* gl_shader_disk_cache: Pass core system as argument and guard against games without title idsReinUsesLisp2019-02-071-1/+12
|
* gl_shader_disk_cache: Guard reads and writes against failureReinUsesLisp2019-02-071-6/+24
|
* gl_shader_disk_cache: Address miscellaneous feedbackReinUsesLisp2019-02-071-25/+29
|
* gl_shader_disk_cache: Pass return values returning instead of by parametersReinUsesLisp2019-02-071-7/+10
|
* gl_shader_disk_cache: Save GLSL and entries into the precompiled fileReinUsesLisp2019-02-071-7/+14
|
* gl_shader_disk_cache: Add transferable cache invalidationReinUsesLisp2019-02-071-0/+3
|
* gl_shader_disk_cache: Add precompiled loadReinUsesLisp2019-02-071-0/+6
|
* gl_shader_disk_cache: Add precompiled saveReinUsesLisp2019-02-071-0/+14
|
* gl_shader_disk_cache: Add transferable loadReinUsesLisp2019-02-071-0/+4
|
* gl_shader_disk_cache: Add transferable storesReinUsesLisp2019-02-071-0/+102
|
* gl_shader_disk_cache: Add ShaderDiskCacheOpenGL class and helpersReinUsesLisp2019-02-071-0/+24
|
* gl_shader_disk_cache: Add file and move BaseBindings declarationReinUsesLisp2019-02-071-0/+41