Searched refs:ES2_identifier_ES3_keyword (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | glslang.l | 78 static int ES2_identifier_ES3_keyword(TParseContext *context, int token); 145 "uint" { return ES2_identifier_ES3_keyword(context, UINT_TYPE); } 158 "mat2x2" { return ES2_identifier_ES3_keyword(context, MATRIX2); } 159 "mat3x3" { return ES2_identifier_ES3_keyword(context, MATRIX3); } 160 "mat4x4" { return ES2_identifier_ES3_keyword(context, MATRIX4); } 162 "mat2x3" { return ES2_identifier_ES3_keyword(context, MATRIX2x3); } 163 "mat3x2" { return ES2_identifier_ES3_keyword(context, MATRIX3x2); } 164 "mat2x4" { return ES2_identifier_ES3_keyword(context, MATRIX2x4); } 165 "mat4x2" { return ES2_identifier_ES3_keyword(context, MATRIX4x2); } 166 "mat3x4" { return ES2_identifier_ES3_keyword(context, MATRIX3x4); } [all …]
|
D | glslang_lex.cpp | 1075 static int ES2_identifier_ES3_keyword(TParseContext *context, int token); 1557 { return ES2_identifier_ES3_keyword(context, UINT_TYPE); } 1597 { return ES2_identifier_ES3_keyword(context, MATRIX2); } 1601 { return ES2_identifier_ES3_keyword(context, MATRIX3); } 1605 { return ES2_identifier_ES3_keyword(context, MATRIX4); } 1609 { return ES2_identifier_ES3_keyword(context, MATRIX2x3); } 1613 { return ES2_identifier_ES3_keyword(context, MATRIX3x2); } 1617 { return ES2_identifier_ES3_keyword(context, MATRIX2x4); } 1621 { return ES2_identifier_ES3_keyword(context, MATRIX4x2); } 1625 { return ES2_identifier_ES3_keyword(context, MATRIX3x4); } [all …]
|