初次提交
This commit is contained in:
8
第20章 BN赛艇/BNST/assets/frag_tex.sh
Normal file
8
第20章 BN赛艇/BNST/assets/frag_tex.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
precision mediump float;
|
||||
varying vec2 vTextureCoord; //接收从顶点着色器过来的参数
|
||||
uniform sampler2D sTexture;//纹理内容数据
|
||||
void main()
|
||||
{
|
||||
//给此片元从纹理中采样出颜色值
|
||||
gl_FragColor = texture2D(sTexture, vTextureCoord);
|
||||
}
|
||||
Reference in New Issue
Block a user