This repository has been archived on 2022-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
JavaProgressia/src/main/resources/assets/shaders/FlatDefault.fragment.glsl
OLEGSHA 7dee1eb95f Re-written flat render pipeline to support transforms
FlatRender now supports arbitrary transforms
GLSL 1.40 is now used in shaders
2020-08-03 21:44:36 +03:00

8 lines
111 B
GLSL

#version 140
void main(void) {
applyTexture();
applyColorMultiplier();
applyAlpha();
applyMask();
}