glsl: Make ast_node location comments more informative.
authorSir Anthony <anthony@adsorbtion.org>
Thu, 6 Feb 2014 16:00:02 +0000 (22:00 +0600)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 8 Mar 2014 09:29:00 +0000 (01:29 -0800)
Reviewed-by: Carl Worth <cworth@cworth.org>
src/glsl/ast.h

index 8820993bdaa24ed3baf5dbe373ebeb706f1046b5..13e8408f96fb8c8ae862b7aacdc2756b6ccb59df 100644 (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;