mirror of
https://github.com/X0nk/Bliss-Shader.git
synced 2024-12-23 01:59:39 +08:00
2ee6634935
new stuff reworked clouds, general lighting, end and nether shaders still WIP lighting is more balanced in general.
23 lines
643 B
GLSL
23 lines
643 B
GLSL
#version 120
|
|
#extension GL_EXT_gpu_shader4 : enable
|
|
|
|
flat varying float tempOffsets;
|
|
|
|
uniform int frameCounter;
|
|
|
|
#include "/lib/util.glsl"
|
|
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
|
|
void main() {
|
|
gl_Position = ftransform();
|
|
|
|
tempOffsets = HaltonSeq2(frameCounter%10000);
|
|
|
|
gl_Position.xy = (gl_Position.xy*0.5+0.5)*0.51*2.0-1.0;
|
|
}
|