mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
radv: disable alphaToOne feature
The feature was exposed but completely ignored by the driver. Other AMD drivers don't expose it as well, probably because it's complicated to implement alpha-to-coverage properly. Let's disable it. Cc: mesa-stable. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7966>
This commit is contained in:
parent
34b08a298d
commit
59b1578176
1 changed files with 1 additions and 1 deletions
|
|
@ -976,7 +976,7 @@ void radv_GetPhysicalDeviceFeatures(
|
|||
.depthBounds = true,
|
||||
.wideLines = true,
|
||||
.largePoints = true,
|
||||
.alphaToOne = true,
|
||||
.alphaToOne = false,
|
||||
.multiViewport = true,
|
||||
.samplerAnisotropy = true,
|
||||
.textureCompressionETC2 = radv_device_supports_etc(pdevice),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue