DH
cac068dad9
rsx: implement android swapchain
2025-03-10 21:09:27 +01:00
Megamouse
df2f68da44
static analysis: more const ref
2025-03-05 00:12:30 +01:00
Megamouse
a8fc3f5f74
static analysis: more const
2025-03-05 00:12:30 +01:00
kd-11
0aca5e222f
vk: Fix MacOS build
2025-03-01 18:02:32 +03:00
kd-11
b8411a90cd
vk/swapchain: Fix WSI swapchain configuration overrides
2025-03-01 18:02:32 +03:00
kd-11
4e9365f76b
vk/swapchain: Consolidate native swapchain implementation for platforms where it is not implemented
...
- NATIVE swapchain only matters in headless scenarios or where we otherwise cannot access WSI properly.
- It is now optional, with a stub provided when WSI is not available.
2025-03-01 18:02:32 +03:00
kd-11
602fe15641
vk/swapchain: Move platform-specific code to appropriate headers
2025-03-01 18:02:32 +03:00
kd-11
8b2e792d31
vk: Refactor swapchain into separate platform headers
2025-03-01 18:02:32 +03:00
kd-11
aca1cdf0b6
vk: Refactor instance management header
2025-03-01 18:02:32 +03:00
Ivan Podogov
e72cb6801a
Add DXT1-5 decompression on ARM
2025-02-20 14:57:57 +03:00
RipleyTom
cd87a64621
Headers cleanup
2025-02-11 20:38:35 +01:00
kd-11
54e7cb8d9e
vk: Silence spec validation error on NV cards
2025-02-11 02:28:31 +03:00
kd-11
26d85e53a4
vk: Fix extension initialization during device creation
...
- Fix crash when using device_fault extension
- Fix spec violation when using conditional rendering
2025-02-11 02:28:31 +03:00
Aleksey Komarov
c9d39ce7ae
vk: Support panvk, allow creating device without textureCompressionBC
...
panvk supports BC1-BC3 which is all RPCS3 require, support is reported as
false since not all formats are supported
2025-01-04 20:22:05 +02:00
Aleksey Komarov
da84326bd0
vk: Add driver vendor PANVK (Mali GPU on Mesa)
2025-01-04 20:22:05 +02:00
kd-11
15961b353a
vk: Add support for hardware instanced draws
2024-12-29 20:53:05 +03:00
kd-11
43e04f3fc7
Revert "rsx/vk: Implement hardware instancing ( #16466 )"
...
This reverts commit 62701154f1 .
2024-12-29 20:53:05 +03:00
kd-11
62701154f1
rsx/vk: Implement hardware instancing ( #16466 )
...
* rsx: Add code to detect instanced draw commands
* rsx: Add GLSL support for instanced rendering
* rsx: Move draw call related functions to their own class
* rsx: Move more functions from rsx thread to the draw command processor
* rsx: Fix vertex program compiler crash
* vk: Add support for hardware instanced draws
* rsx: Fix instancing bug when indexed addressing is used to read constants
* rsx: Fix rare crash in vertex program decompiler
- This whole decompiler mess needs a rewrite
* rsx: Handle dangling execution barriers
* rsx: Do not use global registers object in logical "firmware" units
* Cosmetic improvements
* rsx: Test vertex program flags on each draw
* rsx: Properly track changes in instancing state
2024-12-29 17:39:47 +02:00
kd-11
b2949f114b
vk: Wrap device fault handler in SEH2
2024-12-25 01:41:23 +03:00
kd-11
e3df7bccac
vk: Selectively enable extended device fault features in logical device creation step
2024-12-25 01:41:23 +03:00
kd-11
2c45438422
vk: Minor improvements to extended fault output
2024-12-25 01:41:23 +03:00
kd-11
4ef1d48c0c
vk: Properly initialize device fault counts structure
2024-12-25 01:41:23 +03:00
kd-11
7b6a672c64
vk: Fix device fault extension loading
2024-12-25 01:41:23 +03:00
kd-11
6d976b5d90
vk: Fix build
2024-12-25 01:41:23 +03:00
kd-11
b44e2d3b30
vk: Add basic support for honeykrisp driver
2024-12-25 01:41:23 +03:00
kd-11
6000e3a47d
vk: Add support for extended device fault information
2024-12-25 01:41:23 +03:00
kd-11
70eca8cb24
vk: Fix border color swizzling behavior
2024-12-21 15:24:15 +03:00
kd-11
6ce1816e3f
rsx: Move the host job management into common code to share with GL
2024-10-23 16:33:44 +03:00
kd-11
497b9ba55b
rsx: Make use of remapped border colors
2024-10-03 15:02:09 +03:00
kd-11
d1d04b1b32
rsx: Implement texture border color decode to remapped rgba
2024-10-03 15:02:09 +03:00
kd-11
826f805902
rsx: Use a proper struct to wrap around channel remap operations
2024-10-03 15:02:09 +03:00
kd-11
3f28f88a35
vk: Add support for explicit border colors
2024-10-03 15:02:09 +03:00
Megamouse
3b36df48e9
Vk/Gl/Overlays: Do not blend the alpha channel when rendering overlays
...
When blending a source pixel with alpha less than 1 onto a texture, we will end up having even less alpha than before.
This can lead to ugly "holes" in the overlays, especially on the edges of glyphs with smooth fonts for example.
We can fix this by only blending the RGB values while keeping the destination's alpha value.
I haven't really seen this happen in RPCS3, but it's better to be safe than sorry.
2024-08-28 01:19:15 +03:00
kd-11
296c931d55
Fix v3dv workaround
2024-08-24 02:07:00 +03:00
Ani
67308bcf6f
vk: Only allow unsupported textureCompressionBC for v3dv
2024-08-21 23:07:13 +03:00
Ani
0649da4cfb
vk: Add driver vendor V3DV (Broadcom on Mesa)
...
VK_DRIVER_ID_MESA_V3DV
2024-08-21 23:07:13 +03:00
Ani
18df24d390
vk: Support v3dv, allow creating device without textureCompressionBC
...
v3dv supports BC1-BC3 which is all we require, support is reported as
false since not all formats are supported
2024-08-21 23:07:13 +03:00
kd-11
f6b5511546
Improved wayland support
2024-08-04 02:59:03 +03:00
kd-11
27047bb3dc
vk: Fix VEGA float16 workaround
2024-07-25 14:23:36 +03:00
kd-11
53b81af704
vk: Dump diagnostic messages if device creation fails
2024-05-30 21:16:12 +03:00
kd-11
9fb79b8930
vk: Fix typo
2024-05-29 03:28:18 +03:00
kd-11
d545aa01b2
vk: Add support for NVK driver
2024-05-29 03:28:18 +03:00
Elad Ashkenazi
a2dcbb9c13
Replace src_loc with std::soource_location
2024-05-21 14:19:12 +03:00
kd-11
62eb9c2012
vk: Allow barriers to optionally skip renderpass splitting
...
- This is allowed by spec when we don't care about what happens outside the renderpass
2024-05-12 21:26:25 +03:00
kd-11
7abc5f3ead
vk: Move driver properties to properties section from features section
2024-02-16 18:11:30 +03:00
kd-11
a54f1970f1
vk: Make more features "optional"
...
- This allows some non-conformant drivers to at least finish swapchain creation.
2024-02-11 17:21:56 +03:00
kd-11
7f602937a3
vk: Improve driver detection for dozen and lavapipe
2024-02-11 17:21:56 +03:00
Megamouse
e23db7efbd
Mac: Update MoltenVk to 1.2.7
...
Remove deprecated extension VK_MVK_moltenvk
2024-01-16 22:52:57 +01:00
kd-11
dfa83314df
vk: Add chip detection for INTEL DG2 cards
...
- No specific optimizations yet, but they're becoming more popular so that may be necessary soon.
2023-10-25 20:06:04 +03:00
kd-11
867153c5ea
vk: Drop obsolete ANV workaround
2023-10-25 20:06:04 +03:00