glsl: Make ast_node location comments more informative.

Reviewed-by: Carl Worth <cworth@cworth.org>
This commit is contained in:
Sir Anthony 2014-02-06 22:00:02 +06:00 committed by Kenneth Graunke
parent 433d562ac6
commit 654ee41cd3
1 changed files with 4 additions and 4 deletions

View File

@ -102,10 +102,10 @@ public:
*/
struct {
unsigned source; /**< GLSL source number. */
unsigned first_line; /**< Line number within the source string. */
unsigned first_column; /**< Column in the line. */
unsigned last_line; /**< Line number within the source string. */
unsigned last_column; /**< Column in the line. */
unsigned first_line; /**< First line number within the source string. */
unsigned first_column; /**< First column in the first line. */
unsigned last_line; /**< Last line number within the source string. */
unsigned last_column; /**< Last column in the last line. */
} location;
exec_node link;