mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
8381092cce
* handle brightmaps in the main shader instead of keeping separate instances around. * added detail and glow layers from Raze. * fixed material setup which could not guarantee that everything was initialized correctly. * for warped textures, warp all layers. With this brightmaps finally work on warped textures. Note: Vulkan reports a "device lost" error with this which still needs to be investigated.
19 lines
340 B
GLSL
19 lines
340 B
GLSL
|
|
vec2 GetTexCoord()
|
|
{
|
|
vec2 texCoord = vTexCoord.st;
|
|
|
|
const float pi = 3.14159265358979323846;
|
|
vec2 offset = vec2(0,0);
|
|
|
|
offset.y = sin(pi * 2.0 * (texCoord.x + timer * 0.125)) * 0.1;
|
|
offset.x = sin(pi * 2.0 * (texCoord.y + timer * 0.125)) * 0.1;
|
|
|
|
return texCoord + offset;
|
|
}
|
|
|
|
vec4 ProcessTexel()
|
|
{
|
|
return getTexel(GetTexCoord());
|
|
}
|
|
|