]> granicus.if.org Git - clang/commitdiff
Upgrade a comment...
authorSteve Naroff <snaroff@apple.com>
Mon, 30 Jul 2007 03:52:55 +0000 (03:52 +0000)
committerSteve Naroff <snaroff@apple.com>
Mon, 30 Jul 2007 03:52:55 +0000 (03:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40585 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Type.h

index 6853dbcf13dfc85b5575dd17fcbbf1c1b7589dad..efd9cac22c6a952d64bc05c657a156356b57b42c 100644 (file)
@@ -497,8 +497,9 @@ public:
 
 /// OCUVectorType - Extended vector type. This type is created using
 /// __attribute__((ocu_vector_type(n)), where "n" is the number of elements.
-/// Unlike vector_size, ocu_vector_type is only allowed on typedef's.
-/// This class will enable syntactic extensions, like C++ style initializers.
+/// Unlike vector_size, ocu_vector_type is only allowed on typedef's. This
+/// class enables syntactic extensions, like Vector Components for accessing
+/// points, colors, and textures (modeled after OpenGL Shading Language).
 class OCUVectorType : public VectorType {
   OCUVectorType(QualType vecType, unsigned nElements, QualType canonType) :
     VectorType(OCUVector, vecType, nElements, canonType) {}