Update site/content/entry/yuzu-progress-report-feb-2021/index.md

Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
This commit is contained in:
Honghoa 2021-03-10 16:36:43 -03:00 committed by GitHub
parent 4bead876f2
commit 3c9c60cbdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ Unfortunately, this latter format isn't supported internally by OpenGL, which ca
The solution to this problem then was to reorder the Blue and Red channels of `BGR` textures in the copy uploaded to the GPU.
Reordering the graphical information of an image to process it in the graphics card is called swizzling, so what this PR does is copy the values of the Red channel into the Blue channel and vice-versa, a process that can be exploited through parallel computation.
This way, the problem with OpenGL is directly bypassed on the GPU, and games can render as they should on the screen.
This way, the limitation with OpenGL is directly bypassed on the GPU, and these textures are rendered as intended on screen.
## General bug fixes and improvements