着色器技术飞跃

框架跟进
This commit is contained in:
MrZ_26
2022-04-03 02:41:49 +08:00
parent a6c63c41b6
commit 716a08b31d
27 changed files with 59 additions and 120 deletions

View File

@@ -1,5 +1,5 @@
vec4 effect(vec4 color,Image tex,vec2 tex_coords,vec2 scr_coords){
vec4 texcolor=Texel(tex,tex_coords);
vec4 effect(vec4 color,sampler2D tex,vec2 texCoord,vec2 scrCoord){
vec4 texcolor=texture2D(tex,texCoord);
return vec4(
pow(texcolor.r+.26,.7023),
pow(texcolor.g+.26,.7023),