Compare commits

..

6 Commits

Author SHA1 Message Date
yuzubot
2b4211823b Android 223 2024-02-02 01:00:23 +00:00
yuzubot
e3e6f5d0d3 Merge yuzu-emu#12874 2024-02-02 01:00:23 +00:00
yuzubot
541418894d Merge yuzu-emu#12857 2024-02-02 01:00:23 +00:00
yuzubot
20c7316220 Merge yuzu-emu#12845 2024-02-02 01:00:23 +00:00
yuzubot
b89aec5fb2 Merge yuzu-emu#12761 2024-02-02 01:00:23 +00:00
yuzubot
64c9fbd5f9 Merge yuzu-emu#12749 2024-02-02 01:00:23 +00:00
3 changed files with 2 additions and 6 deletions

View File

@@ -5,7 +5,6 @@
| [12845](https://github.com/yuzu-emu/yuzu-android//pull/12845) | [`41149d061`](https://github.com/yuzu-emu/yuzu-android//pull/12845/files) | notif: rewrite for new IPC | [liamwhite](https://github.com/liamwhite/) | Yes |
| [12857](https://github.com/yuzu-emu/yuzu-android//pull/12857) | [`35e3c6802`](https://github.com/yuzu-emu/yuzu-android//pull/12857/files) | service: use const references for input raw data | [liamwhite](https://github.com/liamwhite/) | Yes |
| [12874](https://github.com/yuzu-emu/yuzu-android//pull/12874) | [`f410cf681`](https://github.com/yuzu-emu/yuzu-android//pull/12874/files) | Revert "shader_recompiler: fix Offset operand usage for non-OpImage*Gather" | [liamwhite](https://github.com/liamwhite/) | Yes |
| [12885](https://github.com/yuzu-emu/yuzu-android//pull/12885) | [`11a8ef664`](https://github.com/yuzu-emu/yuzu-android//pull/12885/files) | structured_control_flow: Add Samsung Proprietary Driver ID to Reorder Pass | [Moonlacer](https://github.com/Moonlacer/) | Yes |
End of merge log. You can find the original README.md below the break.

View File

@@ -381,9 +381,8 @@ PipelineCache::PipelineCache(Tegra::MaxwellDeviceMemoryManager& device_memory_,
.support_float64 = device.IsFloat64Supported(),
.support_float16 = device.IsFloat16Supported(),
.support_int64 = device.IsShaderInt64Supported(),
.needs_demote_reorder = driver_id == VK_DRIVER_ID_AMD_PROPRIETARY ||
driver_id == VK_DRIVER_ID_AMD_OPEN_SOURCE ||
driver_id == VK_DRIVER_ID_SAMSUNG_PROPRIETARY,
.needs_demote_reorder =
driver_id == VK_DRIVER_ID_AMD_PROPRIETARY || driver_id == VK_DRIVER_ID_AMD_OPEN_SOURCE,
.support_snorm_render_buffer = true,
.support_viewport_index_layer = device.IsExtShaderViewportIndexLayerSupported(),
.min_ssbo_alignment = static_cast<u32>(device.GetStorageBufferAlignment()),

View File

@@ -868,8 +868,6 @@ std::string Device::GetDriverName() const {
return "Qualcomm";
case VK_DRIVER_ID_ARM_PROPRIETARY:
return "Mali";
case VK_DRIVER_ID_SAMSUNG_PROPRIETARY:
return "Xclipse";
case VK_DRIVER_ID_GOOGLE_SWIFTSHADER:
return "SwiftShader";
case VK_DRIVER_ID_BROADCOM_PROPRIETARY: