ADSGouraud.fp

#version 130

smooth in vec4 vVaryingColor;

void main(void)
{
	gl_FragData[0] = vVaryingColor * 0.5 ;
	gl_FragData[1] = vVaryingColor * 0.6 ;
}

你可能感兴趣的:(ADSGouraud.fp)