Very early KDE 6 release.

This commit is contained in:
wackyideas 2024-08-09 03:20:25 +02:00
parent 7cc4ccabbc
commit 686046d4f7
6272 changed files with 140920 additions and 529657 deletions

View file

@ -0,0 +1,8 @@
uniform sampler2D sampler;
varying vec2 texcoord0;
void main()
{
gl_FragColor = texture2D(sampler, texcoord0);
}

View file

@ -0,0 +1,11 @@
#version 140
uniform sampler2D sampler;
in vec2 texcoord0;
out vec4 fragColor;
void main()
{
fragColor = texture(sampler, texcoord0);
}