mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
[Android] Fix Adreno v53 development drivers rotating framebuffer
Older Qualcomm drivers rotated the framebuffer 90 degrees and this fix didn't work. Now for some obscene reason it rotates a full 180 degrees. This can at least be worked around by flipping around the image on our end.
This commit is contained in:
@ -165,6 +165,15 @@ namespace DriverDetails
|
||||
// TODO: some windows AMD driver/gpu combination seems also affected
|
||||
// but as they all support pinned memory, it doesn't matter
|
||||
BUG_BROKENUNSYNCMAPPING,
|
||||
// Bug: Adreno now rotates the framebuffer on blit a full 180 degrees
|
||||
// Affected devices: Adreno
|
||||
// Started Version: v53 (dev drivers)
|
||||
// Ended Version: -1
|
||||
// Qualcomm is a super pro company that has recently updated their development drivers
|
||||
// These drivers are available to the Nexus 5 and report as v53
|
||||
// Qualcomm in their infinite wisdom thought it was a good idea to rotate the framebuffer 180 degrees on glBlit
|
||||
// This bug allows us to work around that rotation by rotating it the right way around again.
|
||||
BUG_ROTATEDFRAMEBUFFER,
|
||||
};
|
||||
|
||||
// Initializes our internal vendor, device family, and driver version
|
||||
|
Reference in New Issue
Block a user