fix comments
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 22 Nov 2006 21:33:44 +0000 (21:33 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 22 Nov 2006 21:33:44 +0000 (21:33 +0000)
src/mesa/shader/slang/slang_assemble_typeinfo.c
src/mesa/shader/slang/slang_assemble_typeinfo.h

index f4ee573..265e417 100644 (file)
@@ -594,7 +594,7 @@ _slang_type_base(slang_type_specifier_type ty)
 
 
 /**
- * Return the number of elements in a vector or matrix type
+ * Return the dimensionality of a vector or matrix type.
  */
 GLuint
 _slang_type_dim(slang_type_specifier_type ty)
index 5d95122..777dc21 100644 (file)
@@ -68,8 +68,8 @@ typedef enum slang_type_specifier_type_
 typedef struct slang_type_specifier_
 {
    slang_type_specifier_type type;
-   struct slang_struct_ *_struct;         /**< type: spec_struct */
-   struct slang_type_specifier_ *_array;  /**< type: spec_array */
+   struct slang_struct_ *_struct;         /**< used if type == spec_struct */
+   struct slang_type_specifier_ *_array;  /**< used if type == spec_array */
 } slang_type_specifier;