Home | History | Annotate | Download | only in functional

Lines Matching defs:sourceLen

159 		int sourceLen		= 0;
164 gl.getShaderiv(shader, GL_SHADER_SOURCE_LENGTH, &sourceLen);
170 if (sourceLen > 0)
172 std::vector<char> source(sourceLen);
174 info.source = std::string(&source[0], sourceLen);