OPENGL ES 문법
Posted by Go crazy for anything that will make you smile.
지정자 1. varying lowp vec4 DestinationColor; : 저정밀도(lowp) varying 변수, 10비트 부동 소수점 2. varying mediump vec2 TextureCoordOut; : 중정밀도(mediump) varying 변수, 16비트 부동 소수점 4. varying highp vec3 Licting; : 고정밀도(highp) varying 변수, 32비트 부동 소수점 4. uniform sampler2D Sampler; : uniform 형의 샘플러(Sampler) 변수. 이 변수는 텍셀 색상을 가져올 텍스처 레벨을 나타낸다. 5. uniform : 모든 uniform 변수는 기본값이 0. vs에서 read만 가능, fs에서 read만 가능. 함수 1. textu..