Home | History | Annotate | Download | only in glshared

Lines Matching refs:versionNum

1026 	int			versionNum		= 0;
1030 versionNum = parseIntLiteral(m_curTokenStr.c_str());
1039 if (versionNum == 100 && postfix == "es") version = glu::GLSL_VERSION_100_ES;
1040 else if (versionNum == 300 && postfix == "es") version = glu::GLSL_VERSION_300_ES;
1041 else if (versionNum == 310 && postfix == "es") version = glu::GLSL_VERSION_310_ES;
1042 else if (versionNum == 130) version = glu::GLSL_VERSION_130;
1043 else if (versionNum == 140) version = glu::GLSL_VERSION_140;
1044 else if (versionNum == 150) version = glu::GLSL_VERSION_150;
1045 else if (versionNum == 330) version = glu::GLSL_VERSION_330;
1046 else if (versionNum == 400) version = glu::GLSL_VERSION_400;
1047 else if (versionNum == 410) version = glu::GLSL_VERSION_410;
1048 else if (versionNum == 420) version = glu::GLSL_VERSION_420;
1049 else if (versionNum == 430) version = glu::GLSL_VERSION_430;