| 1 | // Copyright (C) 2021 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QSSG_GLSL_H |
| 5 | #define QSSG_GLSL_H |
| 6 | |
| 7 | #include <QtQuick3DGlslParser/qtquick3dglslparserexports.h> |
| 8 | |
| 9 | // |
| 10 | // W A R N I N G |
| 11 | // ------------- |
| 12 | // |
| 13 | // This file is not part of the Qt API. It exists purely as an |
| 14 | // implementation detail. This header file may change from version to |
| 15 | // version without notice, or even be removed. |
| 16 | // |
| 17 | // We mean it. |
| 18 | // |
| 19 | |
| 20 | QT_BEGIN_NAMESPACE |
| 21 | |
| 22 | namespace GLSL { |
| 23 | class Engine; |
| 24 | class Lexer; |
| 25 | class Parser; |
| 26 | class MemoryPool; |
| 27 | |
| 28 | // types |
| 29 | class Type; |
| 30 | class UndefinedType; |
| 31 | class VoidType; |
| 32 | class ScalarType; |
| 33 | class BoolType; |
| 34 | class IntType; |
| 35 | class UIntType; |
| 36 | class FloatType; |
| 37 | class DoubleType; |
| 38 | class IndexType; |
| 39 | class VectorType; |
| 40 | class MatrixType; |
| 41 | class ArrayType; |
| 42 | class SamplerType; |
| 43 | |
| 44 | // symbols |
| 45 | class Symbol; |
| 46 | class Scope; |
| 47 | class Struct; |
| 48 | class Function; |
| 49 | class Argument; |
| 50 | class Block; |
| 51 | class Variable; |
| 52 | class OverloadSet; |
| 53 | class Namespace; |
| 54 | |
| 55 | class AST; |
| 56 | class TranslationUnitAST; |
| 57 | template <typename T> class List; |
| 58 | } |
| 59 | |
| 60 | QT_END_NAMESPACE |
| 61 | |
| 62 | #endif // QSSG_GLSL_H |
| 63 | |