Remove rendering via framebuffer for transparent windows with images

There is no need for it with the current rendering pipeline. Images are
blended with premult blending.
This commit is contained in:
Kovid Goyal
2023-06-21 16:06:07 +05:30
parent 2a96b5cb25
commit 098a38a3a9
11 changed files with 11 additions and 79 deletions

View File

@@ -32,7 +32,7 @@ class TestBuild(BaseTest):
def test_loading_shaders(self) -> None:
from kitty.shaders import Program
for name in 'cell border bgimage tint blit graphics'.split():
for name in 'cell border bgimage tint graphics'.split():
Program(name)
def test_glfw_modules(self) -> None: