aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/renderer_opengl
AgeCommit message (Collapse)Author
2023-12-03renderer_opengl: remove srgb conversion logicLiam
2023-12-03renderer_vulkan: do not recreate swapchain for srgbLiam
2023-12-03Merge pull request #12094 from ameerj/gl-buffer-cache-batch-vtxliamwhite
gl_buffer_cache: Batch vertex/tfb buffer binding
2023-12-01Merge pull request #12056 from ameerj/opengl-neglectliamwhite
OpenGL: Implement async downloads in buffer and texture caches
2023-11-29Merge pull request #12154 from liamwhite/more-driversliamwhite
vulkan_device: add names for more driverID enumeration values
2023-11-26Merge branch 'master' into ssbo-alignAmeer J
2023-11-26Merge pull request #11535 from GPUCode/upload_cmdbufFernando S
renderer_vulkan: Introduce separate cmd buffer for uploads
2023-11-24vulkan_device: add names for more driverID enumeration valuesLiam
2023-11-19gl_buffer_cache: Batch vertex/tfb buffer bindingAmeer J
2023-11-18gl_graphics_pipeline: GLASM: Fix transform feedback attribs buffer modeAmeer J
GL_SEPARATE_ATTRIBS only applies when multiple buffers are being used, else GL_INTERLEAVED_ATTRIBS handles the cases for a single buffer with potentially more than one attribute
2023-11-12renderer_vulkan: Introduce separate cmd buffer for uploadsGPUCode
2023-11-12Memory: Fix invalidation handling from the CPU/ServicesFernando Sahmkow
2023-10-31shader_recompiler: Align SSBO offsets in GlobalMemory functionsAmeer J
2023-10-31shader_recompiler: Align SSBO offsets to meet host requirementsAmeer J
Co-Authored-By: Billy Laws <blaws05@gmail.com>
2023-10-12Merge pull request #11751 from Kelebek1/transition_msaa_imageliamwhite
Transition MSAA images to general layout without uploading data
2023-10-11Transition MSAA images to general layout without uploading dataKelebek1
2023-10-11Do not set rescaled flag when rescaling is disabledKelebek1
2023-10-06Implement X8_D24 formatKelebek1
2023-09-23Query Cache: address issuesFernando Sahmkow
2023-09-23Query Cachge: Fully rework Vulkan's query cacheFernando Sahmkow
2023-08-27VideoCore: Implement DispatchIndirectFernando Sahmkow
2023-08-21Merge pull request #11149 from ameerj/astc-perf-prodliamwhite
host_shaders: ASTC compute shader optimizations
2023-08-18Merge pull request #11278 from Kelebek1/dma_syncliamwhite
Mark accelerated DMA destination buffers and images as GPU-modified
2023-08-14Merge pull request #11282 from ameerj/glasm-xfbliamwhite
gl_graphics_pipeline: GLASM: Fix transform feedback with multiple buffers
2023-08-14Merge pull request #11283 from ameerj/glasm-pipeline-detectionliamwhite
gl_graphics_pipeline: Fix GLASM storage buffer detection
2023-08-13gl_texture_cache: Enable async downloadsAmeer J
2023-08-13gl_buffer_cache: Enable async downloadsAmeer J
2023-08-13gl_staging_buffer_pool: Refactor allocation variables into a structAmeer J
2023-08-13gl_graphics_pipeline: Fix GLASM storage buffer detectionAmeer J
2023-08-13gl_graphics_pipeline: GLASM: Fix transform feedback with multiple buffersAmeer J
2023-08-13Mark accelerted DMA destination buffers and images as GPU-modifiedKelebek1
2023-08-07Merge pull request #11216 from lat9nq/no-mesa-astcliamwhite
gl_device: Detect Mesa to disable their ASTC
2023-08-06Revert "HACK: Avoid swizzling and reuploading ASTC image every frame"Ameer J
This reverts commit b18c1fb1bbbcc235e9a1cbbb2704fed2e5895e61.
2023-08-06HACK: Avoid swizzling and reuploading ASTC image every frameAmeer J
2023-08-06glAmeer J
2023-08-05gl_device: Filter more specifically for slow ASTClat9nq
Adds a check to find if the renderer is Intel DG (i.e. DG2). gl_device: Detect Mesa to disable their ASTC In our testing, our own ASTC decoder has shown itself to perform faster than the included one from the driver. Disable theirs when Mesa is detected. Mesa detection depends on the vendor string. Some drivers never appear outside of *nix contexts, so only check those in the *nix context. gl_device: Internalize Intel DG detection
2023-08-03Fix shader dumps with nvdisasmKelebek1
skip fragment shaders when rasterizer is disabled initialize env_ptrs
2023-07-21settings,opengl,yuzu-qt: Fix AA, Filter maximumslat9nq
The new enum macros don't support setting values directly. For LastAA and LastFilter, this means we need a simpler approach to loop around the toggle in the frontend...
2023-07-21settings,general: Rename non-confirming enumslat9nq
2023-07-21settings,video_core: Consolidate ASTC decoding optionslat9nq
Just puts them all neatly into one place.
2023-07-18general: Silence -Wshadow{,-uncaptured-local} warningslat9nq
These occur in the latest commits in LLVM Clang.
2023-06-28Memory Tracking: Optimize tracking to only use atomic writes when contested ↵Fernando Sahmkow
with the host GPU
2023-06-25OpenGL: Limit lmem warmup to NVIDIAameerj
:frog:
2023-06-25shaders: Track local memory usageameerj
2023-06-25OpenGL: Add Local Memory warmup shaderameerj
2023-06-22Remove memory allocations in some hot pathsKelebek1
2023-06-18Merge pull request #10744 from Wollnashorn/af-for-allFernando S
video_core: Improved anisotropic filtering heuristics
2023-06-16video_core: Use sampler IDs instead pointers in the pipeline configWollnashorn
The previous approach of storing pointers returned by `GetGraphicsSampler`/`GetComputeSampler` caused UB, as these functions can cause reallocation of the sampler slot vector and therefore invalidate the pointers
2023-06-15video_core: Fallback to default anisotropy instead to 1x anisotropyWollnashorn
2023-06-15video_core: Fixed compilation errors because of name shadowingWollnashorn