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