Home
last modified time | relevance | path

Searched refs:ES2_identifier_ES3_keyword (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
Dglslang.l78 static int ES2_identifier_ES3_keyword(TParseContext *context, int token);
135 "uint" { return ES2_identifier_ES3_keyword(context, UINT_TYPE); }
148 "mat2x2" { return ES2_identifier_ES3_keyword(context, MATRIX2); }
149 "mat3x3" { return ES2_identifier_ES3_keyword(context, MATRIX3); }
150 "mat4x4" { return ES2_identifier_ES3_keyword(context, MATRIX4); }
152 "mat2x3" { return ES2_identifier_ES3_keyword(context, MATRIX2x3); }
153 "mat3x2" { return ES2_identifier_ES3_keyword(context, MATRIX3x2); }
154 "mat2x4" { return ES2_identifier_ES3_keyword(context, MATRIX2x4); }
155 "mat4x2" { return ES2_identifier_ES3_keyword(context, MATRIX4x2); }
156 "mat3x4" { return ES2_identifier_ES3_keyword(context, MATRIX3x4); }
[all …]
Dglslang_lex.cpp1178 static int ES2_identifier_ES3_keyword(TParseContext *context, int token);
1762 { return ES2_identifier_ES3_keyword(context, UINT_TYPE); }
1802 { return ES2_identifier_ES3_keyword(context, MATRIX2); }
1806 { return ES2_identifier_ES3_keyword(context, MATRIX3); }
1810 { return ES2_identifier_ES3_keyword(context, MATRIX4); }
1814 { return ES2_identifier_ES3_keyword(context, MATRIX2x3); }
1818 { return ES2_identifier_ES3_keyword(context, MATRIX3x2); }
1822 { return ES2_identifier_ES3_keyword(context, MATRIX2x4); }
1826 { return ES2_identifier_ES3_keyword(context, MATRIX4x2); }
1830 { return ES2_identifier_ES3_keyword(context, MATRIX3x4); }
[all …]