소스 검색

neercs: do not ignore alpha in the simple shader.

master
Sam Hocevar 12 년 전
부모
커밋
08019e487f
1개의 변경된 파일8개의 추가작업 그리고 7개의 파일을 삭제
  1. +8
    -7
      neercs/video/simple.lolfx

+ 8
- 7
neercs/video/simple.lolfx 파일 보기

@@ -3,10 +3,10 @@
#version 120

void main()
{
gl_Position=gl_Vertex;
gl_TexCoord[0]=gl_MultiTexCoord0;
}
{
gl_Position = gl_Vertex;
gl_TexCoord[0] = gl_MultiTexCoord0;
}

-- GLSL.Frag --

@@ -15,6 +15,7 @@ void main()
uniform sampler2D texture;

void main(void)
{
gl_FragColor=vec4(texture2D(texture,gl_TexCoord[0].xy).xyz,1.0);
}
{
gl_FragColor = texture2D(texture, gl_TexCoord[0].xy);
}


불러오는 중...
취소
저장