コード例 #1
0
ファイル: glslengine.cpp プロジェクト: KDE/android-qt-creator
const VectorType *Engine::vectorType(const Type *elementType, int dimension)
{
    VectorType *type = const_cast<VectorType *>
        (_vectorTypes.intern(VectorType(elementType, dimension)));
    type->populateMembers(this);
    return type;
}