summaryrefslogtreecommitdiffstats
path: root/src/glsl
diff options
context:
space:
mode:
authorSir Anthony <[email protected]>2014-02-06 22:00:02 +0600
committerKenneth Graunke <[email protected]>2014-03-08 01:29:00 -0800
commit654ee41cd3beb3e6e7206c805c9879fe394e4b20 (patch)
treeebcc505364c6827ebaa50f24bdd80debdd717040 /src/glsl
parent433d562ac6b24b5e0ff63a682316be632dfc7053 (diff)
glsl: Make ast_node location comments more informative.
Reviewed-by: Carl Worth <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/ast.h8
1 files changed, 4 insertions, 4 deletions
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;