glsl: Add comment explaining "row_major" parsing.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner 2013-07-11 11:28:58 -07:00
parent 14ed9018de
commit 08c90f651b
1 changed files with 6 additions and 0 deletions

View File

@ -1155,6 +1155,12 @@ layout_qualifier_id:
$$.flags.q.shared = 1;
} else if (strcmp($1, "column_major") == 0) {
$$.flags.q.column_major = 1;
/* "row_major" is a reserved word in GLSL 1.30+. Its token is parsed
* below in the interface_block_layout_qualifier rule.
*
* It is not a reserved word in GLSL ES 3.00, so it's handled here as
* an identifier.
*/
} else if (strcmp($1, "row_major") == 0) {
$$.flags.q.row_major = 1;
}