From: Sir Anthony Date: Thu, 6 Feb 2014 16:00:02 +0000 (+0600) Subject: glsl: Make ast_node location comments more informative. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=654ee41cd3beb3e6e7206c805c9879fe394e4b20;p=mesa.git glsl: Make ast_node location comments more informative. Reviewed-by: Carl Worth --- diff --git a/src/glsl/ast.h b/src/glsl/ast.h index 8820993bdaa..13e8408f96f 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -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;