mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Very early KDE 6 release.
This commit is contained in:
parent
7cc4ccabbc
commit
686046d4f7
6272 changed files with 140920 additions and 529657 deletions
|
@ -0,0 +1,8 @@
|
|||
uniform sampler2D sampler;
|
||||
|
||||
varying vec2 texcoord0;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_FragColor = texture2D(sampler, texcoord0);
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
#version 140
|
||||
|
||||
uniform sampler2D sampler;
|
||||
|
||||
in vec2 texcoord0;
|
||||
out vec4 fragColor;
|
||||
|
||||
void main()
|
||||
{
|
||||
fragColor = texture(sampler, texcoord0);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue